Tip 1 : Be consistent all the day from when you start the preaparation for placement.
Tip 2 : start with the basic approach always when interviewer ask for any programming questions.
Tip 1 : Should be very clean and clear , also thorough with the topics which you mention in your resume.
Tip 2 : Be very true with the information you are providing in your resume
It was of 60 minutes .And it went well for me.



Firstly i sort the array and then i just used the for loop for two cases .
One for elements when it is less than K and another cases when the element is greater than the K.
PROGRAM:
arr.sort()
for i in range(n):
if arr[i]>k:
arr[i]=arr[i]-k
else:
arr[i]=arr[i]+k
arr.sort()
return arr[n-1]-arr[0]
This round was completely resume based and I answered well . Most of the question were from OS , DBMS and oops.
what are 4 main principles of oops?
Tip 1 : I just started with the basics answers and then i explained it with the real life problems of each and every principle of oops.
Tip 2 : Start explaining using the code for these oops questions .
There are 3 jars, namely, A, B, C. All of them are mislabeled. Following are the labels of each of the jars:
A: Candies
B: Sweets
C: Candies and Sweets (mixed in a random proportion)
You can put your hand in a jar and pick only one eatable at a time. Tell the minimum number of eatable(s) that has/have to be picked in order to label the jars correctly.
Tip 1 : You have to pick only one eatable from jar C. Suppose the eatable is a candy, then the jar C contains candies only(because all the jars were mislabeled).
Tip 2 : Now, since the jar C has candies only, Jar B can contain sweets or mixture. But, jar B can contain only the mixture because its label reads “sweets” which is wrong.
Tip 3 : Therefore, Jar A contains sweets. Thus the correct labels are:
A: Sweets.
B: Candies and Sweets.
C: Candies.
It was a HR round and this was for around 20 minutes and asked me to introduce yourself and Happened in the evening arround 4:30 pm . Intervierwer was so good and wanted to interact with us as we were almost selected.
please introduce yourself and explain me your project . anyone project.
Ans : I answered in a truthful manner and no need to tell extra if u haven't did any particular projects .
Introduce more towards your education and with technology over which you have worked with .
You can even include your extracurricular activities little .

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?