*college:TIER 2/3.
*department:ECE ,currently 6th semester.
*company:ZOHO[ON CAMPUS]
*position:SUMMER INTERN.
*location:CHENNAI.
INTERVIEW EXPERIENCE
Total Procedure Consists of 5 rounds
1)Written Test
2)Coding
3)Advanced coding
4)Technical
5)HR
Round 1:
It consists of two sextions "C" programming aptitude and normal aptitude.
*C aptitude is very tricky and we should read the question first and think for some
time[practice 2braces.com and gfg]
*It consists of arithmetic aptitude some math questions and finding missing term in series
etc.
Next day they called me for 2nd round.
2nd Round[programming]
It is face to face interview which conducted on zoho meet.
At first interviewer asked me which lang u r using i said cpp.And he posted 6 questions on
chat box.
1)max product of 3 number.
ex:[1,2,3,4,5,6]
output:4*5*6=120;
[1,2,-3,-4,5,6]
output:(-3*-4)*6=72 which is more than 2*5*6=60.
2)Direct question from leetcode
https://leetcode.com/problems/rotate-array/
3)sorting based question.
4)Given an array and integer k check whether we can get average=k by deleting exactly one element.
ex:[1,2,3,10],k=2
output:true, we can get avg 2 by deleting 10.
I used avg formula,avg=sum of ele/no of ele;
Here required avg =2 ,then formula changes to 2=?/3 ,sum of elements =6.And total array sum is 16 now 16-6=10,we want check whether 10 is present in given array or not.
5)Given an array check whether there are unique frequencies of elements.
ex:[1,2,2,3,3,3]
output:true 1:1,2:2,3:3
[1,2,3,3,3]
output:false 1:1,2:1,3:3,we got duplicate frequencies.
6)Given array of string as directions and coordinates x and y ,check we are in position
(x,y) after executing all directions ,we start from (0,0).
ex:["east","west",","north",south"],x=0,y=0;
output:true,after executing all directions we stay at (0,0);
I solved all six questions.
At evening they directly selected me for summer intern without any further rounds.And my fellow friends underwent 5 rounds.
My joining date is April 11,2022.
👍👍👍ALL THE BEST.``