Tip 1 : Practice DSA & Mysql and previous year Questions as many you can
Tip 2 : Clear Basic Fundamentals of your core Subject i.e . DBMS , OOPS ,etc
Tip 3 : Having Positive Mindset and atleast do 2 projects .
Tip 1 : Write those Technical skills in your Resume which you know otherwise no use of them.
Tip 2 : Mention Two Projects and Some Certification & some coding profile link give good impact.
This round start at 4:00 Pm to 8:00 Pm . Environment was good .






String 'S' is NOT case sensitive.
Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.
Mysql Query to get the maximum salary of each department form the tables employee.
Tip 1 : Use Max aggrigate function
Tip 2 : Use GroupBy clause on department
Mysql Query :Print the details of employee whose department is IT.
Tip 1 : Use Join on Department and Employee
Tip 2 : Inner join check primary key and foreign key column for matching the records
Tip 3 : use where clause
This Round is Technical Round on Superset Platform . And Interviewer was 10+ year of exp and ask some deep question.



If the string is “bca”, then its permutations in lexicographically increasing order are { “abc”, “acb”, “bac”, “bca”, “cab”, “cba” }.
Given string contains unique characters.
Write a recursive function that print distinct permutations. Make a boolean array of size N which accounts the character being used. If the character has not been used then the recursive call will take place. Otherwise, don’t make any call. Terminating condition will be when the passed string is empty.



Anagrams are defined as words or names that can be formed by rearranging the letters of another word. Such as "spar" can be formed by rearranging letters of "rasp". Hence, "spar" and "rasp" are anagrams.
'triangle' and 'integral'
'listen' and 'silent'
Since it is a binary problem, there is no partial marking. Marks will only be awarded if you get all the test cases correct.
Step:1 Two strings are said to be anagram if we can form one string by arranging the characters of another string. For example, ABC and BCA. Here, we can form ABC by arranging the characters of BCA.
Step:2 We first convert the strings to lowercase. It is because Java is case sensitive and S1 and s1 are two
difference String in Java.
Step:3 check if length is same. (str1 & str2)
str1.toCharArray() - converts the string into a char array (str2 also)
Arrays.sort() - sorts both the char arrays
Arrays.equal() - checks if the sorted char array are equal
Step: 4 if sorted arrays are equal, then the strings are anagram.
Design Singleton Pattern class .
Tip 1 : Create Private Constructor: No other class can make instance
Tip 2 : Create public method getInstance with Synchronized block for calling the instance
Tip 3 : Create Private instance
Ask Basic salary quey from mysql and also ask about joins , Opps Concept , Java8 features , MultiThreading , Singleton Class , Etc
Tip 1 : Clear Basic Fundamentals and give real time Example about OPPS Concept.
Tip 2 : Write Mysql query using subquery & also using joins And do project revision .
This is HR Round on superset Platform when you clear both assignment round as well as technical round . Its almost a formality Round you can say that.
HR Start with the Introduction then she ask me the feedback form the technical round and then ask about my family background and some opps concpet also . Then she ask me about my projects , relocation consent , check my marksheet , why cognizant? at last she ask me about one puzzle related to water buckets.
Tip 1 : Be Confident and Show positive attitude.
Tip 2 : Go through your Projects and some puzzles.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: