Upload Button Icon Add office photos

CMSS

Compare button icon Compare button icon Compare

Filter interviews by

CMSS Interview Questions and Answers

Updated 16 Jan 2025

CMSS Interview Experiences

Popular Designations

7 interviews found

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

I applied via Campus Placement

Round 1 - Aptitude Test 

In first round they give you aptitude test where questions are logical and reasoning based.

Round 2 - Group Discussion 

2nd there company manager arrange a group discussion with the eligible candidate who clear the aptitude where he asked general knowledge questions with some technical and also logical question.
Basically he try to know how logically you answered those questions.

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

General Knowledge question

Round 2 - Coding Test 

Java prime numbers,arrays

Round 3 - HR 

(2 Questions)

  • Q1. Any experience related fields
  • Q2. Salary expectation

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (39)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

5 mcq in 20 min and have to complete it with in a time each question carry 4 marks and there is no negative marking

Round 2 - Coding Test 

Coding round is basically from java python

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (39)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Nov 2023. There were 3 interview rounds.

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

There are two aptitude rounds . if we clear the first round of five questions then there are another 5 questions of aptitude

Round 3 - Technical 

(4 Questions)

  • Q1. Basic Java, sql, questions based on the project
  • Q2. Exception handling
  • Q3. What is finally block
  • Ans. 

    The finally block is used in exception handling to specify a block of code that will always be executed, regardless of whether an exception is thrown or not.

    • The finally block is used in conjunction with the try and catch blocks.

    • It is typically used to release resources or perform cleanup operations.

    • The code inside the finally block will execute even if an exception occurs or if there is a return statement in the try or...

  • Answered by AI
  • Q4. What is primary key & unique key
  • Ans. 

    Primary key is a unique identifier for a record in a database table. Unique key ensures that no duplicate values are allowed in a column.

    • Primary key uniquely identifies a record in a table

    • Primary key cannot have duplicate values

    • Primary key can be composed of one or multiple columns

    • Unique key ensures uniqueness of values in a column

    • Unique key can have null values, but only one

    • A table can have only one primary key, but m

  • Answered by AI

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 (183)

CMSS interview questions for popular designations

 Associate Software Engineer

 (2)

 Software Developer

 (2)

 Associate Software Developer

 (1)

 Junior Software Developer

 (1)

 Software Engineer

 (1)

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

2 rounds basic aptitude

Round 2 - Technical 

(1 Question)

  • Q1. Simple questions on OOPS and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics well OOPS,SQL, and project.

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in May 2023. There were 3 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 - Aptitude Test 

We were asked to join a Zoom meeting and then provided a link to one of the online coding platforms where 6-7 aptitude and reasoning-based questions were asked and you have to reply with one of the options from 4 given options.

Round 3 - One-on-one 

(2 Questions)

  • Q1. It was a technical round which was taken individually and according to the post you will be asked questions.
  • Q2. How memory management in javascript is carried out? What is a destructor why java doesn't use it? Introduce yourself. Questions about personal projects. What data type can we use for saving the image itse...

Interview Preparation Tips

Interview preparation tips for other job seekers - Just learn reasoning daily for 1hr and give the rest of the time to your main language to improve coding concepts and logic. Projects are very helpful.

Junior Software Developer Interview Questions asked at other Companies

Q1. Given n coins for two players playing a game. Each player picks coins from the given n coins in such a way that he can pick 1 to 5 coins in one turn and the game continues for both the players. The player who picks the last coin looses the ... read more
View answer (2)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Apptitude test

Round 2 - Technical 

(1 Question)

  • Q1. SQL Basics and Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on Resume and sql

Associate Software Developer Interview Questions asked at other Companies

Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1. Input: The input consists of a single intege... read more
Add answer

Interview questions from similar companies

I applied via Recruitment Consultant

Interview Questionnaire 

2 Questions

  • Q1. Round 1: Fundamentals questions related to Javascript and React. In React questions were focused on react-hooks. lifecycle components and optimization techniques in react. Basic to intermediate questions r...
  • Q2. Round 2: The interview panel will ask you to code some basic coding problem depending on your relevant experience and if you're not able to solve it they'll directly say they're done with the interview. In...

Interview Preparation Tips

Interview preparation tips for other job seekers - I cleared Round 1 after which there was a delay of more than 2 weeks and got a call for Round 2 without any prior notice. Their L2 level interview is very bad, in my case I ended the interview from my side as it looked very clear that the panel was least interested.

I applied via Campus Placement and was interviewed before Jul 2016. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell about your self
  • Ans. 

    I am a customer-oriented professional with excellent communication skills and a passion for providing exceptional service.

    • Strong interpersonal skills

    • Ability to empathize with customers

    • Effective problem-solving abilities

    • Experience in handling customer complaints and inquiries

    • Proficient in using customer support software

    • Proven track record of meeting customer satisfaction goals

  • Answered by AI
  • Q2. Why you choosing our company
  • Ans. 

    I am choosing your company because of your excellent reputation and commitment to customer satisfaction.

    • Your company has a proven track record of providing exceptional customer care.

    • I have heard positive feedback from friends and colleagues about their experiences with your company.

    • Your company's values align with my own, particularly in regards to prioritizing customer satisfaction.

    • I am impressed by the range of servi...

  • Answered by AI
  • Q3. What will you do if you were given 1 millions in amount in your hand. How will you spend it?
  • Ans. 

    I would invest a portion of the money, donate to charity, and use the rest for personal expenses.

    • Invest a portion of the money to secure future financial stability

    • Donate a portion to charity to help those in need

    • Use the remaining amount for personal expenses such as travel, home improvements, and savings

  • Answered by AI
  • Q4. If you want to be an animal like any animal in the world? Which animal you would like to be?
  • Ans. 

    I would like to be a dolphin because of their intelligence, agility, and ability to swim freely in the ocean.

    • Dolphins are known for their high level of intelligence and problem-solving abilities.

    • They are incredibly agile and can swim at high speeds, performing acrobatic jumps and flips.

    • Being a dolphin would allow me to explore the vastness of the ocean and interact with other marine creatures.

    • Dolphins are highly social...

  • Answered by AI

Interview Preparation Tips

Round: Campus drive -GD,HR,HR Interview
Experience: I reached the office at morning 9. Why because they mentioned the interview time was 9 in the offer letter. I was the only one who went there first I was waiting till 10:30, one by one people who got selected in campus drive came After certain number of people came one HR came and escort all the participants in a place like an auditorium. Then they explain about their company and all the stuffs and it got noon. I went to eat with the people who came for the interview and I met so many peoples they became friends to me. After that I started to have interview in calls. Then waited for the results it became evening But unfortunately I didn't got selected,its because that was my first interview I was really nervous and may be my answers were not that much satisfier. After that I left from there. But now I'm ready to face anything.
Tips: You just have to think like we are taking to a customer,our main aim has to make them feel satisfied. Talk with Courage and confidence.

Skills: Communication
College Name: Dhanalakshmi srinivasan college of arts and science for women

Interview Questionnaire 

2 Questions

  • Q1. 1. About my profile (Reconciliation), Roles and responsibilities, corporate actions and types, bloom burg, TLM work
  • Q2. To be frank, Interviewer know only basics and he/she try to get more information from you about roles and responsibilities and your knowledge on process. Be prepared with whatever you mentioned in resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with whatever you mentioned in resume.

CMSS Interview FAQs

How many rounds are there in CMSS interview?
CMSS interview process usually has 2-3 rounds. The most common rounds in the CMSS interview process are Aptitude Test, Technical and Resume Shortlist.
How to prepare for CMSS 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 CMSS. The most common topics and skills that interviewers at CMSS expect are Java, Javascript, PLSQL, RDBMS and SQL.
What are the top questions asked in CMSS interview?

Some of the top questions asked at the CMSS interview -

  1. what is primary key & unique ...read more
  2. what is finally bl...read more
  3. It was a technical round which was taken individually and according to the post...read more
How long is the CMSS interview process?

The duration of CMSS interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

CMSS Interview Process

based on 8 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 788 Interviews
View all

CMSS Reviews and Ratings

based on 24 reviews

3.9/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.0

Salary

3.9

Job security

3.6

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 24 Reviews and Ratings
Software Engineer
29 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Software Developer
11 salaries
unlock blur

₹3.8 L/yr - ₹6.9 L/yr

Associate Software Engineer
10 salaries
unlock blur

₹1.8 L/yr - ₹7.8 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹5 L/yr - ₹18.3 L/yr

Java Developer
4 salaries
unlock blur

₹1.8 L/yr - ₹6.5 L/yr

Explore more salaries
Compare CMSS with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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