Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
Easy to Medium questions based on Arrays and Hashmap.



If there exists no subarray in the given sequence whose sum is divisible by ‘K’ then simply return ‘0’.
Suppose the given array is ‘ARR’ = { 5, 0, 2, 3, 1} and ‘K = 5’.
As we can see in below image, there are a total of 6 subarrays that have the total sum divisible by ‘K’
So we return the integer 6.




Here XOR denotes the bitwise operator (^).
Standard DS/Algo round with 2 questions of Easy-Medium level of question



Let the array = [ 4, 2, 1, 5, 3 ]
Let pivot to be the rightmost number.




Can you solve each query in O(logN) ?
Questions related to DSA - Prime Factorisation of a number
Questions related to OS - Difference between orphan and zombie process and few more questions from OS
Questions related to Java- Internal working , Threading, Debugging, OOPs



For ‘N’ = 10.
Unique prime factors are 2 and 5.
Hence we return {2, 5}.
Difference between Orphan and Zombie process
What is RAID structure in OS? What are the different levels of RAID configuration?
What is IPC? What are the different IPC mechanisms?
What's the difference between User thread and Daemon thread?
What is Runnable and Callable Interface? Write the difference between them.
What is the synchronization process? Why use it?
What is meant by exception handling?
Difference between Abstract class and Interface
What is Garbage collector in JAVA?

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