Upload Button Icon Add office photos

CME Group

Compare button icon Compare button icon Compare

Filter interviews by

CME Group Software Engineer Interview Questions and Answers

Updated 10 Aug 2023

CME Group Software Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Jul 2023.

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 - Coding Test 

3 programs to write in arrays linked lists and trees

Round 3 - Technical 

(1 Question)

  • Q1. Was asked questions on core Java, spring framework, apis and micro services
Round 4 - HR 

(2 Questions)

  • Q1. What expertise will you bring to cme group of you join?
  • Q2. Why are you quitting your current company?

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing by providing mock dependencies.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

  • Answered by AI
  • Q2. What is state in react
  • Ans. 

    State in React is a JavaScript object that stores data and determines how a component renders and behaves.

    • State is mutable and can be updated using the setState() method

    • State should be used for data that will change over time and affect the component's rendering

    • State should not be modified directly, use setState() instead

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Have you ever faced OutOfMemoryError? How did you resolve that?
  • Q2. How you will load text data into DB systems?
  • Ans. 

    Text data can be loaded into DB systems using various methods such as SQL INSERT statements, bulk loading, or ETL processes.

    • Use SQL INSERT statements to insert text data into the database one record at a time.

    • For large datasets, consider using bulk loading techniques like BULK INSERT or LOAD DATA INFILE.

    • ETL (Extract, Transform, Load) processes can be used to extract text data from different sources, transform it as per...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What are OOPS concepts
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detail

  • Answered by AI
  • Q2. What are solid Concept
  • Ans. 

    Solid concepts are fundamental principles or ideas that are well-established and widely accepted in a particular field.

    • Solid concepts provide a strong foundation for further learning and development.

    • They are essential for understanding complex topics and solving problems effectively.

    • Examples of solid concepts in software engineering include object-oriented programming, design patterns, and data structures.

  • Answered by AI
  • Q3. Write Code for Palindrome String
  • Ans. 

    Code to check if a string is a palindrome or not.

    • Iterate through the string from both ends and compare characters.

    • Use two pointers, one starting from the beginning and one from the end.

    • If characters at both pointers are equal, move both pointers towards the center.

    • If characters at any point are not equal, return false.

    • If both pointers meet in the middle, return true as the string is a palindrome.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Circle process related questions
  • Q2. Scripting language questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

You will get base code from HR and you will be asked to enhance the code with few additional requirements and this will be reviewed in the next One On One discussion.
As part of One On One discussion, you need to explain your thought process and need to add few more enhancements

Round 3 - One-on-one 

(1 Question)

  • Q1. This round is mainly on checking your understanding on the projects you have worked on and why the project was implemented in a specific way
Round 4 - One-on-one 

(1 Question)

  • Q1. This was a system design round. You will receive an open ended product requirement. You need to ask questions to refine the requirement and provide the solution
Round 5 - One-on-one 

(1 Question)

  • Q1. This was the Bar Raiser round. Questions were mainly on how you will handle a certain situations in the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well. Interview process is not difficult.
Pay attention to questions and ask questions for clarifications
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Oct 2022. There were 7 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

There was a take home coding test - application to allot a parking lot.

Round 3 - Technical 

(1 Question)

  • Q1. Questions around optimisations around parking lot application submitted in round1. Implement more use cases asked on the spot System Design/Scaling related questions
Round 4 - Technical 

(1 Question)

  • Q1. Mine was java, so Java technical questions, Java new features Questions around Design patterns Questions on SOLID principles
Round 5 - Technical 

(1 Question)

  • Q1. Use case was given for wallet(e.g. pay later wallet) and asked to design basic REST APIs. E.g. User have balance in wallet User makes transaction via the wallet User add money in wallet
Round 6 - One-on-one 

(1 Question)

  • Q1. It was 1 hour round. This was round with Engineering Technical Head. The questions were around willingness to work, long term / short term goals, high level behavioural questions, cross questions to evalua...
Round 7 - HR 

(1 Question)

  • Q1. This was HR round, around 20 minutes
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. How to build an caching layer for iOS Apps
  • Ans. 

    Building a caching layer for iOS Apps

    • Identify the data that needs to be cached

    • Choose a caching mechanism (e.g., NSCache, CoreData, SQLite)

    • Implement caching logic in the app's data access layer

    • Define cache eviction policies to manage memory usage

    • Consider using a cache expiration mechanism

    • Handle cache invalidation when data changes

    • Optimize cache performance by using appropriate data structures

  • Answered by AI
  • Q2. How to optimise image rendering for iOS Apps
  • Ans. 

    Optimizing image rendering for iOS Apps involves techniques like image compression, caching, lazy loading, and using the appropriate image formats.

    • Use image compression techniques like JPEG or PNG optimization to reduce file size without compromising quality

    • Implement caching mechanisms to store and retrieve images locally, reducing network requests

    • Utilize lazy loading to load images only when they are needed, improving...

  • Answered by AI
  • Q3. Tell me about framework types in iOS
  • Ans. 

    There are several types of frameworks in iOS, including system frameworks, third-party frameworks, and custom frameworks.

    • System frameworks are provided by Apple and include UIKit, Foundation, and Core Data.

    • Third-party frameworks are developed by external developers and can be integrated into iOS apps, such as Alamofire and Firebase.

    • Custom frameworks are created by developers for specific project needs and can be reused...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Go-Jek Senior Software Engineer interview:
  • Swift
Interview preparation tips for other job seekers - Be on point on basics and callout if you do not know something or are confused at the point.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Any online ideas, ds-algo, medium level

Round 2 - Coding Test 

Swift, security framework, api, memory management

Round 3 - One-on-one 

(1 Question)

  • Q1. Basic ds-algo nd technical question
Round 4 - HR 

(1 Question)

  • Q1. Managerial question
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Machine Coding Round

Round 2 - Coding Test 

Low level design - ATM design

Round 3 - Case Study 

High level design - Uber

Round 4 - One-on-one 

(3 Questions)

  • Q1. Director of engineering round
  • Q2. Motivation to join the company
  • Q3. Previous roles and responsibilities held

CME Group Interview FAQs

How many rounds are there in CME Group Software Engineer interview?
CME Group interview process usually has 4 rounds. The most common rounds in the CME Group interview process are Resume Shortlist, Coding Test and Technical.
How to prepare for CME Group 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 CME Group. The most common topics and skills that interviewers at CME Group expect are Java, Oracle, Python, Agile Development and Azure.

Tell us how to improve this page.

CME Group Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Go-Jek Interview Questions
3.7
 • 31 Interviews
TMF Group Interview Questions
3.8
 • 19 Interviews
NASDAQ Interview Questions
3.6
 • 18 Interviews
Travelex Interview Questions
3.7
 • 18 Interviews
DTCC Interview Questions
4.2
 • 14 Interviews
Preqin Interview Questions
3.5
 • 13 Interviews
View all
CME Group Software Engineer Salary
based on 24 salaries
₹7.7 L/yr - ₹18 L/yr
50% more than the average Software Engineer Salary in India
View more details

CME Group Software Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

2.0

Salary

4.0

Job security

4.0

Company culture

2.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer III
39 salaries
unlock blur

₹16.3 L/yr - ₹31.4 L/yr

Senior Software Engineer
26 salaries
unlock blur

₹18 L/yr - ₹39 L/yr

Software Engineer
24 salaries
unlock blur

₹7.7 L/yr - ₹18 L/yr

Software Engineer2
14 salaries
unlock blur

₹13 L/yr - ₹23 L/yr

Senior QA Analyst
13 salaries
unlock blur

₹9.4 L/yr - ₹30 L/yr

Explore more salaries
Compare CME Group with

Stock Holding Corporation of India

3.6
Compare

TMF Group

3.8
Compare

Manappuram Home Finance

3.9
Compare

Travelex

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