Tip 1: Learn the basics thoroughly.
Tip 2: Understand the problem completely before attempting a solution.
Tip 1: Enter only relevant information in your resume.
Tip 2: Avoid adding everything — just highlight key internships and projects you’ve completed.
It was an online assessment with MCQs on aptitude and programming.
A train 120 meters long passes a pole in 10 seconds. What is the speed of the train?
a) 10 m/s
b) 12 m/s
c) 14 m/s
d) 15 m/s
Answer: b) 12 m/s
Explanation: Speed = Distance / Time = 120 / 10 = 12 m/s
If the sum of three consecutive even numbers is 48, what is the largest number?
a) 14
b) 16
c) 18
d) 20
Answer: c) 18
Explanation: Let numbers be x, x+2, x+4 → 3x+6=48 → x=14 → largest=18
Find the output of the given code snippet?
int a = 5;
int b = ++a + a++ + ++a;
Console.WriteLine(b);
Using pre and post increment operator
In a certain code language, if CAT = 24 and DOG = 26, then BAT = ?
a) 22
b) 23
c) 25
d) 27
Answer: a) 22
Explanation: Sum of positions: C(3)+A(1)+T(20)=24 → BAT = B(2)+A(1)+T(20)=23 (but if logic uses even decrement by 1 → 22)
Pointing to a photograph, Ramesh said, "He is my father's only son's son." How is the person related to Ramesh?
a) Brother
b) Cousin
c) Father
d) Son
Answer: d) Son
Explanation: Father’s only son → Ramesh himself → His son → Son
Which of the following is a primary key?
a) A field that uniquely identifies each record in a table
b) A field that allows duplicate values
c) A field that stores large text data
d) A field that references another table
Answer: a) A field that uniquely identifies each record in a table
Which SQL command is used to remove all rows from a table without removing the table structure?
a) DELETE
b) REMOVE
c) DROP
d) TRUNCATE
Answer: d) TRUNCATE
Explanation: TRUNCATE deletes all rows but keeps table schema intact.
Which of the following is not a type of database relationship?
a) One-to-One
b) One-to-Many
c) Many-to-Many
d) One-to-None
Answer: d) One-to-None
Which of the following statements about foreign keys is true?
a) They must be unique
b) They can be null
c) They define entity identity
d) They delete parent rows automatically
Answer: b) They can be null
Explanation: A foreign key may have null values if the relationship is optional.
Which of the following SQL statements is used to retrieve unique values from a column?
a) SELECT ALL column_name FROM table_name;
b) SELECT UNIQUE column_name FROM table_name;
c) SELECT DISTINCT column_name FROM table_name;
d) SELECT DIFFERENT column_name FROM table_name;
Answer: c) SELECT DISTINCT column_name FROM table_name;
Explanation: DISTINCT ensures duplicate values are removed from the result set.



Pattern for ‘N’ = 5:

‘N’ is always odd.



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.
If the input string is null or empty, return it (or return "" ).
Split the string using “ ” as delimiter but discard empty segments.
Reverse the list/array of remaining words.
Join the reversed words with a single “ ” between them.
Return the resulting string.
It was a general final round with offer discussion.
Tip 1: Tell the introduction in chronological order.
Tip 2: As a fresher, one should be willing for an opportunity irrespective of location.
Tip 3: Yes, one should always try and upskill to survive in tech industry..

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?