Java Hyd Team
746 subscribers
986 photos
39 videos
670 files
690 links
https://teamhydteam.my.canva.site/

Can visit us on our website ๐Ÿ˜Š
Still working on it ๐Ÿ˜Š
Download Telegram
PhonePe is hiring for Software Engineer
Role : SDE
Experience: 1 -3
Location: Bengaluru
Qualification: BE/BTech/ME/MTech/MCA
Passout year: 2020/2021
Salary: 16 - 18 LPA


Apply Now: https://boards.greenhouse.io/embed/job_app?token=5083593003
Cognizant is hiring for Software Engineer
Role : SDE
Experience: fresher
Location: Bengaluru/Hyderabad
Qualification: BE/BTech/ME/MTech/MCA
Passout year: 2022 and before
Salary: 6 - 8 LPA



Apply Now: https://careers.cognizant.com/in/en/job/COGNGLOBAL000487421223/Software-Engineer
Volvo is hiring for Software Engineer
Role : SDE
Experience: fresher
Location: Bengaluru
Qualification: BE/BTech/ME/MTech/MCA
Passout year: 2022 and before
Salary: 10 - 12 LPA



Apply Now: https://xjobs.brassring.com/TGnewUI/Search/home/HomeWithPreLoad?partnerid=25079&siteid=5171&PageType=JobDetails&jobid=749831
Better to go with CTS for now
For referrals ping us @stockkida
Location banglore java FullStack fresher
PayU Hiring Software Engineer
Role: SDE
Experience: fresher
Qualification: BE/ B.tech/M.tech
Passout year: 2022 and before
CTC: 14-18 Lpa
Location: Bangalore



Apply now: https://jobs.eu.lever.co/payu/aa6e509c-7512-477f-b9aa-f9986a4cb243/apply
Tricon infotech Hiring Graduate Engineer trainee
Role: GET
Qualification: B.tech/M.tech
Passout: 2022/2023
Location : Bangalore
Salary: 6 - 8 lakh


Apply Link :-
https://forms.office.com/pages/responsepage.aspx?id=OUSgaw6L7kOtJsKsnvnnZYWfWc9khvRBqi1EjxCDbbtUODlWUU1ZNVJETjJMN0pSTzlQVUk4OUNVMS4u
Infosys is sending test mails for SP and DSE Role. Please do check in your mail and spam box too
HCL Mass Hiring For Graduate Engineer Trainee
Role: GET
Location: Noida, Chennai, Bangalore
Qualification: BE/ B.Tech/ MCA
Passout year: 2022/2021/2020
Experience: Fresher
Salary: 4.25 LPA



Apply Now: https://forms.office.com/pages/responsepage.aspx?id=N-edGDrJWk-LaG9MqZQZEsBJpOylLepKrB0D5DY-0v1UNDdYQjczVlNGSlBLWTc3WThHQ0YyRDZUSS4u
How to check if two strings are the same ignoring their cases?

HOW TO DO ...

You can check if two strings are the same or not using the equals() method of the String. There is a special version of the equals() method which ignores the cases i.e. equalsIgnoreCase()
checking using equals() method : false
checking using equalsIgnoreCase() method : true


Possible output of the program
How to check if two strings are anagrams of each other?

How to do ....

We can say if two strings are an anagram of each other if they contain the same characters but at different orders.

Ex. army & mary

This question requires a good understanding of the Java String class and Java arrays.
Q2.)
Java Hyd Team
How to check if two strings are anagrams of each other? How to do .... We can say if two strings are an anagram of each other if they contain the same characters but at different orders. Ex. army & mary This question requires a good understanding of theโ€ฆ
In the above program, the isAnagram() method took two string firstString and secondString as an input parameter.

We are converting these string into the character array.

Also, we are applying the toLowerCase() method to the strings to make sure every character of the char array should be in lower case.

Once we got both the array, we are sorting them using the Arrays.sort() method.

Arrays.sort() method sort the specified array into ascending numerical order.

Finally, we will check if the arrays are equals using Arrays.equals() method.

If they are equal, that means they are an anagram of each other.
If they are not equal, then they are not an anagram of each other.