Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Cvent Team. If you also belong to the team, you can get access from here

Cvent Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Cvent Software Engineer Interview Questions, Process, and Tips

Updated 16 Jan 2024

Top Cvent Software Engineer Interview Questions and Answers

  • Q1. Detect Cycle in Undirected Graph Problem Statement You are provided with an undirected graph composed of 'N' vertices and 'M' edges, where vertices are labeled from 1 to ...read more
  • Q2. Implement Three Stacks Using a Single Array You are given a sequence of queries for insertion and deletion operations on 3 separate stacks. Your task is to implement the ...read more
  • Q3. What is the difference between compiled and interpreted languages?
View all 6 questions

Cvent Software Engineer Interview Experiences

5 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com

Round 1 - Group Discussion 

About technical skills regarding core subjects like java sql manual and selenium

Round 2 - HR 

(2 Questions)

  • Q1. Work place,salary, experience
  • Q2. About job location
Round 3 - HR 

(2 Questions)

  • Q1. About shifts and location
  • Q2. Abouts shiftss and locations
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

45 min simple technical oops java based and aptitude

Round 2 - Coding Test 

30 min coding test 1 question on dp

Round 3 - One-on-one 

(1 Question)

  • Q1. Dsa question + resume
Round 4 - One-on-one 

(1 Question)

  • Q1. One dsa question

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

I was interviewed in Dec 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA and Compiler Design.

  • Q1. 

    Detect Cycle in Undirected Graph Problem Statement

    You are provided with an undirected graph composed of 'N' vertices and 'M' edges, where vertices are labeled from 1 to 'N'.

    Your task is to determine if...

  • Ans. 

    Detect cycle in an undirected graph by checking for a path that begins and ends at the same vertex.

    • Use Depth First Search (DFS) to traverse the graph and detect cycles.

    • Maintain a visited set to keep track of visited vertices and a parent pointer to avoid visiting the same vertex twice.

    • If a visited vertex is encountered that is not the parent of the current vertex, a cycle is detected.

    • Return 'Yes' if a cycle is found, '

  • Answered by AI
  • Q2. 

    Implement Three Stacks Using a Single Array

    You are given a sequence of queries for insertion and deletion operations on 3 separate stacks. Your task is to implement these three stacks using a single arra...

  • Ans. 

    Implement three stacks using a single array and handle insertion and deletion operations efficiently.

    • Create an array to store elements for all three stacks and keep track of their respective top indices.

    • For each query, check the type of operation (push or pop) and perform the necessary action.

    • Handle cases where a pop operation is attempted on an empty stack by returning -1.

    • Ensure the array size does not exceed the tota...

  • Answered by AI
  • Q3. What is the difference between compiled and interpreted languages?
  • Ans. 

    Compiled languages are translated directly into machine code before execution, while interpreted languages are translated line by line during execution.

    • Compiled languages are generally faster in execution as the entire code is translated before running (e.g. C, C++)

    • Interpreted languages are easier to debug and more flexible as they can be executed directly without needing a separate compilation step (e.g. Python, JavaS...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACvent interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewRejected

Skills evaluated in this interview

Round 1 - Coding Test 

Online coding

Round 2 - Technical 

(1 Question)

  • Q1. Face to face technical technical questions including coding
Round 3 - Aptitude Test 

Basic questions quite easy

Round 4 - Technical 

(2 Questions)

  • Q1. Face to face technical round
  • Q2. Face to face technical round with senior manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with all basic programming concepts and project knowledge that you worked on.

Cvent interview questions for designations

 Software Engineer II

 (1)

 Senior Software Engineer

 (1)

 Senior Software Engineer 2

 (1)

 Software Development Engineer II

 (1)

 Senior Software Quality Assurance Engineer

 (1)

 Software Developer

 (7)

 Software Developer Intern

 (1)

 SDE (Software Development Engineer)

 (1)

I applied via Campus Placement and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Implement 3 stacks using 1 array
  • Ans. 

    Implement 3 stacks using 1 array

    • Divide the array into 3 equal parts

    • Use pointers to keep track of top of each stack

    • Push and pop elements based on the pointer of the respective stack

  • Answered by AI
  • Q2. Detect cycle in a graph
  • Ans. 

    Detect cycle in a graph

    • Use Depth First Search (DFS) algorithm to traverse the graph

    • Maintain a visited set to keep track of visited nodes

    • If a node is visited again during DFS, then a cycle exists

    • If all nodes are visited and no cycle is found, then no cycle exists

  • Answered by AI
  • Q3. Difference between Interpreted Language and compiled Language
  • Ans. 

    Interpreted languages are executed directly by the interpreter while compiled languages are first converted to machine code.

    • Interpreted languages are slower than compiled languages as they are executed line by line.

    • Compiled languages are faster as the code is already converted to machine code.

    • Interpreted languages are easier to debug as errors can be caught at runtime.

    • Compiled languages are harder to debug as errors ca...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, prepare DSA well.
Prepare your resume

Skills evaluated in this interview

Get interview-ready with Top Cvent Interview Questions

Interview questions from similar companies

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had sent my resume to the hiring group, Selection through telephonic interviews. I was interviewed by three different research groups  (once by each).
Tips: Factors in decreasing order of importance: CGPA each stage. Ability to explain your projects precisely. Ability to solve ''standard" logarithmic problems.  The way you think and put down your Answer is the most important. The final answer .s not so I important, and they prod you when you think out aloud anyway.

Round: Technical Interview
Experience: Almost- by default they ask about your previous projects/internships if they are relevant to the group. Ofher questions depend on the group you are interviewed by and your own profile, In my case it was machine learning, text mining etc. I was told about the research problem they were dealing with then and asked f or comments/suggestions/.inputs and a discussion followed.
Tips: Basically these are specialized Interviews so it's good to have sound knowledge of your domain (analytical and application skills are very much required).

Skill Tips: CGPA>9.0, 1f not (like me) relevant work done in the domain and in past internship.A recommendation from the professor is also a good add on.
College Name: IIT Madras

Interview Preparation Tips

Round: Test
Experience: There was an apititude test basically in line with CAT pattern. It was conducted online for about 45 min duration. The questions were rather simple but each question was time bound (around 45 sec or so).
Tips: As such I did not have any structured study plan. I did refresh some of my basics in mechanics and analysis. I was more inclined to get a job in aerospace division. Read as per your interest.
Duration: 45 minutes

Round: Group Discussion
Experience: Initially, we are seated randomly in a circular manner and each one was given two minutes to describe the topic. It was followed by an tense debate where participants converged and diverged on different sets of issue. They were particularly looking for interpersonal skills and out of the box thinking.

Round: Interview
Experience: The interview was purely management type.More questions were thrown at team building, bio-data, why this company? , project, what you Can contribute for the firm?, where you see yourself in next 5 -10 years, ambitions, some amount of optimization tools and techniques, concluding remarks....Interpersonal skills and clarity in answering where mainly
IBM was a more relaxed interview, which basically dealt with management and interpersonal skills. Questions like “if one of our team mate is very stubborn, lazy, adamant, how will you tackle the situation” were asked.
Tips: College (B Tech) curricular activities, NTSC certificate, Math Olympiad certificate, all India quiz competition awards were noted and appreciated. That really was a booster. That helps in implanting an idea that you are not just blah blah blah.

Skill Tips: Be very sure about your mechanics, analysis and design. These three are the fundamentals.
I haven prepared for placements exclusively. Here were combined discussions. However, it really helps if you can revise and make your fundamentals were clear. The basic understanding should be there. An hour every day for two months will do the trick.
Be really choosy of the company you want to be in. Learn a lot more of the company and get an idea of what they are actually looking for. But still don’t freeze your mind to those realms alone.. Be open minded and cheerful. The first few questions will set the mood of the interview. If you are bale to crack that, then things will be really smooth. Really concentrate on your fundamentals, especially analysis and design.
Skills: Mechanics, Analysis , Design
College Name: IIT-Madras

Interview Preparation Tips

Round: Resume Shortlist
Experience: CGPA > 8 is necessary

Round: Test
Experience: Online Test + Written Test
Online Test - Duration 90 minutes + Written Test 30 minutes for Hardware profile
Online Test -Quants, Number Series ; Calculators were not allowed
Written Test - Semiconductor Basics

Round: Interview
Experience: Interview is held in either 1 round for non-core profile or several rounds of technical interviews for Hardware.
Technical round consisted of questions form topics like VLSI, Semiconductors (BJT, MOS), ASIC Design Flow, CMOS Process Flow.

Round: Group Discussion
Experience: Group Discussion is held for non-core profilesDuration varies from 20-30 minutes with 11 members.

General Tips: Never ever mention GRE or MS or any higher studies, for that matter, in any placement interview if you want to get placed in that company
Practicing quant, puzzle solving and GD from early in the semester would definitely help
Core placement: be thorough with the core fundaes
Practice general quant questions without a calculator
Skills: Quants, Puzzle Solving
College Name: IIT MADRAS

Interview Preparation Tips

Round: Test
Experience: It had 3 parts: Data manipulation, number series and calculations.

Round: Test
Experience: Technical test on C. Typical questions on what will be the output of the program.

Round: Technical Interview
Experience: Questions were based on various areas of CSE, especially Programming languages and thesis work. Questions on Database connectivity in Java , CGI, DFA, DMA etc were also asked.
Tips: ISL works 80% in java and 20% in C. Thus, prepare Java well before appearing for the IBM-ISL. Must have basic knowledge in databases, Operating systems.

College Name: IIT KANPUR

Interview Preparation Tips

Round: Test
Experience: Initial shortlisting was based on 1 hour written test.
Questions on Quant,Codingand Algorithms were asked in the test
Tips: Focus on quant,coding and algorithms
Duration: 60 minutes

Round: Technical Interview
Experience: The subject knowledge and skills tested in Technical interview are:
1.Math
2.Coding
Tips: Good math knowledge is required.

Round: HR Interview
Experience: General HR question were asked in this round.

Skills: Data structure, Algorithms, Math, Coding
College Name: IIT MADRAS
Contribute & help others!
anonymous
You can choose to be anonymous

Cvent Interview FAQs

How many rounds are there in Cvent Software Engineer interview?
Cvent interview process usually has 4 rounds. The most common rounds in the Cvent interview process are Coding Test, Technical and Aptitude Test.
How to prepare for Cvent Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Cvent. The most common topics and skills that interviewers at Cvent expect are Javascript, Hospitality, Troubleshooting, Agile Coaching and Backend.
What are the top questions asked in Cvent Software Engineer interview?

Some of the top questions asked at the Cvent Software Engineer interview -

  1. Difference between Interpreted Language and compiled Langu...read more
  2. Implement 3 stacks using 1 ar...read more
  3. Detect cycle in a gr...read more

Recently Viewed

INTERVIEWS

Sobha

No Interviews

INTERVIEWS

LEK Consulting

No Interviews

INTERVIEWS

Jan Shikshan Sansthan

No Interviews

INTERVIEWS

FNZ

No Interviews

INTERVIEWS

Yum!

No Interviews

INTERVIEWS

Everest Group

No Interviews

INTERVIEWS

Epsilon

No Interviews

INTERVIEWS

Gainwell Commosales

No Interviews

INTERVIEWS

Simplilearn

No Interviews

INTERVIEWS

Yum!

No Interviews

Tell us how to improve this page.

Cvent Software Engineer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more
Cvent Software Engineer Salary
based on 82 salaries
₹6 L/yr - ₹20 L/yr
59% more than the average Software Engineer Salary in India
View more details

Cvent Software Engineer Reviews and Ratings

based on 7 reviews

2.7/5

Rating in categories

3.7

Skill development

2.6

Work-life balance

2.2

Salary

2.4

Job security

2.7

Company culture

2.2

Promotions

2.3

Work satisfaction

Explore 7 Reviews and Ratings
Lead Frontend Software Engineer

Bangalore / Bengaluru

4-5 Yrs

Not Disclosed

Lead Frontend Software Engineer

Bangalore / Bengaluru

6-11 Yrs

Not Disclosed

Explore more jobs
Assistant Team Leader
171 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Consultant
158 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
142 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
87 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
84 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cvent with

Salesforce

4.0
Compare

Adobe

3.9
Compare

Oracle

3.7
Compare

SAP

4.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent