Upload Button Icon Add office photos

CMSS

Compare button icon Compare button icon Compare
3.9

based on 23 Reviews

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 SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)
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 SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (42)
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 SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... 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 (170)

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 SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)
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 NumberNth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula - F(n) = F(n-1) + F(n-2), Where, F(1) = F(2) = 1 Provided N you have to find out the Nth Fibonacci Number. Input Fo... read more
View answer (4)

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - HR 

(4 Questions)

  • Q1. If fresher your introduction they will check your communication and your graduate or not if experienced they will check work responsibilities of your last job and communication but in hightech city sutherl...
  • Q2. Tell me something about yourself
  • Q3. Tell me about your college days
  • Q4. Tell me about ur best friend
Round 2 - Aptitude Test 

Its actually based on your voice actually they are hiring for international voice process so you need to have an idea of how international people speak in their language if you have experience in email writing and able to understand british english then its easy for you to clear

Interview Preparation Tips

Topics to prepare for Sutherland Global Services Customer Service Executive interview:
  • coomunication for confidence
  • prepare about your college days
  • learn about your best friend
Interview preparation tips for other job seekers - please be confident while you go for an interview please don't carry your resumes and documents in hand i have seen people keeping their resumes folded in thier barely without even having a stick file please keep it in file please its your document that present about your self i dont know how many people will see this but your first impression is last impression be confident communicate properly fluently before you go for an interview research about the hiring company and vacancy this is for gentle men when you go for any voice or non voice interviews please wear formal shoes they wont allow they will reject on the spot try to wear lite professional shirt and trouser i have seen in todays sutherland interview all the best
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Realted to o365 theory
  • Q2. Regarding litigation hold and retention policies with mailflow and structure and some scenario based questions
Round 2 - Technical 

(2 Questions)

  • Q1. Regarding technical questions and scenario based
  • Q2. Teams issues and outlook
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Description of working culture and ethics
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(16 Questions)

  • Q1. What are custom hooks in React, and what are their use cases? Additionally, can you provide an example of a custom hook that performs an API call and utilizes the retrieved data?
  • Ans. 

    Custom hooks in React are reusable functions that allow you to extract component logic into separate functions for better code organization and reusability.

    • Custom hooks are created using the 'use' prefix and can be used to share logic between components.

    • Use cases for custom hooks include fetching data from an API, handling form state, managing local storage, and more.

    • Example of a custom hook for API call: const useFetc...

  • Answered by AI
  • Q2. What is the difference between useMemo and useCallback in React?
  • Ans. 

    useMemo is used to memoize a value, while useCallback is used to memoize a function.

    • useMemo is used to memoize a value and recompute it only when its dependencies change.

    • useCallback is used to memoize a callback function and prevent unnecessary re-renders.

    • Example: useMemo can be used to memoize the result of a complex computation, while useCallback can be used to memoize an event handler function.

  • Answered by AI
  • Q3. What is the difference between class-based components and functional components in React?
  • Ans. 

    Class-based components use ES6 classes and have lifecycle methods, while functional components are simpler and use functions.

    • Class-based components use ES6 classes to create components, while functional components are created using functions.

    • Class-based components have lifecycle methods like componentDidMount and componentDidUpdate, while functional components do not.

    • Functional components are simpler and more lightweig...

  • Answered by AI
  • Q4. How can you implement the lifecycle of a React component in a functional component?
  • Ans. 

    Implementing the lifecycle of a React component in a functional component

    • Use the useEffect hook to replicate lifecycle methods like componentDidMount, componentDidUpdate, and componentWillUnmount

    • Pass an empty array as the second argument to useEffect to mimic componentDidMount

    • Pass a variable or state as the second argument to useEffect to mimic componentDidUpdate

    • Return a cleanup function inside useEffect to mimic compo

  • Answered by AI
  • Q5. What are the various state management techniques available in React?
  • Ans. 

    Various state management techniques in React include Context API, Redux, and local state.

    • Context API: React's built-in solution for passing data through the component tree without having to pass props down manually at every level.

    • Redux: A popular state management library for React applications, allowing for a centralized store to manage application state.

    • Local state: Managing state within individual components using us

  • Answered by AI
  • Q6. What is the architecture of Redux, and what purposes do middlewares serve within it?
  • Ans. 

    Redux is a predictable state container for JavaScript apps. Middlewares are functions that intercept actions before they reach the reducer.

    • Redux follows a unidirectional data flow architecture.

    • Middlewares in Redux are functions that can intercept, modify, or dispatch actions.

    • Common use cases for middlewares include logging, asynchronous API calls, and handling side effects.

    • Examples of popular Redux middlewares are Redu...

  • Answered by AI
  • Q7. What is hoisting in JavaScript?
  • Ans. 

    Hoisting in JavaScript is the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their initializations.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q8. What is event bubbling in JavaScript?
  • Ans. 

    Event bubbling is the propagation of events from the target element up through its ancestors in the DOM tree.

    • Events triggered on a child element will 'bubble up' and trigger on parent elements.

    • Event listeners can be attached to parent elements to handle events from multiple child elements.

    • Stopping event propagation can be done using event.stopPropagation() or event.stopImmediatePropagation().

  • Answered by AI
  • Q9. What are block scope and function scope in JavaScript?
  • Ans. 

    Block scope and function scope are two types of scopes in JavaScript that determine the visibility and accessibility of variables.

    • Block scope refers to the visibility of variables within a block of code enclosed by curly braces. Variables declared with 'let' and 'const' have block scope.

    • Function scope refers to the visibility of variables within a function. Variables declared with 'var' have function scope.

    • Variables de...

  • Answered by AI
  • Q10. Have you had experience working with semantic tags in HTML?
  • Ans. 

    Yes, I have experience working with semantic tags in HTML.

    • Used semantic tags like <header>, <nav>, <main>, <section>, <article>, <aside>, <footer> for better structure and SEO.

    • Understand the importance of using semantic tags for accessibility and search engine optimization.

    • Semantic tags help in organizing content and making it more readable for developers and browsers.

  • Answered by AI
  • Q11. What are the various methods for creating an object in JavaScript?
  • Ans. 

    Various methods for creating an object in JavaScript include object literals, constructor functions, ES6 classes, and Object.create() method.

    • Object literals: var obj = { key: value };

    • Constructor functions: function ObjectName() { this.key = value; } var obj = new ObjectName();

    • ES6 classes: class ClassName { constructor() { this.key = value; } } var obj = new ClassName();

    • Object.create() method: var obj = Object.create(pr

  • Answered by AI
  • Q12. What are the differences between shallow copy and deep copy in JavaScript?
  • Ans. 

    Shallow copy only copies the references of nested objects, while deep copy creates new copies of nested objects.

    • Shallow copy creates a new object but does not create copies of nested objects, only copies their references.

    • Deep copy creates a new object and also creates new copies of all nested objects.

    • Shallow copy can be achieved using Object.assign() or spread operator, while deep copy can be achieved using JSON.parse(

  • Answered by AI
  • Q13. What will be the output of the following JavaScript code fragment: `const a; function test() { console.log(a); }; test();`?
  • Ans. 

    The code will throw an error because 'a' is declared but not initialized.

    • The code will result in a ReferenceError because 'a' is declared but not assigned a value.

    • Variables declared with 'const' must be initialized at the time of declaration.

    • Initializing 'a' with a value before calling test() will prevent the error.

  • Answered by AI
  • Q14. How can you use CSS to arrange elements in a row and column layout?
  • Ans. 

    CSS can be used to arrange elements in a row and column layout using flexbox or grid layout properties.

    • Use display: flex; for a row layout and display: flex; flex-direction: column; for a column layout

    • Use justify-content and align-items properties to align items in the main axis and cross axis respectively

    • For grid layout, use display: grid; and grid-template-columns or grid-template-rows to define the layout

  • Answered by AI
  • Q15. Have you utilized CSS preprocessors, and if so, which ones?
  • Ans. 

    Yes, I have utilized CSS preprocessors such as SASS and LESS.

    • I have experience using SASS to streamline my CSS workflow by utilizing variables, mixins, and nesting.

    • I have also worked with LESS to improve code organization and maintainability through features like variables and functions.

  • Answered by AI
  • Q16. If I have assigned different colors to an ID and a class and applied both to the same element, which color will be applied based on CSS specificity precedence?
  • Ans. 

    The color applied will be based on the specificity of the selector, with ID having higher specificity than class.

    • ID has higher specificity than class in CSS

    • Color applied will be based on the selector with higher specificity

    • Example: If ID selector has color red and class selector has color blue, the color applied will be red

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cognizant Senior Software Engineer interview:
  • Javascript
  • React.Js
  • HTML
  • CSS
Interview preparation tips for other job seekers - Possessing a deep understanding of JavaScript and React is essential. Interviewers may engage in mind games with candidates; therefore, we should remain calm and focused solely on the questions. Additionally, we need to be confident in our answers; otherwise, they may respond with doubt, asking, "Is that so?"

Skills evaluated in this interview

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.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
View all

CMSS Reviews and Ratings

based on 23 reviews

3.9/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.0

Salary

3.9

Job security

3.5

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 23 Reviews and Ratings
Software Engineer
32 salaries
unlock blur

₹2.5 L/yr - ₹11.9 L/yr

Software Developer
11 salaries
unlock blur

₹3.8 L/yr - ₹6.9 L/yr

Associate Software Engineer
11 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