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 (2)
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 (43)
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 (43)
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:
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 

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

CMSS interview questions for popular designations

 Software Developer

 (2)

 Associate Software Engineer

 (2)

 Associate Software Developer

 (1)

 Software Engineer

 (1)

 Junior Software Developer

 (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 (2)
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:
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 

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 (3)
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
View answer (1)

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. DBMS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly

Interview Questionnaire 

10 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Recent graduate with a degree in Computer Science

    • Passionate about software development

    • Experience with programming languages like Java and Python

  • Answered by AI
  • Q2. Tell me about your project
  • Ans. 

    Developed a web-based inventory management system for a retail company

    • Used React for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database management

  • Answered by AI
  • Q3. 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 cannot have null values, while unique key can have one null value.

    • A table can have only one primary key, but multiple unique keys.

    • Primary key is automatically indexed, while unique key may or may not be indexed.

    • Example: Primary key - employee ID, Unique key - email address

  • Answered by AI
  • Q4. A basic C program to find the frequency of an alphabet in a string
  • Ans. 

    This program calculates the frequency of a given alphabet in a string using a basic C program.

    • Declare an array of size 26 to store the frequency of each alphabet

    • Iterate through the string character by character

    • For each character, check if it is an alphabet

    • If yes, increment the corresponding frequency count in the array

    • Print the frequency of the desired alphabet

  • Answered by AI
  • Q5. 2 trick questions
  • Q6. How you started your day?
  • Ans. 

    I start my day by waking up early, exercising, having a healthy breakfast, and planning my tasks for the day.

    • Wake up early

    • Exercise

    • Have a healthy breakfast

    • Plan tasks for the day

  • Answered by AI
  • Q7. Tell me about your hobbies
  • Ans. 

    I enjoy hiking, reading, and playing the guitar in my free time.

    • Hiking: I love exploring new trails and being in nature.

    • Reading: I enjoy diving into different genres and expanding my knowledge.

    • Playing the guitar: I find it relaxing and love learning new songs.

  • Answered by AI
  • Q8. Do you have any problem in relocation?
  • Ans. 

    No, I am open to relocation for the right opportunity.

    • I am open to relocating for the right job opportunity

    • I have relocated in the past for career advancement

    • I am flexible and adaptable to new environments

  • Answered by AI
  • Q9. What if you are sent to Coimbatore? How will you manage there?
  • Ans. 

    I am adaptable and resourceful, so I will manage well in Coimbatore.

    • Research about the city's culture, language, and local amenities.

    • Connect with local professionals or expats for guidance and support.

    • Explore transportation options and create a budget for living expenses.

    • Stay open-minded and embrace the new experience with enthusiasm.

  • Answered by AI
  • Q10. Questions on modern day technology

Interview Preparation Tips

Round: Test
Experience: This round is the most common round in a general campus recruitment procedure. I have been practising for this round for quite some time, like for 4-5 months. And finally the day came. It was on 1st of September 2016. So it is still fresh in my mind. The test started at somewhere around 2 p.m (as because the number of computers were less than the number of applicants, so we were divided into batches). I was confident enough with the paper as i practised many of them at the time of preparation. We have been told that the paper will be adaptive type. But those who gave the test denied this fact. There were three rounds, aptitude, followed by verbal and logical reasoning. I was tensed at the time of the test as i was fresher and many had expectations from me. Verbal round was easy ( many questions were common with the previous years questions), logical round was easy too, but the aptitude round was a bit tricky. I did some grave mistakes in the aptitude round. So after the test was completed, i was surely not confident with the aptitude portion,(If you are unable to clear one of them, no matter how well you score in the others, you will be rejected). In the evening the results came and luckily i was selected for the second round i.e the technical round.
Tips: KEEP PRACTISING THE QUESTIONS..!! Solve questions online as the final test will be machine based and not written. try to solve the question quickly. If possible, buy an aptitude book and solve questions from there. In the final test, If you can't solve a question, SIMPLY LEAVE it and go for the next question. NEVER EVER TRY TO SEE WHAT OTHERS ARE DOING. Its a grave mistake and can cost you your career. Do your best. Believe in yourself and let your hard work speak..!!
Good luck.!!
Duration: 55 minutes
Total Questions: 55

Round: Technical Interview
Experience: The technical round started at around 10-11 a.m. The interviewer was young and neutral at expression. It wasn't easy to judge how the interviewer was. He started with the default question which was "TELL ME ABOUT YOURSELF". I practised that question for about 1000 times and as expected i nailed it. Then he went through my resume. I had included C,JAVA and DBMS as my skill sets. So the questions were from that portions only. i some how managed to answer them all. But i answered wrong in many of them. Seeing the body language of the recruiter. i was sure that i failed to impress him and i'll get rejected. But at last he asked 2 trick questions and i answered it LIKE A BOSS.!! That was the turning point of my interview and he was impressed with that. My interview was over there and shortly after, i was told that i was selected for the HR round. I was too excited as i was selected for the HR round.
Tips: PRESENCE OF MIND IS THE KEY..!!! No matter how many wrong answers you give. One impressive right answer can get you your job. Recruiter is no machine or God. He is also a man. Be confident, speak well and to the point. If you don't know the answer, at least try once. Don't be overconfident and over smart. Be yourself. Practise Tell me about yourself thoroughly.

Round: HR Interview
Experience: This round is simple conversation round. The HR will ask you question to see what you are. Your behaviour, your body language, your temper, etc, There is no rocket science to crack this round. If you manage to qualify for this round, Consider 90% job done. Be frank, jolly, answer questions to the point. Try to mix up with him. and always KEEP A SMILE ON YOUR FACE. You will definitely qualify..!!
Tips: BE CONFIDENT & BE YOURSELF..!!

General Tips: Start practising for the aptitude round from 4-5 months before the actual test. Practise from various enlisted websites. It helps a lot..!! Believe me. Strengthen your basic concepts. Give only those subjects in your resume with whom you are confident with. Do add your extra curricular activities. It helps.
Skills: Proficiency In English, Basic Concepts Of Launguages, Basic Coding, Presence Of Mind, Confidence
College Name: st.thomas college of engineering and technology
Motivation: Infosys is a big company with a very good reputation in the market. loads and loads of people are orking in the company which itself says how the company is.
Funny Moments: There were many. I am a bit humorous. So it was easy for me to make the environment light. Though i didn't cracked any joke, but my body language made it so..!!! I was asked that how will i manage with the transport system of the new place where i will go to work. As i am from Kolkata (one of the most busiest public transport system is here), i said that "Sir i have managed with the public transport here in Kolkata, transport in other city is a piece of cake for me..!!", and we both laughed. :-P

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: to.me totally there were three sections.verbal,apti and reasoning.each section carries 15,15 and 10 questions respectively.to me verabal and apti was little bit easy and it consumes more time to solve the apti questions.so i have been solved 8 apti questions and at last 1minute i.just qlicked the answers for remaining questions randomly becasue we didnt have negative mark and finally reasobing was much easier and solved every answers.
Tips: to get selected in the first round you should practice more online tests.then you can easily manage your time.and be cool. so dont worry every thing will become easier and do well.
all the best!!!

Round: HR Interview
Experience: when i faced my HR he asked me to tell three things about me, i.have told generosity,confidence and friendship.and he asked me to elobrate it and i have done well and he goes with the projects that i have done .afterwards he asked about my stream and why it.and i have answered that iam from electrical and electronics background but now a days IT has been entered into every sector and without IT there would be nothing in this world.thats why i choose IT.and asked about my extra curricular activities and iam a sports person too and finally few questions from C and C++.
Tips: Be confident in your speech and try to answer even if not knows the answer well,because they will see how we are trying to answer so dont hesitate to answer.and keep your mind free and every thing will be alright.be cool and all the best

General Tips: start to prpare atleast before one week from the interview.and be cool at any situations and to get speak english fluently practice with your friends and try to converse every thing in english even with customer care, it will be funny to and thats make you to survive your interviews easily...
Skills:
College Name: sri krishna college of engineering and technology
Motivation: in this company there will be friendly environment and there will be less working pressure and have some cultural clubs to have fun with it
Funny Moments: before one week to our placements our friends get started to chat in english and every where we conversed in english it was funny and later we realised how it helped us. so dont bother about others and what they think. just go on with your friends confidently in english...

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

Cognizant Interview Questions
3.7
 • 5.6k Interviews
Nagarro Interview Questions
4.0
 • 762 Interviews
Publicis Sapient Interview Questions
3.5
 • 618 Interviews
GlobalLogic Interview Questions
3.6
 • 592 Interviews
UST Interview Questions
3.8
 • 517 Interviews
CGI Group Interview Questions
4.0
 • 493 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
31 salaries
unlock blur

₹3 L/yr - ₹11.9 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

Virtusa Consulting Services

3.8
Compare

Cognizant

3.7
Compare

Nagarro

4.0
Compare

Photon Interactive

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