Tip 1 : must practice the previous year's questions
Tip 2 : more focus on easy to medium-level questions
Tip 3 : also go with computer fundamentals
Tip 1: only write skills what yu have actual knowledge
Tip 2: add more and more project , they will discuss in tech rounds
it was MCQ round, with basic computer fundamentals and analytical skills questions
round, with basic computer fundamentals like OS, NETWORKS, DBMS,CODING and analytical skills questions
Tip 1:read theory also
Which of the following is TRUE?
A : Every relation in 3NF is also in BCNF
B : A relation R is in 3NF if every non-prime attribute of R is fully functionally dependent on every key of R
C : Every relation in BCNF is also in 3NF
D : No relation can be in both BCNF and 3NF
Ans : C
What will be the output of the following C program segment?
char inchar = 'A';switch (inchar){
case 'A' : printf ("choice A \n") ;case 'B' :case 'C' : printf ("choice B ") ;case 'D' :case 'E' :default: printf ("No Choice") ;}
The correct answer is "option 3".
The worst case running time to search for an element in a balanced in a binary search tree with n2^n elements is(A) O(n log n)(B) O(n2^n) (C) O(n) (D) O(log n)
Ans : O(n)
question based on DSA, and projets from resume



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?
discussion on your project and involved technologies and DSA question



If the given input string is "Welcome to Coding Ninjas", then you should return "Ninjas Coding to Welcome" as the reversed string has only a single space between two words and there is no leading or trailing space.
Hr round, just discusion on profile and role in company
Introduce yourself, describe yourself in 1 line.
Tip 1: be confident
Tip 2: first think then speak

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?