Tip 1 : Practice your problem-solving skills
Tip 2 : Do at least 2 projects
Tip 1 : Avoid grammatical errors
Tip 2 : Avoid adding unnecessary information
Round 1 was a coding test which consisted of 4 sections.
1st section.
There were 7 debugging questions which was to be solved in 20 minutes.
A code was given which we have to debug and it should pass all the test cases. If you have a basic understanding of loops and concepts then this section is easy.
2nd section.
There were 2 coding questions which were to be done in 70 minutes.
3rd section
This section was more about behaviour and nature.
4th section
There were 35 reasoning based questions, which was to be done in 24 minutes.



The given linked lists may or may not be null.
If the first list is: 1 -> 4 -> 5 -> NULL and the second list is: 2 -> 3 -> 5 -> NULL
The final list would be: 1 -> 2 -> 3 -> 4 -> 5 -> 5 -> NULL



You can use any string of A multiple times.
A =[“coding”, ”ninjas”, “is”, “awesome”] target = “codingninjas”
Ans = true as we use “coding” and “ninjas” to form “codingninjas”
Round 2 was 1-hour long technical interview. It was on 20th June 2020, from 10 AM to 11 AM. The round started with the introductions and then the discussion on projects.



If the first linked list is 1 -> 2 -> 3 -> 4 -> 5 -> NULL and the second linked list is 4 -> 5 -> NULL.
The two numbers represented by these two lists are 12345 and 45, respectively. So, adding these two numbers gives 12390.
So, the linked list representation of this number is 1 -> 2 -> 3 -> 9 -> 0 -> NULL.



If N = 2 and prerequisite = [[1, 2]]. Then, there are a total of 2 courses you need to take. To take course 1 you need to finish course 2. So, it is possible to complete all courses.
What are the ACID properties?
This question was based on computer networking.
How does a URL work?

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?