Tip 1 : have 2 good project
Tip 2 : Prepare Cs fundamentals
Tip 3 : Prepare DSA
Tip 1 : atleast 2 good projects
Tip 2 : do not put false things
This round is the online test consisting of (Aptitude and Technical Questions) and will be conducted on the Mettl Platform. This will be an MCQ Based round and it will consist of a maximum of 40 questions with a time limit of 60 minutes. This round is divided into two sections Aptitude and Technical Section
What is the main function of the command interpreter?
a) to provide the interface between the API and application program
b) to handle the files in the operating system
c) to get and execute the next user-specified command
d) none of the mentioned
What is a database?
a) Organized collection of information that cannot be accessed, updated, and managed
b) Collection of data or information without organizing
c) Organized collection of data or information that can be accessed, updated, and managed
d) Organized collection of data that cannot be updated
A complete graph can have
A - n2 spanning trees
B - nn - 2 spanning trees
C - nn + 1 spanning trees
D - nn spanning trees
Which of the following uses memoization?
A - Greedy approach
B - Divide and conquer approach
C - Dynamic programming approach
D - None of the above!
This round is an online coding test consisting of 5 Data Structures and Algorithm based coding questions



S = “hello”
Explanation :
The reverse of the string ‘S’ is “olleh”.



Merge Sort Algorithm -
Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

The above illustrates shows how merge sort works.
It is compulsory to use the ‘Merge Sort’ algorithm.
This round is the Technical Interview Round. The interview duration will be of 1 hour and the questions will be asked on various topics related to the computer subjects and followed by 1 or 2 coding questions and SQL Query. This depends on the interviewer and what questions they will ask. But in general, the topics from which the questions will be asked are - Data Structures, Analysis of Algorithms, Computer Networks, Operating systems, Database Management systems, Object-Oriented Programming, Programming Language from resume (Preferred Java), coding questions, and SQL Query. This round will be conducted on Microsoft Teams.



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




a) Duplicate elements may be present.
b) If no such element is present return -1.
Input: Given a sequence of five numbers 2, 4, 5, 6, 8.
Output: 6
Explanation:
In the given sequence of numbers, number 8 is the largest element, followed by number 6 which is the second-largest element. Hence we return number 6 which is the second-largest element in the sequence.

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?