Tip 1 : Learn and Revise everything you have mentioned in your resume. Top most interview questions asked in the programming languages you have mentioned in your skill set in Resume.
Tip 2 : Prepare Top most asked coding questions in Arrays, Stacks, Linked Lists, and etc.
Tip 3 : Prepare from Coding Ninjas Top most asked Coding Problems and GeeksforGeeks Interview Prep.
Tip 1 : Have More than one Technical Project using any Technology - [Data Science, Machine Learning, Web Application Development, Android, Blockchain, etc]
Tip 2 : One Page Resume is enough for Freshers [Watch Youtube Videos for Resumes]
Tip 3 : Do not mention anything in your resume in which you are not confident enough to answer whatever the interview may ask.
MCQs: [ Total Question – 50 ]
Aptitude – Profit & Loss, Average, Time & Work, Speed & Time, Simple & Compound Interest
Reasoning – Sitting arrangement, Coding decoding, Blood relation
English – Passage Answer, Antonyms, Synonyms
Computer Science – OOPS , OS, DBMS, HTML Tags
Automata Fixing Round [6 Questions]
To fix errors and complete methods in Java to perform required operations so that code can execute without any errors



The order of elements in the resulting array is not important.
Let the array be [1, 2, -3, 4, -4, -5]. On rearranging the array such that all negative numbers appear before all positive numbers we get the resulting array [-3, -5, -4, 2, 4, 1].
First we create an empty array (temp[]).
then we store all positive element of given array and then we store all negative element of array in Temp[]. Finally we copy temp[] to original array.



String 'S' is NOT case sensitive.
Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.
1. Find length of str. Let length be n.
2. Initialize low and high indexes as 0 and n-1 respectively.
3. Do following while low index ‘l’ is smaller than high index ‘h’.
a. If str[l] is not same as str[h], then return false.
b. Increment l and decrement h, i.e., do l++ and h–.
c. If we reach here, it means we didn’t find a mis



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

1. Traverse linked list using two pointers.
2. Move one pointer(slow_p) by one and another pointer(fast_p) by two.
3. If these pointers meet at the same node then there is a loop. If pointers do not meet then linked list doesn’t have a loop.
Technical and HR Interview
Tell me about yourself.
Keep it Short. And Write about yourself on paper and think what question can be asked from this. If interview may be interested in something you mentioned in your about yourself introduction.
Explain a little bit about anyone project mentioned in the resume. [ I explained about my Movie Recommendation Web Application ]
Tip 1: Please mention your role in the project if it is a team project, In my case i worked on FrontEnd and Database in MySQL and SQlite. But the project also have Machine Learning part that i do not know about. So if you would not tell your role in your project then you may hear random questions regarding other technologies that you would have not worked on.
Tip 2: Speak more technical terms, like Agile, collaborated using Git VCS[ Version control System], etc.
Tip 3: Also tell about your other skills that you used in the project since here you are selling your skills in Interview as i mentioned my testing skills like we also implemented Unit Testing too in our project.
Linked List and Basic Data Structure Interview Questions
Tip 1 : Check from GeeksForGeeks Most Asked Data Structures interview Questions
Types of SubQueries. and Then what is Corelated SubQuery And then Type an example of Corelated Subquery
Indexing in DataBases
Tell me about different types of Search Methods and Sorting Algorithms Only Names
Tell me about Collection framework in Java [As i Told him my favourite language is Java] why Java over Python?
Different Types of Exceptions in Java?
A simple example of Lambda Expression & he asked me the output of it which I answered.
Any Challenges you faced till now, and how you overcame those challenges or Obstacles?
Tip 1: Tell about any challenge you faced while working on a project?
Two Aptitude Question he copy pasted in the chat to see if i can solve it live or not. I think This is just to check if candidate has taken any help in First round or if he or she can solve similar questions.
Your Quantitative aptitude should be good as these questions may prove that you took some help in First Aptitude Round.

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: