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 24 Aug 2022

I applied via Campus Placement

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 

Aptitude test had 3 sections
1.Quantitative aptitude
2.Verbal
3.Logical Reasoning

Interview Preparation Tips

Interview preparation tips for other job seekers - Be quick as the time provided for each section is very less.

GenC Interview Questions & Answers

user image Anonymous

posted on 9 Nov 2021

Interview Questionnaire 

4 Questions

  • Q1. What are the directories of python
  • Ans. 

    Python has several directories including site-packages, dist-packages, and user site-packages.

    • site-packages directory contains third-party packages installed globally

    • dist-packages directory contains packages installed by the distribution's package manager

    • user site-packages directory contains packages installed by the user

    • sys.path is a list of directories searched for modules

    • PYTHONPATH environment variable can be used t

  • Answered by AI
  • Q2. What is polymorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects to be treated as if they are of different types.

    • It is achieved through method overloading and method overriding.

    • Example: A shape class can have different subclasses like circle, square, etc. and each subclass can have its own implementation of the draw method.

    • Polymorphism makes code more flexible and reusable.

  • Answered by AI
  • Q3. Code for recursion function,what is the samllest product of 10 whole number
  • Ans. 

    Recursion function code and finding smallest product of 10 whole numbers.

    • Recursion function code: function recursion(num) { if(num === 0) { return 1; } else { return num * recursion(num-1); } }

    • To find smallest product of 10 whole numbers, we can multiply the smallest 5 negative numbers with the smallest 5 positive numbers.

    • Example: [-5, -4, -3, -2, -1, 1, 2, 3, 4, 5] => (-5) * (-4) * (-3) * (-2) * (-1) * 1 * 2 * 3 * 4 *

  • Answered by AI
  • Q4. What is product of first 5 prime number
  • Ans. 

    The product of the first 5 prime numbers is 2 x 3 x 5 x 7 x 11 = 2310.

    • The first 5 prime numbers are 2, 3, 5, 7, and 11.

    • To find the product, multiply these numbers together.

    • The product of the first 5 prime numbers is 2 x 3 x 5 x 7 x 11 = 2310.

  • Answered by AI

Skills evaluated in this interview

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 DINESH R

posted on 27 Sep 2022

I applied via LinkedIn and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

PERCENTAGE, RATIO, CALENDAR, SYNONYMS, ARRANGE THE SENTENCE,

Round 2 - Technical 

(2 Questions)

  • Q1. BASIC PROGRAMMING QUESTIONS LIKE 1. ADDING OF TWO NUMBERS WITHOUT A THIRD VARIABLE 2. FIBONACCI SERIES
  • Q2. 3. LEAP YEAR OR NOT

Interview Preparation Tips

Interview preparation tips for other job seekers - BASIC PROGRAMMING QUESTIONS AND APPITUTE QUESTIONS

GenC Interview Questions & Answers

user image Anonymous

posted on 26 Nov 2021

I applied via LinkedIn and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Final year project details
  • Q2. Questions related to yr resume
  • Q3. Checking your confidence and skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and true to interviewer.

Cognizant interview questions for designations

 GenC Elevate

 (18)

 GenC Next

 (12)

 GenC Pro

 (2)

GenC Interview Questions & Answers

user image Deepali Padiyar

posted on 28 Oct 2021

I applied via Company Website and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. They ask me frst introduce ur self along with final yr project
  • Q2. Asked abt rdbms concept
  • Q3. Diff btwn SQL and Oracle and regarding jion operation that's it he didn't asked me java related qtns

Interview Preparation Tips

Interview preparation tips for other job seekers - I advice that pls read basic things about ur branch, introduction and project explanation is Mandatory

Get interview-ready with Top Cognizant Interview Questions

GenC Interview Questions & Answers

user image Anonymous

posted on 3 Aug 2021

I applied via Campus Placement and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. Is python interpreted language?
  • Ans. 

    Yes, Python is an interpreted language.

    • Python code is executed line by line without compilation

    • Python interpreter converts code into bytecode and executes it

    • Python interpreter is available for multiple platforms

    • Python can also be compiled into executable code using tools like PyInstaller

  • Answered by AI
  • Q2. What's the difference between list and tuple?
  • Ans. 

    List is mutable while tuple is immutable.

    • Lists can be modified while tuples cannot

    • Lists use square brackets [] while tuples use parentheses ()

    • Lists are used for collections of data that can be changed while tuples are used for fixed collections of data

    • Lists are slower than tuples

    • Example: list = [1, 2, 3], tuple = (1, 2, 3)

  • Answered by AI
  • Q3. Is python is case sensitive?what are decorators in python?
  • Ans. 

    Yes, Python is case sensitive. Decorators are functions that modify the behavior of other functions.

    • Python is case sensitive, meaning that 'hello' and 'Hello' are two different variables

    • Decorators are functions that take another function as input and extend its functionality

    • They are denoted by the '@' symbol and placed above the function definition

    • Example: @decorator_function def my_function(): # code here

    • Common ...

  • Answered by AI
  • Q4. What is slicing in python?
  • Ans. 

    Slicing is a way to extract a portion of a sequence (string, list, tuple) in Python.

    • Syntax: sequence[start:stop:step]

    • start is the index where the slice starts (inclusive)

    • stop is the index where the slice ends (exclusive)

    • step is the interval between each index in the slice

    • Examples: 'hello'[1:4] returns 'ell', [1,2,3,4,5][::2] returns [1,3,5]

  • Answered by AI
  • Q5. Explain Pass, continue and break ?
  • Ans. 

    Pass, continue and break are control statements used in loops and conditional statements.

    • Pass statement is used to do nothing in a loop or conditional statement.

    • Continue statement is used to skip the current iteration of a loop and move to the next iteration.

    • Break statement is used to exit out of a loop or conditional statement.

  • Answered by AI
  • Q6. Tell more about python
  • Ans. 

    Python is a high-level, interpreted programming language known for its simplicity and ease of use.

    • Python is used for web development, data analysis, artificial intelligence, and more.

    • It has a large standard library and supports multiple programming paradigms.

    • Python code is easy to read and write, making it a popular choice for beginners.

    • Python is dynamically typed, meaning variables can change type during runtime.

    • Popul...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare a language that you have mentioned in your resume ..they asked questions from basic to advance on that....
Prepare questions from your projects

Skills evaluated in this interview

GenC Interview Questions & Answers

user image Anonymous

posted on 13 Sep 2021

I applied via Company Website and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. About project of last year?
  • Q2. Write program on 1 01 101 1010 10101
  • Ans. 

    The program prints a pattern of alternating 1s and 0s in a specific sequence.

    • Use a loop to iterate through the given sequence of numbers

    • Inside the loop, check the length of each number and print the corresponding pattern of 1s and 0s

    • Repeat the pattern until all numbers are processed

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

    Inheritance is the process by which genetic information is passed down from parents to their offspring.

    • Inheritance determines traits such as eye color, hair color, and height.

    • It occurs through the transmission of DNA from parent to child.

    • Inherited traits can be dominant or recessive, and can be influenced by multiple genes.

    • Mutations in genes can also affect inheritance patterns.

    • Inheritance can be studied through pedigr

  • Answered by AI
  • Q4. Access the object

Interview Preparation Tips

Interview preparation tips for other job seekers - When we face the interview that time HR check your confidence, your knowledge your english speaking

Skills evaluated in this interview

GenC Interview Questions & Answers

user image Anonymous

posted on 12 Aug 2022

I applied via Company Website and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Question on distance traveled, boat, find the next number

Round 2 - HR 

(1 Question)

  • Q1. Why cognizant? Situation based questions What's your goal in the company
Round 3 - Coding Test 

Write a program for even and odd number

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Read your final year project

GenC Interview Questions & Answers

user image Anonymous

posted on 7 Dec 2021

Interview Questionnaire 

3 Questions

  • Q1. Some apptitude questions
  • Q2. OOPs in java
  • Ans. 

    OOPs in Java is a programming paradigm that focuses on objects and their interactions.

    • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four pillars of OOPs in Java.

    • Encapsulation is the process of hiding implementation details from the user.

    • Inheritance is the process of inheriting properties and methods from a parent class.

    • Polymorphism is the ability of an object to take on many forms.

    • Abstraction is the...

  • Answered by AI
  • Q3. One programe palindrome

Interview Preparation Tips

Interview preparation tips for other job seekers - You must know OOPs concepts , all basics , some main important Programs and apptitude And good communication

Skills evaluated in this interview

GenC Interview Questions & Answers

user image Anonymous

posted on 28 Dec 2021

I applied via Campus Placement and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Oops in detail
  • Ans. 

    Object-oriented programming paradigm that focuses on data encapsulation, inheritance, and polymorphism.

    • Encapsulation: bundling of data and methods that manipulate the data within a single unit

    • Inheritance: ability of a class to inherit properties and methods from a parent class

    • Polymorphism: ability of objects to take on multiple forms or behaviors depending on the context

    • Examples: Java, C++, Python

  • Answered by AI
  • Q2. String reverse programming
  • Q3. Some aptitude questions
  • Q4. Questions on project

Interview Preparation Tips

Interview preparation tips for other job seekers - Make basics strong , study projects thoroughly

Skills evaluated in this interview

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