Upload Button Icon Add office photos

Filter interviews by

Crest Venue and Entertainment Software Interview Questions and Answers

Updated 28 May 2024

Crest Venue and Entertainment Software Interview Experiences

Popular Designations

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Questions related to technology specific. Questions can be based on programming skills and understanding the depth of developer knowledge.
Round 3 - Technical 

(1 Question)

  • Q1. Scenario-based questions and some high-level questions as well.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company for the initial stage of your carrier you can get a lot to learn. Product based company so you will learn a lot for any development.

Senior Developer Interview Questions asked at other Companies

Q1. What is your current CTC and what is your expected CTC?
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

First round is aptitude test of duration 30 min.

Round 2 - Technical 

(2 Questions)

  • Q1. Basic swift, sqlite database, Concurrency, SOILD principle, App upload process.
  • Q2. 1. Difference between Operation and GCD? 2. How SSL pinning works? 3. Difference between final and const? 4. Higher order functions
  • Ans. 

    Answers to various technical questions related to software engineering.

    • Operation is a mathematical function that takes input and produces an output, while GCD (Greatest Common Divisor) is the largest positive integer that divides two numbers without a remainder.

    • SSL pinning is a security measure that ensures a client only communicates with a server that has a specific SSL certificate.

    • Final keyword in Java is used to res...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation

Interview Preparation Tips

Topics to prepare for Crest Venue and Entertainment Software Software Engineer interview:
  • Swift
  • IOS
  • SQLite
  • Multithreading

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Technical 

(3 Questions)

  • Q1. About operations, role
  • Q2. Inventory, wastage control, inventory control
  • Q3. Situation based
Round 2 - One-on-one 

(2 Questions)

  • Q1. About goals , personal information
  • Q2. Abouts me , hobbys , how am I different
Round 3 - Technical 

(1 Question)

  • Q1. Personal questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive and smile
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic questions and they cheking your behavioural Attitude
Round 3 - Technical 

(1 Question)

  • Q1. Related to your previous company and P&L, Cogs, Ebidta...
Round 4 - Technical 

(1 Question)

  • Q1. All questions from basic to higher level, Case study, Appetitude Test.

I applied via Walk-in and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. While I am joining as a associate position , they were asked about myself that's it

Interview Preparation Tips

Interview preparation tips for other job seekers - I am getting promoted from 2016 to 2019 ,first I got promoted to Supervisor level ,and I got promoted to Asst manager level ,in that interviews I have cleared my organisation basics and achievement ,
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about your self
  • Ans. 

    I am a dedicated and detail-oriented professional with a background in marketing and a passion for driving results.

    • Background in marketing

    • Detail-oriented

    • Passion for driving results

  • Answered by AI

Interview Questionnaire 

15 Questions

  • Q1. What is a friend function
  • Ans. 

    A friend function is a non-member function that has access to the private and protected members of a class.

    • Declared inside the class but defined outside the class scope

    • Can access private and protected members of the class

    • Not a member of the class but has access to its private members

    • Used to allow external functions to access and modify private data of a class

    • Can be declared as a friend in another class

  • Answered by AI
  • Q2. Some VI editor commands
  • Q3. Definition of atoi function of C
  • Ans. 

    atoi function converts a string to an integer in C.

    • The function takes a string as input and returns an integer.

    • Leading white spaces are ignored.

    • If the string contains non-numeric characters, the function stops conversion and returns the converted value.

    • The function returns 0 if the input string is not a valid integer.

    • Example: atoi('123') returns 123.

  • Answered by AI
  • Q4. A program to print star pattern
  • Ans. 

    A program to print star pattern

    • Use nested loops to print the pattern

    • The outer loop controls the number of rows

    • The inner loop controls the number of stars to be printed in each row

    • Use print() or println() function to print the stars

  • Answered by AI
  • Q5. Run time polymorphism in C++
  • Ans. 

    Run time polymorphism is the ability of a program to determine the object type at runtime and call the appropriate method.

    • It is achieved through virtual functions and dynamic binding.

    • Allows for more flexible and extensible code.

    • Example: a base class Animal with virtual function makeSound() and derived classes Dog and Cat that override makeSound().

    • At runtime, if an Animal pointer points to a Dog object, calling makeSoun

  • Answered by AI
  • Q6. Some queries like finding the second highest salary in a table
  • Q7. What is right outer join and it's use in real world scenario
  • Ans. 

    Right outer join is a type of join operation that returns all the rows from the right table and the matching rows from the left table.

    • Right outer join is denoted by the RIGHT JOIN keyword in SQL.

    • It is used to combine rows from two tables based on a related column.

    • In the result set, unmatched rows from the right table will have NULL values for the columns of the left table.

    • A real-world scenario for using a right outer j...

  • Answered by AI
  • Q8. What is refrential integrity
  • Ans. 

    Refrential integrity ensures that relationships between tables in a database remain consistent.

    • It is a database concept that ensures that foreign key values in one table match the primary key values in another table.

    • It prevents orphaned records in a database.

    • It maintains data consistency and accuracy.

    • For example, if a customer record is deleted, all related orders for that customer should also be deleted.

    • It is enforced...

  • Answered by AI
  • Q9. Difference between Primary key and Unique key
  • Ans. 

    Primary key uniquely identifies a record in a table, while Unique key ensures uniqueness of a column.

    • Primary key can't have null values, Unique key can have one null value

    • A table can have only one Primary key, but multiple Unique keys

    • Primary key is automatically indexed, Unique key is not necessarily indexed

  • Answered by AI
  • Q10. Triggers and their types
  • Ans. 

    Triggers are database objects that are automatically executed in response to certain events.

    • Triggers can be used to enforce business rules, audit changes, or replicate data.

    • There are two types of triggers: DML triggers and DDL triggers.

    • DML triggers are fired in response to DML statements (INSERT, UPDATE, DELETE).

    • DDL triggers are fired in response to DDL statements (CREATE, ALTER, DROP).

  • Answered by AI
  • Q11. Swap two character variables without using third
  • Ans. 

    Swapping two character variables without using third

    • Use XOR operator to swap two variables without using third variable

    • Assign the XOR of both variables to the first variable

    • Assign the XOR of the first variable and second variable to the second variable

  • Answered by AI
  • Q12. Strength and Weakness
  • Q13. Why do you want to join Amdocs when you already have an offer from IBM
  • Q14. About family and home town
  • Q15. Any problem in relocating to Pune or Gurgaon

Interview Preparation Tips

Round: Test
Experience: Questions are easy but time is main constraint, try to complete each section with at least 80% accuracy.

Round: Technical Interview
Experience: Questions were mainly on C,C++(OOPS concepts) and Unix. If you don't know the answer of some of the questions just tell them don't try to give random answers. Be well prepared with your OOPs concepts as that will play crucial part in clearing the technical round.
Tips: Be positive and confident. If you know the answer or you can try then only answer otherwise just say sorry.

Round: HR Interview
Experience: HR round was more like a formality. The HR was asking same set of questions from everyone and all four who got into HR round got selected.
Tips: No tips required for this round :P

General Tips: Try to complete the first round in time, Once you clear the written test be confident and positive in next rounds and you will certainly go through it.
Skills: OOPS, C, Unix, DBMS
College Name: NIT JAIPUR

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Off-campus interviews in Bangalore

Interview Preparation Tips

Round: Test
Experience: Only a few students will get shortlisted who do all the questions correctly.

Round: Other Interview
Experience: First 4 rounds on day 1 and this are just to shortlist for more rounds on some other day.
Tips: They will focus on almost all the concepts of computer science.You need to practice a lot and start it right now. Should be easy if you have prepared well enough. Use your holidays to start preparing for placements.

General Tips: Sooner you start, better your placement will be as lack of practice & last day study works only for exams but never for interviews. You'll get enough time to prepare for interviews once you get shortlisted. Focus on it even if you are placed already.
Skill Tips: They will focus on almost all the concepts of computer science.
Skills: C , Aptitude
College Name: NIT SURATHKAL

I was interviewed in Dec 2016.

Interview Preparation Tips

Round: Technical Interview
Experience: On-site interview (5 hours).

4 back-to-back 45-minute coding interviews, followed by a design interview, with a lunch break with a Googler in the middle.

The first coding interview was a set of (surprisingly) trivial (no algorithms needed) incremental coding questions.

The two next coding interviews were problems straight from the "Cracking the coding interview" book. Even though I divulged that I'd solved pretty much exactly the same problem before, they didn't give me an alternative problem and I quickly coded up a general and optimal solution for the problems. Follow-up in-depth questions were minimal and not hard.

The last coding question was a pure algorithm question related to search trees/tries. No coding required, spent the whole time reasoning about the most effective algorithm. This was a bit of a brain twister.

The design question was related to high-level system design (not OO design) for storage and search in geographic data. Focus was effective search as well as scalability both in traffic and data volumes.

Tips: Read "Cracking the coding interview" or other similar literature. Solve all the problems and you should be good to go. If you solve a bunch of problems at HackerRank (or similar) as well, you'll have the added bonus of training on how to generalize the algorithms.

Interview Questionnaire 

2 Questions

  • Q1. Strengths and weakness
  • Q2. Extra curricular achievements
  • Ans. 

    I have been actively involved in various extra curricular activities such as volunteering, sports, and leadership roles.

    • Volunteered at local animal shelter every weekend

    • Captain of the soccer team in high school

    • Organized charity events for underprivileged children

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The test was conducted by AMCAT and had 120 questions for personality test. Around 40-50 questions from Unix, SQL and other coding languages. Around 20 General aptitude questions and 2 questions of coding that had to solved using any programming language.
Tips: Refer to geeks for geeks for AMCAT.
Total Questions: 200

Round: Technical Interview
Experience: The test was conducted by AMCAT and had 120 questions for personality test. Around 40-50 questions from Unix, SQL and other coding languages. Around 20 General aptitude questions and 2 questions of coding that had to solved using any programming language.
Tips: Refer to geeks for geeks for AMCAT.

Round: Technical Interview
Experience: The technical interview went for almost 50 minutes. For the first 20 mins my resume was discussed, my projects , internships and extra curriculars. For the next 20 mins the interviewer asked me technical questions regarding coding , Unix and SQL. For 10 mins he tested my willingness to join the company and my passion for coding since I belonged to ECE branch.
Tips: Be thorough with your resume.
Be thorough with the questions that appeared in the test.

Skills: Technical Skills, Communication skills
College Name: National Institute of Techno

Crest Venue and Entertainment Software Interview FAQs

How many rounds are there in Crest Venue and Entertainment Software interview?
Crest Venue and Entertainment Software interview process usually has 3 rounds. The most common rounds in the Crest Venue and Entertainment Software interview process are Technical, HR and Resume Shortlist.
How to prepare for Crest Venue and Entertainment Software 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 Crest Venue and Entertainment Software. The most common topics and skills that interviewers at Crest Venue and Entertainment Software expect are MongoDB, Java, Laravel, PHP and Android.
What are the top questions asked in Crest Venue and Entertainment Software interview?

Some of the top questions asked at the Crest Venue and Entertainment Software interview -

  1. 1. Difference between Operation and GCD? 2. How SSL pinning works? 3. Differenc...read more
  2. Basic swift, sqlite database, Concurrency, SOILD principle, App upload proce...read more
  3. Questions related to technology specific. Questions can be based on programming...read more

Tell us how to improve this page.

Crest Venue and Entertainment Software Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 846 Interviews
Google Interview Questions
4.4
 • 821 Interviews
Amdocs Interview Questions
3.7
 • 512 Interviews
PVR Inox Interview Questions
4.0
 • 161 Interviews
Cinépolis Interview Questions
3.9
 • 58 Interviews
Miraj Cinemas Interview Questions
4.2
 • 2 Interviews
View all

Crest Venue and Entertainment Software Reviews and Ratings

based on 10 reviews

3.4/5

Rating in categories

2.6

Skill development

4.0

Work-life balance

3.2

Salary

2.1

Job security

2.8

Company culture

3.1

Promotions

2.4

Work satisfaction

Explore 10 Reviews and Ratings
Senior Software Developer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Testing Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Crest Venue and Entertainment Software with

PVR Inox

4.0
Compare

Cinépolis

3.9
Compare

Bigtree Entertainment

3.8
Compare

Smaaash Entertainment

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview