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 Developer Interview Questions, Process, and Tips

Updated 17 Sep 2024

Top Cvent Software Developer Interview Questions and Answers

  • Q1. Meeting Rescheduling Challenge Ninja is tasked with organizing a meeting in an office that starts at time ‘0’ and ends at time ‘LAST’. There are ‘N’ presentations schedu ...read more
  • Q2. Lowest Common Ancestor (LCA) Problem Statement Understanding the concept of Lowest Common Ancestor (LCA) in graph theory and computer science is essential. Consider a ro ...read more
  • Q3. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N . Starting at the 0th stair, you need to reach the Nth stair. Each time you can ...read more
View all 6 questions

Cvent Software Developer Interview Experiences

7 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy to medium level questions based on java, c , dbms and aptitude

Round 2 - Coding Test 

1 or 2 dp question within 30 to 45 minutes of deadline

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Video test questions of cvent company

Round 2 - Group Discussion 

Artificial Intelligence vs human Intelligence debat

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Java concepts Nd oops
  • Q2. System design HLD

I was interviewed in Oct 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Medium

1 Coding question

  • Q1. 

    Meeting Rescheduling Challenge

    Ninja is tasked with organizing a meeting in an office that starts at time ‘0’ and ends at time ‘LAST’. There are ‘N’ presentations scheduled with given start and end times....

  • Ans. 

    Reschedule at most K presentations to maximize longest gap without overlap.

    • Iterate through presentations and calculate the gap between each pair of presentations

    • Sort the presentations by their start times and keep track of the longest gap

    • Reschedule at most K presentations to maximize the longest gap without overlap

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in GurgaonEligibility criteriaabove 6.5 CGPACvent interview preparation:Topics to prepare for the interview - Data Structures, Algorithms ( Sorting, Searching, Recursion, Graph algos,DP etc) , Operating System, Computer Networking, DBMS ( SQL and No Sql databases), Programming Languages ( C++, Java, Python), Object Oriented Programming, Web development ( MERN technology)Time required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : First Learn Basic Programming Concepts start with c/c++ then go for different data structures and basic algorithms
Tip 2 : Start doing CP ( competitive programming on different platforms ), Make sure you are consistent this way you will most likely become good in cp 
Tip 3 : Always stay in touch with those important subjects which are asked in interviews. Start learning web development or android/ios apps development or ML whatever you think you like work on some projects. Interviewer sometimes asks about your projects. If you have worked as an intern somewhere make sure you put it in resume as well as the kind of work you have done there

Application resume tips for other job seekers

Tip 1 : Make sure you put your skills in order in which you are good. 
Tip 2 : Put projects and Intern details ( If worked somewhere as imtern)
Tip 3 : Make it easily readable, Keeps the points in focus which you want them to see

Final outcome of the interviewSelected

Skills evaluated in this interview

Cvent interview questions for designations

 Software Developer Intern

 (1)

 Software Engineer

 (5)

 Salesforce Developer

 (1)

 Senior Software Engineer

 (1)

 Software Engineer II

 (1)

 Junior Web Developer

 (1)

 Data Warehouse Developer

 (1)

 Software Development Engineer II

 (1)

I applied via Recruitment Consultant and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How to handle all problem
  • Ans. 

    Handling all problems requires a systematic approach and effective communication.

    • Identify the problem and its root cause

    • Develop a plan of action

    • Communicate with stakeholders

    • Implement the plan

    • Evaluate the outcome and make necessary adjustments

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer give without hesitation

Get interview-ready with Top Cvent Interview Questions

I was interviewed before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Easy

It was the first round. Was taken online and there were 2 invigilators from the company

  • Q1. 

    Remove Duplicates from String Problem Statement

    You are provided a string STR of length N, consisting solely of lowercase English letters.

    Your task is to remove all duplicate occurrences of characters i...

  • Ans. 

    Remove duplicate occurrences of characters in a given string.

    • Use a hash set to keep track of characters seen so far.

    • Iterate through the string and add non-duplicate characters to a new string.

    • Return the new string as the result.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

Face to face interview with a senior software developer

  • Q1. How can you cut a circular cake into 8 pieces using only 3 cuts?
  • Q2. 

    Count Ways To Reach The N-th Stair Problem Statement

    You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. ...

  • Ans. 

    The problem involves finding the number of distinct ways to climb to the N-th stair by taking either one or two steps at a time.

    • Use dynamic programming to solve this problem efficiently.

    • Define a recursive function to calculate the number of ways to reach each stair.

    • Consider base cases for 0 and 1 stairs.

    • Use memoization to store and reuse intermediate results to avoid redundant calculations.

    • Return the result modulo 10^9

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Questions around my resume mainly and 1 coding question. Was taken by the engineering manager

  • Q1. 

    Lowest Common Ancestor (LCA) Problem Statement

    Understanding the concept of Lowest Common Ancestor (LCA) in graph theory and computer science is essential.

    Consider a rooted tree ‘T’ containing ‘N’ nodes...

  • Ans. 

    The Lowest Common Ancestor (LCA) problem involves finding the lowest node in a tree that is an ancestor of two given nodes.

    • LCA is the lowest node in a tree that is an ancestor of both given nodes.

    • The tree is rooted at node 1 for each test case.

    • Paths from each node to the root are considered to find the LCA.

    • Constraints include the number of test cases, nodes, queries, and node values.

    • Time limit for the solution is 1 sec

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaAbove 7 cgpaCvent interview preparation:Topics to prepare for the interview - Algorithms, Data structures, Database Management, Operating systems, Computer Networks, Asymptotic notationsTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice questions in a time bound manner. Set a timer and solve the questions within that time frame only as the interview is also going to be time bound.

Tip 2 : Always revise. Mark the questions that you couldn't solve in the first go. Revise them again after a week or 2 so that the concepts become more clear.

Application resume tips for other job seekers

Tip 1 : Do at least 1 development project and mention clearly how you contributed in that.
Tip 2 : Only mention those skills in which you are confident. If you are at basic level for some skill, mention it accordingly.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Duration: 45 minutes

Skills: Data structure, Algorithm
College Name: na

Interview questions from similar companies

I applied via Company Website and was interviewed in Oct 2018. There was 0 interview round.

Interview Preparation Tips

General Tips: This interview was a technical one but was majorly a stress test. It lasted for about 1 hour 10 minutes. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my B.Tech curriculum i.e. computer science related topics. He stressed a lot on the basics related to my project topic. Luckily I was able to answer most of the questions correctly. I tried to answer each question with examples and also used props on the table (like pens, paperweights, pen stands etc.) to explain my theories. It was my first offcampus interview, and I think I did pretty well for a fresher.
You need to stay calm and should apply presence of mind. Please go through the job description thoroughly word-by-word and recheck your resume to ensure that you are a best-fit for the position.
Skills: Communication, Body Language, Problem Solving, Leadership, Presentation Skills
Duration: <1 week

I applied via Walk-in and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1.Technical Ques(OOPS Concept)and 2. Area of Interest 3. About Company 4. more

Interview Preparation Tips

Interview preparation tips for other job seekers - Hello Folks,
Sharing some tips while facing Interview Assessment or GD Round Assessment.
1. Be Confident always give the answer what they ask for, Never connect your answer with different topic.
2. Always go through Company Portal or wiki about their Operation & Function.
3. Always have positive vibes that whatever yes or No, You will surely gain something.
All the Best..!!

I applied via Walk-in and was interviewed in Jan 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Basic structure of an HTML page
  • Ans. 

    Basic structure of an HTML page includes doctype declaration, html, head, and body tags.

    • DOCTYPE declaration specifies the HTML version

    • HTML tag wraps the entire content of the page

    • Head tag contains meta information, title, and links to external resources

    • Body tag contains the visible content of the page

  • Answered by AI
  • Q2. What is the difference between padding and margin?
  • Ans. 

    Padding is the space inside an element, while margin is the space outside an element.

    • Padding is used to create space between an element's content and its border.

    • Margin is used to create space between an element's border and the adjacent elements.

    • Padding is affected by the background color of the element, while margin is not.

    • Padding can be set individually for each side of an element (top, right, bottom, left), while ma...

  • Answered by AI
  • Q3. What is Box Model?
  • Ans. 

    Box Model is a concept in CSS where every element is treated as a box with content, padding, border, and margin.

    • Box Model consists of content, padding, border, and margin.

    • Content is the actual content of the box.

    • Padding is the space between the content and the border.

    • Border is the line that goes around the padding and content.

    • Margin is the space outside the border.

  • Answered by AI
  • Q4. What are different types of directives in Angular?
  • Ans. 

    Directives in Angular are markers on DOM elements that tell Angular to attach a specified behavior to that element.

    • There are three types of directives in Angular: Component, Structural, and Attribute.

    • Component directives are used to create reusable UI components.

    • Structural directives are used to change the structure of the DOM.

    • Attribute directives are used to change the appearance or behavior of an element.

    • Examples of ...

  • Answered by AI
  • Q5. Difference between JIT compiler and AOT?
  • Ans. 

    JIT compiles code at runtime while AOT compiles code before runtime.

    • JIT stands for Just-In-Time compilation and compiles code at runtime.

    • AOT stands for Ahead-Of-Time compilation and compiles code before runtime.

    • JIT is used in Java Virtual Machine (JVM) while AOT is used in languages like C and C++.

    • JIT can result in slower startup time but faster execution while AOT can result in faster startup time but slower execution...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to answer 80 % of the questions you are asked, you will be able to crack the interview

Skills evaluated in this interview

Cvent Interview FAQs

How many rounds are there in Cvent Software Developer interview?
Cvent interview process usually has 1-2 rounds. The most common rounds in the Cvent interview process are Assignment, Group Discussion and Aptitude Test.
How to prepare for Cvent Software Developer 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 Java, CSS, HTML, J2Ee and Javascript.
What are the top questions asked in Cvent Software Developer interview?

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

  1. How to handle all prob...read more
  2. Java concepts Nd o...read more
  3. System design ...read more

Tell us how to improve this page.

Cvent Software Developer Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more
Cvent Software Developer Salary
based on 16 salaries
₹7 L/yr - ₹15 L/yr
56% more than the average Software Developer Salary in India
View more details

Cvent Software Developer Reviews and Ratings

based on 2 reviews

3.0/5

Rating in categories

3.0

Skill development

2.0

Work-life balance

4.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

2.0

Work satisfaction

Explore 2 Reviews and Ratings
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