![]() |
VOOZH | about |
Cvent visited our college on 19 September 2020. It was a virtual campus drive. There was a total of 5 rounds in the whole process.
First-round (Aptitude + Technical): There were a total of 30 questions to be done in 45 minutes which were from different topics like SQL, C++ outputs, and basics. If you know the basics you can easily clear this round. 24 students were qualified for the next rounds.
Second round (Coding): There was a single question to be done in 1 hour. The question was a simple matrix question, Those who do the question with optimised approach were shortlisted for the next rounds. A total of 7 students was able to make it to the next round.
Third round (F2F interview): The Interviewer introduced himself and then started with the first question.
You are given a queue of people with different heights with values > 0 and in between, there are trees with values -1. We have to sort the heights in decreasing order without disturbing the position of -1.
Input: 3 2 -1 7 9 -1 6 5 Output: 9 7 -1 6 5 -1 3 2
I gave him the brute force approach of taking the non-negative integers into another array and sort the array and then again put it back in the original. He was satisfied with the solution and asked me to code it.
You are given a function randomgen() that gives us 0 and 1 with a probability of 50%. We have to change the probability of getting a 0 to 75% and 1 to 25%.
I made another function and tried a naive approach for it. He asked me to code. He then DRY run my code with a test case after that he told me the efficient approach by using a logical operator(AND).
He then asked me an SQL query by using joins and some theory questions about memory allocation of objects and variables and types of joins.
5 students made it to the next round.
Fourth round(F2F interview): The interviewer directly moved to data structure questions.
After this round 3 students were qualified for the last round.
Fifth round(Aptitude and Personality test): It was a CCAT test in which the aptitude contains 50 questions to be done in 22 minutes and the personality test has no time limit. The aptitude test was easy to medium level you have to qualify by doing 25 above correct questions in a given time.
Finally, all 3 students were selected for the fulltime offer. I was one of them :)
Hope it Helps.