Tip 1 : If you are fresher focus on core subjects as well.
Tip 2 : You should be aware of OOPS concepts.
Tip 3 : Practice DSA as much as possible.
Tip 1: Prepare well what you write in your resume
Tip 2: Make a decent project.
Questions were based upon DSA, Time Complexity, Computer Networks etc



If there is no prime factor of a given integer, then print -1.



If a number has trailing zeros, then its reverse will not include them. For e.g., the reverse of 10400 will be 401 instead of 00401.
It can be solved using simple while loop and modulus operator


You are given ‘N’ = 5, Here we know 0th, 1st and 2nd Tribonacci numbers are 0, 1 and 1 respectively. Therefore we can calculate the 3rd number as 0 + 1 + 1 = 2 and 4th number as 1 + 1 + 2 = 4 and 5th number as 1 + 2 + 4 = 7. Hence the answer is 7.
Can you solve it in logarithmic time?
Similar to fibonacci numbers
Interviewer asked me about my projects, 2 coding questions, Numerical Based upon time and distance.



In the given linked list, there is a cycle, hence we return true.





for(int i = 1; i <= n; i++){
for(int j = 1; j <= i; j++){
print("*");
}
}
Excluding stoppages, the speed of a bus is 54 kmph and including stoppages, it is 45 kmph. For how many minutes does the bus stop per hour?
10 mins
Basic HR questions were asked
1. Introduce Yourself
2. Strengh and Weakness
3. What do you know about Cognizant

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: