Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Cognizant Team. If you also belong to the team, you can get access from here

Cognizant Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Cognizant Senior Associate 1 Interview Questions and Answers

Updated 8 Feb 2024

Cognizant Senior Associate 1 Interview Experiences

2 interviews found

Senior Associate 1 Interview Questions & Answers

user image praveen kumar

posted on 8 Feb 2024

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

I applied via Job Portal and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Covered core Java along with java 8 coding and lot of questions in Spring boot & Microservices.
  • Q2. Count the character of string. Using streams
  • Ans. 

    This question asks to count the characters of a string using streams.

    • Use the Java Stream API to convert the string into a stream of characters

    • Use the 'count' method of the Stream class to count the number of characters

    • Return the count as the result

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Discuss about the cctc and ectc.
  • Ans. 

    CCTC and ECTC are acronyms used in the context of salary discussions.

    • CCTC stands for Cost to Company and refers to the total cost incurred by a company for an employee.

    • ECTC stands for Expected Cost to Company and refers to the expected cost a company is willing to incur for a potential employee.

    • CCTC includes the employee's salary, allowances, bonuses, benefits, and any other expenses borne by the company.

    • ECTC is usuall...

  • Answered by AI

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Feb 2022. 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 - Technical 

(2 Questions)

  • Q1. Sitecore’s Basic concepts
  • Q2. Dev related ques. Like how Api is called. Related to authentication and authorization. Oops concepts.
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations.
  • Q2. What was the best thing about previous organization and what made you switch from there.

Interview Preparation Tips

Topics to prepare for Cognizant Senior Associate 1 interview:
  • Sitecore
  • OOPS
  • MVC Architecture
  • sitecore publish
  • Sitecore template
Interview preparation tips for other job seekers - No much advice. Just brush up your oops concepts. .net ques and understand how sitecore workflow works

Senior Associate 1 Interview Questions Asked at Other Companies

asked in PwC
Q1. How do you do audit of assets in case of multi location audit
asked in Apex Group
Q2. What are the position and cash reconciliation and what are the po ... read more
asked in KPMG India
Q3. How to audit cash, prepare reconciliation, A/R, PPE assertions ty ... read more
Q4. What do you know about IFRS 9, deferred tax, accounting entries, ... read more
asked in Wipro
Q5. What do you know about RCM & Denial Management?

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Recruitment Consultant and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic communication skills were tested. Sone techical questn too. Versant test is mandatory

Interview Preparation Tips

Interview preparation tips for other job seekers - Please never go for these third party vendors. They misguide you regarding profile . I went for this third party vendor named savantis solution and it really misguided me

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

I applied via Referral and was interviewed before Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Previous work related queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepares office and sap

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Walk-in and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Where do you want to see yourself after 5 years?
  • Q2. What are your preferences?
  • Q3. If given a chance on what do you want to make changes on the project if you've been assigned to achieve positive results with fewer efforts?
  • Q4. What are your expectations?
  • Q5. How do you want a corporate structure to be?
  • Q6. Why did you leave your last company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions asked to a fresher I would expect those to be a friendly manner and allow him to speak what he can and not just the questions you ask.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

Cognizant Interview FAQs

How many rounds are there in Cognizant Senior Associate 1 interview?
Cognizant interview process usually has 2-3 rounds. The most common rounds in the Cognizant interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in Cognizant Senior Associate 1 interview?

Some of the top questions asked at the Cognizant Senior Associate 1 interview -

  1. Count the character of string. Using stre...read more
  2. Discuss about the cctc and ec...read more
  3. Dev related ques. Like how Api is called. Related to authentication and authori...read more

Tell us how to improve this page.

Cognizant Senior Associate 1 Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Cognizant Senior Associate 1 Salary
based on 261 salaries
₹7 L/yr - ₹27 L/yr
91% more than the average Senior Associate 1 Salary in India
View more details

Cognizant Senior Associate 1 Reviews and Ratings

based on 19 reviews

4.2/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.7

Salary

3.8

Job security

3.9

Company culture

3.4

Promotions

3.8

Work satisfaction

Explore 19 Reviews and Ratings
Associate
72.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Programmer Analyst
55.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
48.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Processing Executive
28.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
17.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cognizant with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Accenture

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