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 GenC Interview Questions, Process, and Tips

Updated 20 Jan 2025

Top Cognizant GenC Interview Questions and Answers

  • Q1. A train travelling at a speed of 75 mph enters a tunnel 31/2 miles long. The train is 1/4 mile long. How long does it take for the train to pass through the tunnel from t ...read more
  • Q2. What are different type of data structures and explain any 2 of them?
  • Q3. What is a function and it's uses?
View all 105 questions

Cognizant GenC Interview Experiences

99 interviews found

GenC Interview Questions & Answers

user image Anonymous

posted on 28 Nov 2021

Interview Questionnaire 

2 Questions

  • Q1. About Python
  • Q2. Libraries in python
  • Ans. 

    Python has a rich set of libraries for various purposes.

    • Python standard library provides modules for file I/O, regular expressions, networking, and more.

    • Third-party libraries like NumPy, Pandas, Matplotlib, and Scikit-learn are widely used for data analysis and machine learning.

    • Python also has libraries for web development, game development, GUI programming, and more.

    • Libraries can be installed using pip, the package ma...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident ask questions in last interviewer get impression

Skills evaluated in this interview

GenC Interview Questions & Answers

user image Anonymous

posted on 10 Jan 2022

Interview Questionnaire 

1 Question

  • Q1. Why you want to switch from core to tech

Interview Preparation Tips

Interview preparation tips for other job seekers - Give some realistic answers

GenC Interview Questions Asked at Other Companies

asked in Cognizant
Q1. A train travelling at a speed of 75 mph enters a tunnel 31/2 mile ... read more
asked in Cognizant
Q2. What are different type of data structures and explain any 2 of t ... read more
asked in Cognizant
Q3. What is a function and it's uses?
asked in Cognizant
Q4. What are different types of algorthim methods in machine learning ... read more
asked in Cognizant
Q5. What is ment by the term void?

GenC Interview Questions & Answers

user image Anonymous

posted on 17 Nov 2021

Interview Questionnaire 

2 Questions

  • Q1. Project role
  • Q2. Berifly explained about over roll

Interview Preparation Tips

Interview preparation tips for other job seekers - Make prepare go perfect reach the goal

GenC Interview Questions & Answers

user image Anonymous

posted on 29 Jul 2023

Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Jul 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 - Aptitude Test 

General aptitude includes logical reasoning, numericals and English

Round 3 - Coding Test 

They start with your brief introduction followed by asking questions related to your resume and they will ask what are coding languages you know.

Cognizant interview questions for designations

 GenC Elevate

 (18)

 GenC Next

 (12)

 GenC Pro

 (2)

GenC Interview Questions & Answers

user image Romy jha

posted on 29 Dec 2020

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

Interview Questionnaire 

16 Questions

  • Q1. In which programming language you are comfortable?
  • Ans. 

    I am comfortable in multiple programming languages including Python, Java, and C++.

    • Python

    • Java

    • C++

  • Answered by AI
  • Q2. Given two aptitude question based on speed and time to solve.
  • Q3. What is recursion?
  • Ans. 

    Recursion is a process in which a function calls itself as a subroutine.

    • Recursion is used to solve problems that can be broken down into smaller, simpler problems.

    • It involves a base case and a recursive case.

    • Examples include factorial, Fibonacci sequence, and binary search.

    • Recursion can be memory-intensive and may cause stack overflow if not implemented properly.

  • Answered by AI
  • Q4. Write any program to show recursion.
  • Ans. 

    Recursion is a process in which a function calls itself as a subroutine.

    • Recursion can be used to solve problems that can be broken down into smaller sub-problems of the same type.

    • It is important to have a base case to prevent infinite recursion.

    • Examples of recursive functions include factorial, Fibonacci sequence, and binary search.

    • Recursion can also be used to traverse data structures such as trees and graphs.

  • Answered by AI
  • Q5. What is infix notation?
  • Ans. 

    Infix notation is a mathematical notation where operators are placed between operands.

    • Infix notation is the most commonly used notation in mathematics.

    • In infix notation, operators are placed between operands.

    • Infix notation is used in programming languages like C, Java, and Python.

    • Examples of infix notation include 2 + 3, 4 * 5, and 6 / 2.

  • Answered by AI
  • Q6. What is prefix notation? Write one example.
  • Ans. 

    Prefix notation is a way of writing mathematical expressions where the operator comes before the operands.

    • Also known as Polish notation

    • Example: + 2 3 is equivalent to 2 + 3

    • Useful in computer science for evaluating expressions

    • Requires less parentheses than infix notation

  • Answered by AI
  • Q7. Given an infix expression and was asked to convert that into prefix notation.
  • Ans. 

    Converting infix expression to prefix notation.

    • Reverse the infix expression

    • Replace '(' with ')' and vice versa

    • Apply postfix to the modified infix expression

    • Reverse the postfix expression to get prefix expression

  • Answered by AI
  • Q8. Difference between array and linkedlist?
  • Ans. 

    Arrays are contiguous blocks of memory while linked lists are nodes linked by pointers.

    • Arrays have fixed size while linked lists can grow dynamically.

    • Insertion and deletion are faster in linked lists than in arrays.

    • Arrays have direct access to elements while linked lists need to traverse from the beginning.

    • Arrays are better for random access while linked lists are better for sequential access.

    • Examples of arrays: int[] ...

  • Answered by AI
  • Q9. How many layers in OSI model, Name them.
  • Ans. 

    The OSI model has 7 layers that define how data is transmitted over a network.

    • The layers are: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has a specific function and communicates with the layers above and below it.

    • For example, the Physical layer deals with the physical transmission of data, while the Application layer deals with user interfaces and applications.

    • The OSI mod...

  • Answered by AI
  • Q10. What is TCP/IP model?
  • Ans. 

    TCP/IP model is a networking protocol that defines how data is transmitted over the internet.

    • TCP/IP model has four layers: application, transport, internet, and network access.

    • Each layer has its own set of protocols and functions.

    • TCP/IP model is used for communication between devices on the internet.

    • Examples of protocols used in TCP/IP model include HTTP, FTP, TCP, and IP.

  • Answered by AI
  • Q11. What is operator overloading?
  • Ans. 

    Operator overloading is the ability to redefine operators for custom classes.

    • Allows operators to be used with custom classes

    • Enables the use of familiar operators with custom classes

    • Can improve code readability and reduce complexity

    • Example: overloading the + operator for a custom Vector class to add two vectors

  • Answered by AI
  • Q12. Why do you want to join this organization?
  • Q13. Tell me something that you know about the organisation.
  • Q14. Are you comfortable in relocation?
  • Q15. Can you work in shifts?
  • Q16. Any questions for me?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and answer patiently. Make sure to give to the point answer. If you are not clear about the question, ask them to repeat it for you. Be honest and give your best.

Skills evaluated in this interview

Get interview-ready with Top Cognizant Interview Questions

GenC Interview Questions & Answers

user image Anonymous

posted on 24 Aug 2021

I applied via Company Website and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Basics of Data Structure. Types of Data Structure?
  • Q2. Write a program to get the maximum value from an array.
  • Ans. 

    Program to find the maximum value from an array of strings.

    • Convert the array elements to integers using parseInt()

    • Use Math.max() to find the maximum value

    • Handle empty arrays

  • Answered by AI
  • Q3. Basics of C and Java.
  • Q4. Final year project. What difficulties i faced in the project?

Interview Preparation Tips

Interview preparation tips for other job seekers - They just ask questions from your resume and your skills.

Skills evaluated in this interview

GenC Interview Questions & Answers

user image Sai Vamsi

posted on 14 Sep 2021

Interview Questionnaire 

1 Question

  • Q1. Difference between lists and array
  • Ans. 

    Arrays are fixed in size and hold elements of the same data type, while lists are dynamic and can hold elements of different data types.

    • Arrays are declared with a fixed size, while lists can grow or shrink dynamically.

    • Arrays can only hold elements of the same data type, while lists can hold elements of different data types.

    • Arrays are accessed using an index, while lists are accessed using an iterator.

    • Example: int[] arr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare c and python for better answering the questions and basic knowledge on SQL is enough

Skills evaluated in this interview

GenC Interview Questions & Answers

user image Anonymous

posted on 26 Aug 2021

I applied via Other and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic programming questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepare and go all basic programs and technical questions you should learn and go

GenC Interview Questions & Answers

user image Anonymous

posted on 30 Nov 2020

I applied via campus placement at STES Smt Kashibai Navale College of Engineering, Pune and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1.Tell me about yourself, what is your favorite subject in engineer, questions on oop like what is data hiding, Encapsulation,what is array, what is pointer, what is actual use of pointer, they given one c...

Interview Preparation Tips

Interview preparation tips for other job seekers - Your communication skill is important as well as your confidence must be high.

Cognizant Interview FAQs

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

Some of the top questions asked at the Cognizant GenC interview -

  1. What are different type of data structures and explain any 2 of the...read more
  2. What is a function and it's use...read more
  3. What are different types of algorthim methods in machine learning...read more
How long is the Cognizant GenC interview process?

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

Tell us how to improve this page.

Cognizant GenC Interview Process

based on 55 interviews

4 Interview rounds

  • Resume Shortlist Round
  • Aptitude Test Round
  • Technical Round - 1
  • Technical Round - 2
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Cognizant GenC Salary
based on 159 salaries
₹4 L/yr - ₹4.5 L/yr
At par with the average GenC Salary in India
View more details

Cognizant GenC Reviews and Ratings

based on 11 reviews

4.4/5

Rating in categories

4.3

Skill development

4.4

Work-life balance

3.8

Salary

3.9

Job security

4.2

Company culture

3.7

Promotions

4.0

Work satisfaction

Explore 11 Reviews and Ratings
Associate
72.3k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

Programmer Analyst
55.6k salaries
unlock blur

₹2.4 L/yr - ₹9.6 L/yr

Senior Associate
48.6k salaries
unlock blur

₹9 L/yr - ₹27.4 L/yr

Senior Processing Executive
28.9k salaries
unlock blur

₹1.8 L/yr - ₹9 L/yr

Technical Lead
17.6k salaries
unlock blur

₹5.9 L/yr - ₹24.9 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