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

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 at Netaji Subhas Institute of Technology (NSIT) 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. 

    DFS can be used to detect cycle in an undirected graph. Do a DFS traversal of the given graph. For every visited vertex ‘v’, if there is an adjacent ‘u’ such that u is already visited and u is not parent of v, then there is a cycle in graph.

    If we don’t find such an adjacent for any vertex, we say that there is no cycle.

    Pseudocode :

     

    DetectCycle(graph, v, visited[], parent)
    {
    	// mark the current node as visited
    ...
  • Answered Anonymously
  • 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. 

    One method could be to divide the array in slots of size n/3. A simple way to implement 3 stacks is to divide the array in 3 slots of size n/3 each, and fix the slots for different stacks, i.e., use arr[0] to arr[n/3-1] for first stack, and arr[n/3] to arr[2n/3-1] for stack2 where arr[] is the array to be used to implement 3 stacks and size of array be n. The problem with this method is inefficient use of array space. ...

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

    1. A compiled language is a programming language whose implementations are typically compilers and not interpreters. An interpreted language is a programming language whose implementations execute instructions directly and freely, without previously compiling a program into machine-language instructions.


    2. In compiled language, once the program is compiled it is expressed in the instructions of the target machine. Whil...

  • Answered Anonymously

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)

 Software Development Engineer II

 (1)

 Senior Software Engineer 2

 (1)

 Senior Software Quality Assurance Engineer

 (1)

 Software Developer

 (7)

 Software Developer Intern

 (1)

 SDE (Software Development Engineer)

 (1)

I applied via campus placement at Delhi College of Engineering (DCE), Delhi 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 experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain OOPS concept and how you apply it in your implementation
  • Ans. 

    OOPS is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPS focuses on the concept of classes and objects

    • Encapsulation: bundling data and methods that operate on the data within a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for diffe...

  • Answered by AI
  • Q2. Difference between Comparable and Comparator. Difference between Abstract Class and Interface
  • Ans. 

    Comparable is an interface used for natural ordering, Comparator is an interface used for custom ordering. Abstract class can have method implementations, Interface cannot.

    • Comparable interface is used to define the natural ordering of objects. Example: String class implements Comparable interface for natural ordering based on alphabetical order.

    • Comparator interface is used to define custom ordering of objects. Example:...

  • Answered by AI
  • Q3. Given a string. Find the number of occurrences of each character
  • Ans. 

    Count occurrences of each character in a given string

    • Create an array to store the count of each character

    • Iterate through the string and increment the count of each character in the array

    • Return the array with counts for each character

  • Answered by AI
  • Q4. Given an array. Remove the number of duplicates
  • Ans. 

    Remove duplicates from an array of strings

    • Iterate through the array and store each element in a set to keep track of unique values

    • Create a new array with the unique values from the set

  • Answered by AI
  • Q5. Given a student object having name and grade data variables. Sort the object on the basis of highest grade.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic java fundamentals
  • Q2. Spring boot,sql
Round 2 - Technical 

(2 Questions)

  • Q1. Some technical questions from manager
  • Q2. Some challenges or scenario based questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion mostly
  • Q2. Benifts that they offer with TR
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Sliding window based question
Round 2 - Technical 

(1 Question)

  • Q1. Java, JS, SQL based questions
Round 3 - HR 

(1 Question)

  • Q1. Reasons to switch , motivation , salary discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Raipur and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The coding test consists of multiple-choice questions and one medium-hard level coding question.

Round 2 - Technical 

(5 Questions)

  • Q1. Given three jugs with different capacities and no measuring tools, how can you measure out a specific amount of water using the jugs you have?
  • Q2. What is the angle between the minute and hour hand of a clock at 3:45?
  • Ans. 

    The angle between the minute and hour hand of a clock at 3:45 is 157.5 degrees.

    • Calculate the angle formed by the hour hand from 12 o'clock position to 3:45 position (135 degrees)

    • Calculate the angle formed by the minute hand from 12 o'clock position to 3:45 position (22.5 degrees)

    • Subtract the smaller angle from the larger angle to get the angle between the two hands (157.5 degrees)

  • Answered by AI
  • Q3. What is indexing in Database Management Systems (DBMS)?
  • Ans. 

    Indexing in DBMS is a technique used to improve the performance of queries by allowing faster retrieval of data.

    • Indexes are data structures that store a small portion of the data set in an easily searchable format.

    • They help in speeding up the data retrieval process by reducing the number of disk accesses needed.

    • Indexes can be created on one or more columns of a table to improve the performance of SELECT queries.

    • Example...

  • Answered by AI
  • Q4. What is the lifecycle of a React component?
  • Ans. 

    The lifecycle of a React component includes mounting, updating, and unmounting phases.

    • Mounting phase: constructor, render, componentDidMount

    • Updating phase: shouldComponentUpdate, render, componentDidUpdate

    • Unmounting phase: componentWillUnmount

  • Answered by AI
  • Q5. How you delete entry in mongodb database
  • Ans. 

    To delete an entry in MongoDB database, you can use the deleteOne() or deleteMany() methods.

    • Use deleteOne() method to delete a single document based on a specific condition

    • Use deleteMany() method to delete multiple documents based on a specific condition

    • Make sure to specify the filter criteria to accurately delete the desired entry

  • Answered by AI

Software Engineer Interview Questions & Answers

Globant user image Priyanka Vitthal chakkar

posted on 5 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can override or extend the functionality of the base class

  • Answered by AI
  • Q2. What are the types of joins in mysql
  • Ans. 

    Types of joins in MySQL include inner join, left join, right join, and full join.

    • Inner join: Returns rows when there is a match in both tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

    • Full join: Returns rows when there is a match in one of the tables.

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. How to handle multiple api's
  • Ans. 

    Use a centralized API gateway to manage and route requests to multiple APIs efficiently.

    • Implement a centralized API gateway to handle incoming requests and route them to the appropriate API based on the endpoint.

    • Utilize API management tools like Apigee, Kong, or AWS API Gateway to manage and monitor multiple APIs.

    • Consider implementing a caching layer to improve performance and reduce the number of requests to external

  • Answered by AI
  • Q2. What does strstr function do?
  • Ans. 

    strstr function searches for a substring within a string and returns a pointer to the first occurrence of the substring.

    • Used in C programming language

    • Syntax: char *strstr(const char *haystack, const char *needle)

    • Example: char *str = strstr("hello world", "world")

  • Answered by AI

Skills evaluated in this interview

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

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 - ₹18 L/yr
54% 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
169 salaries
unlock blur

₹6 L/yr - ₹23.2 L/yr

Product Consultant
158 salaries
unlock blur

₹4.5 L/yr - ₹9.6 L/yr

Senior Software Engineer
142 salaries
unlock blur

₹14 L/yr - ₹42 L/yr

Senior Associate
88 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Team Lead
83 salaries
unlock blur

₹8.5 L/yr - ₹24 L/yr

Explore more salaries
Compare Cvent with

Salesforce

4.1
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