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

Clear (1)

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 PrepInsta

posted on 17 Dec 2021

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

Round 1 - Aptitude Test 

First of all there is an online aptitude test.
It includes logical reasoning, also Qualitative ability.
includes work done questions, drawing ball questions, velocity speed problems, relation questions.

Round 2 - Technical 

(6 Questions)

There was a meeting scheduled on google meet via superset.
email comes prior to 3 days for the interview.
he asked me several questions here are few of them:

  • Q1. Define memory management in Python
  • Ans. 

    Memory management in Python involves allocation and deallocation of memory for objects.

    • Python uses automatic memory management through garbage collection.

    • Memory is allocated dynamically as objects are created.

    • Unused memory is automatically deallocated through reference counting or garbage collection.

    • Python provides tools like sys.getsizeof() and tracemalloc to manage memory usage.

    • Memory leaks can occur if objects are n

  • Answered by AI
  • Q2. Write a code that returns null
  • Ans. 

    Code snippet to return null

    • In Java: return null;

    • In Python: return None

    • In C#: return null;

    • In JavaScript: return null;

  • Answered by AI
  • Q3. Write a code to connect database in python
  • Ans. 

    Code to connect database in Python

    • Import the required module (e.g. pymysql, sqlite3)

    • Establish a connection to the database using connect() method

    • Create a cursor object using cursor() method

    • Execute SQL queries using execute() method

    • Commit changes using commit() method

    • Close the cursor and connection using close() method

  • Answered by AI
  • Q4. What are the features of oops?
  • Ans. 

    Object-oriented programming features include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: bundling of data and methods that manipulate the data

    • Inheritance: creating new classes from existing ones

    • Polymorphism: ability of objects to take on multiple forms

    • Abstraction: hiding implementation details from users

  • Answered by AI
  • Q5. Difference between array and list.
  • 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.

    • Examples: int[] ar

  • Answered by AI
  • Q6. He also gave some apti questions
Round 3 - HR 

There was a meeting scheduled on google meet via superset.
email comes prior to 2 days for the interview.
The main purpose of this round was document verification.
nothing much.

Interview Preparation Tips

Professional and academic backgroundAt the time of the interview, I had 0 Years (fresher) of experience. My academic qualification is B.E. from Sinhgad Academy of Engineering.Cognizant interview preparation:Resources to prepare for this interview - Most of my seniors recommended me PrepInsta. I followed some of their YouTube videos and found a lot of help there.Tips for other job seekers - I would suggest you to read and watch interview experiences of candidates who have been selected or if you know someone who is placed in a big company, you can also ask about their experience and how they were practicing.Final outcome of the interviewSelected

Skills evaluated in this interview

GenC Interview Questions & Answers

user image PrepInsta

posted on 17 Dec 2021

I applied via Campus Placement and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - Skill Based Assessment 

(1 Question)

In this round there were questions on pseudocodes, mcqs related to OOPS and General Programming concepts, SQL queries

There were 2 easy coding questions based on array and string

There were 2 coding questions based on DSA

There were 2 sql queries

  • Q1. Heap sort
  • Ans. #include // including library files int temp; void heapify(int arr[], int size, int i)//declaring functions { int max = i; int left = 2*i + 1; int right = 2*i + 2; if (left < size && arr[left] >arr[max]) max= left; if (right < size && arr[right] > arr[max]) max= right; if (max!= i) { // performing sorting logic by using temporary variable temp = arr[i]; arr[i]= arr[max]; arr[max] = temp; heapif...
  • Answered by PrepInsta
Round 2 - Technical 

(8 Questions)

In Technical Interview Programming related question was asked on Python, SQL, OOPS, Internships and projects

  • Q1. Introduce yourself
  • Q2. What are the different data types in python?
  • Ans. 

    Python has several built-in data types including numeric, sequence, and mapping types.

    • Numeric types include integers, floats, and complex numbers.

    • Sequence types include lists, tuples, and strings.

    • Mapping types include dictionaries.

    • Boolean type is also available.

    • Type() function can be used to determine the data type of a variable.

  • Answered by AI
  • Q3. What are OOPS concepts?
  • Ans. 

    OOPS concepts are the fundamental principles of Object-Oriented Programming that help in designing and implementing software systems.

    • Encapsulation: Bundling data and methods together in a class.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and behaviors.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstraction: Hiding complex implementati...

  • Answered by AI
  • Q4. Types of inheritance?
  • Ans. 

    Types of inheritance include single, multiple, multilevel, hierarchical, hybrid, and multipath inheritance.

    • Single inheritance: a class inherits from a single base class.

    • Multiple inheritance: a class inherits from multiple base classes.

    • Multilevel inheritance: a class inherits from a derived class, which in turn inherits from another class.

    • Hierarchical inheritance: multiple classes inherit from a single base class.

    • Hybrid...

  • Answered by AI
  • Q5. How to create an empty class?
  • Ans. 

    An empty class can be created by simply declaring a class with no properties or methods.

    • Declare a class with no properties or methods

    • Example: class EmptyClass {}

    • The class can be used as a placeholder for future implementation

  • Answered by AI
  • Q6. Write a code to print first 10 element of Fibonacci series.
  • Ans. 

    Code to print first 10 elements of Fibonacci series.

    • Declare variables for first two numbers of the series

    • Use a loop to generate the next numbers in the series

    • Print the first 10 numbers of the series

  • Answered by AI
  • Q7. Explain your project.
  • Q8. What was your learning experience in your internships?
  • Ans. 

    My internships provided hands-on experience and taught me valuable skills in my field.

    • I learned how to work in a team and communicate effectively

    • I gained practical knowledge in my field and applied it to real-world situations

    • I developed problem-solving skills and learned to think critically

    • I received feedback from experienced professionals and used it to improve my work

    • I learned about the industry and gained insight in

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundAt the time of the interview, I had 0 Years (fresher) of experience. My academic qualification is B.E from shri Ramdeobaba college of Engineering and Management.Cognizant interview preparation:Tips for other job seekers - Prepare questions like OOPS concepts as these are very commonly asked. For students from non IT branches, I would recommend preparing some questions from their core subjects as well.Final outcome of the interviewSelected

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 Anonymous

posted on 17 Nov 2021

I applied via Other and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

9 Questions

  • Q1. Introducte yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications.

    • I have a Bachelor's degree in Computer Science.

    • I am proficient in programming languages such as Java, Python, and JavaScript.

    • I have experience working with frameworks such as Spring, Django, and React.

    • I am a quick learner and enjoy working in a team environment.

    • In my free time, I enjoy reading books on technology and playing video games.

  • Answered by AI
  • Q2. Which programming language do you know?
  • Ans. 

    I know multiple programming languages including Java, Python, and C++.

    • Proficient in Java, Python, and C++

    • Familiar with JavaScript, HTML, and CSS

    • Experience with SQL and NoSQL databases

  • Answered by AI
  • Q3. Write programs to print 1 to 20 prime numbers
  • Ans. 

    Program to print the first 20 prime numbers.

    • Start a loop from 2 to a large number

    • Check if each number is prime by dividing it with numbers from 2 to its square root

    • If a number is prime, add it to a list

    • Stop the loop when the list has 20 prime numbers

    • Print the list of prime numbers

  • Answered by AI
  • Q4. What is dbms and sql
  • Ans. 

    DBMS stands for Database Management System and SQL stands for Structured Query Language.

    • DBMS is a software system that allows users to define, create, maintain and control access to databases.

    • SQL is a programming language used to manage and manipulate data stored in relational databases.

    • DBMS and SQL are often used together to manage and query data in databases.

    • Examples of popular DBMS include Oracle, MySQL, and Microso...

  • Answered by AI
  • Q5. What is AI,ML and cloud computing
  • Ans. 

    AI stands for Artificial Intelligence, ML stands for Machine Learning, and Cloud Computing is the delivery of computing services over the internet.

    • AI refers to the simulation of human intelligence in machines that are programmed to think and learn like humans.

    • ML is a subset of AI that involves training algorithms to make predictions or decisions based on data.

    • Cloud Computing allows users to access computing resources, ...

  • Answered by AI
  • Q6. Difference between c, c++ and java
  • Ans. 

    C is a procedural language, C++ is an object-oriented language, and Java is a class-based object-oriented language.

    • C is a low-level language used for system programming and embedded systems.

    • C++ is an extension of C with added features like classes, inheritance, and polymorphism.

    • Java is platform-independent and has automatic memory management through garbage collection.

    • Java programs run on a virtual machine, while C and...

  • Answered by AI
  • Q7. 4 aptitude questions based on time and speed,work and time, profit and loss, probability
  • Q8. Being a mechanical student how will you adapt yourself in IT field??
  • Q9. Any questions for me??

Interview Preparation Tips

Interview preparation tips for other job seekers - Being a mechanical Engineer I was expecting some questions from my core branch but the interviewer didn't asked any of it.
Be confident and explain the interviewer your points properly!
You don't have to do the proper definitions but you must know the basics of the topics asked to you!
The interviewer was very nice person and the interview took place 45-50 mins.
And yes I qualified the interview!

Skills evaluated in this interview

GenC Interview Questions & Answers

user image PrepInsta

posted on 17 Dec 2021

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

Round 1 - Aptitude Test 

Round duration - 100 minutes
Round difficulty - null
The first round was an Aptitude round. It was conducted on AMCAT. There were 3 sections:- 1.Quantitative Aptitude-25 questions-35 minutes 2.Verbal-20 questions -45 minutes 3. Logical Reasoning-35 questions-45 minutes Most of the questions in AMCAT were from the sample questions of the PrepInsta page. As I had purchased prime, I got access to free and paid material and it was easy to crack this round.

Round 2 - Technical 

(4 Questions)

I got shortlisted in the first round and the next round was the Technical Interview, conducted through superset. The interviewer first asked me to give a brief about myself.
I introduced myself, where I'm from, the skills I'm good at, my strengths and hobbies.

  • Q1. Explain your project.
  • Q2. What Language are you good at?
  • Ans. 

    I am good at Java programming language.

    • Proficient in object-oriented programming concepts

    • Experience in developing web applications using Spring framework

    • Familiarity with Java libraries and tools such as Hibernate and Maven

  • Answered by AI
  • Q3. Have you done any project in C?
  • Ans. I said "NO", and told him that as I'm from an ECE background I have recently learnt C and I'm working on a project
  • Answered by PrepInsta
  • Q4. He shared a question in the chat box from aptitude and asked me to solve it. No time restriction was given. The question was from Percentage.
  • Ans. 

    Solve a percentage question without time restriction.

    • Read the question carefully and identify the given values.

    • Use the formula: (part/whole) x 100 = percentage

    • Solve for the missing value.

    • Check your answer by plugging it back into the formula.

  • Answered by AI
Round 3 - HR 

The results of the technical round arrived after 2 days. I was selected for the next HR round.
It was also conducted in Superset.
But it was only a document verification round.
The interviewer asked me to show my 10th marksheet, Aadhar card and Pan card.
She asked me if I'm available for the internship in 8th semester.
I said yes, and the meeting got over

Interview Preparation Tips

Professional and academic backgroundAt the time of the interview, I had 0 Years (fresher) of experience. My academic qualification is B.E from PSNA college of engineering and technology, Dindigul.COGNIZANT interview preparation:Resources to prepare for this interview - Luckily I gone through Prep Insta page started preparing with their materials,
After watching their Youtube videos I purchased Prime, learnt C and Java.
Also their video helped me to build my resume.
prep Insta Instagram page was also very helpful in knowing the updates.Tips for other job seekers - Have confidence while you speak, and even if you don't know the answers ,be honest and tell them. The way you speak is more important than what you speak.Final outcome of the interviewSelected

Cognizant interview questions for designations

 GenC Elevate

 (18)

 GenC Next

 (12)

 GenC Pro

 (2)

GenC Interview Questions & Answers

user image Anonymous

posted on 28 Sep 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2022. There were 4 interview rounds.

Interview Preparation Tips

Topics to prepare for Cognizant GenC interview:
  • Java
  • C
  • HR
  • Team Management
  • Technical
  • Spoken English

Get interview-ready with Top Cognizant Interview Questions

GenC Interview Questions & Answers

user image Anonymous

posted on 25 Nov 2021

Interview Questionnaire 

6 Questions

  • Q1. Define function?
  • Ans. 

    A function is a block of code that performs a specific task and can be called multiple times throughout a program.

    • Functions can take in parameters and return values

    • Functions can be defined using function declarations or function expressions

    • Functions can be assigned to variables and passed as arguments to other functions

  • Answered by AI
  • Q2. Define array?
  • Ans. 

    An array is a collection of elements of the same data type, stored in contiguous memory locations.

    • Arrays can be of any data type, including integers, floats, and objects.

    • Arrays are accessed using an index, starting from 0.

    • Arrays can be initialized with a fixed size or dynamically resized.

    • Example: string[] names = {"John", "Jane", "Bob"};

    • Example: int[] numbers = new int[5];

    • Example: object[] objects = new object[3] {1, "

  • Answered by AI
  • Q3. Department related question?
  • Q4. Program to print odd prime number?
  • Ans. 

    A program to print odd prime numbers.

    • Start with a loop to iterate through all odd numbers

    • Check if the number is prime using a function

    • If the number is prime, print it

  • Answered by AI
  • Q5. Basic question from SQL?
  • Q6. Why should i hire you why cognizant?

Interview Preparation Tips

Interview preparation tips for other job seekers - This is a technical test. it lasted about 1 hour.The interviewer wanted to test my knowledge and communication skills.i tried to anwer all the question with examples

Skills evaluated in this interview

GenC Interview Questions & Answers

user image PrepInsta

posted on 29 Nov 2021

I applied via Campus Placement

Round 1 - Online Assessment 

(4 Questions)

Rounds were held on the AMCAT platform and we had to install a lockdown browser.

  • Q1. VERBAL ABILITY: There were 20 questions and 20 minutes were given. Every question was mandatory. Only if you answer or skip a question will you be able to see the next question. Revisiting answers for alre...
  • Ans. 

    Verbal ability test with 20 questions in 20 minutes covering change of speech/voice.

    • 20 questions in 20 minutes

    • Change of speech/voice covered

    • No negative marking

    • Revisiting answers not possible

  • Answered by AI
  • Q2. Reading Comprehension- (2 questions were there and in that each question has 4-5 sub-questions)-Comprehensions were lengthy. Synonym-(2)-easy Antonyms-(1-2)-easy Basic Grammar Questions(4-5)-Preposition...
  • Ans. 

    Interviewer asked about reading comprehension, synonyms, antonyms, and basic grammar questions. Overall easy but required speed and care.

    • Interviewer asked 2 lengthy reading comprehension questions with 4-5 sub-questions each

    • 2 synonyms and 1-2 antonyms were asked, which were easy

    • 4-5 basic grammar questions on prepositions and fill in the blank were asked

    • Overall questions were easy but required speed and careful reading

    • E...

  • Answered by AI
  • Q3. Logical reasoning-There were 35 questions and 45 minutes were given. Every question was mandatory Topics Covered: Coding-Decoding(1-2)-easy Blood relation-(1 question was there and has 4-5 sub-questions ...
  • Ans. 

    Interview question on logical reasoning with topics covered and time limit.

    • 35 questions in 45 minutes, all mandatory

    • Topics covered: Coding-Decoding, Blood relation, Number Series, Direction, Odd one out, Syllogism, seating arrangement, Puzzles

    • Difficulty level: easy to moderate to tricky

    • Example: Blood relation had 1 question with 4-5 sub-questions

  • Answered by AI
  • Q4. Aptitude-There were 25 questions and 35 minutes were given. Topics covered: Simple and Compound interest (1-2)-Medium Time, Speed and Distance(2-3)-Medium Direction(1-2)-Easy Logarithms (2-3)-Easy Ra...
  • Ans. 

    Aptitude test with 25 questions and 35 minutes given covering topics like interest, time-speed-distance, direction, logarithms, ratio, averages, profit and loss.

    • 25 questions in 35 minutes

    • Topics covered: Simple and Compound interest, Time, Speed and Distance, Direction, Logarithms, Ratio and Proportion, Averages, Profit and loss

    • Examples: calculating interest, finding distance, direction and speed, solving logarithmic eq

  • Answered by AI
Round 2 - HR 

(8 Questions)

  • Q1. Introduce Yourself
  • Q2. Explain all the projects mention in resume
  • Ans. I explained my project, the software used in that project, real life example related to that project , uses and since the software that I have used was MATLAB and Simulink so he asked to give the name of library browser of MATLAB and Simulink
  • Answered by PrepInsta
  • Q3. Why java is platform independent?
  • Ans. 

    Java is platform independent because it uses the concept of bytecode and virtual machine.

    • Java programs are compiled into bytecode, which is a platform-independent representation of the code.

    • The bytecode is then executed by the Java Virtual Machine (JVM), which is specific to each platform.

    • The JVM interprets the bytecode and translates it into machine code that can be understood by the underlying operating system.

    • This a...

  • Answered by AI
  • Q4. What is the difference between instance and local variable?
  • Ans. 

    Instance variables are declared in a class and can be accessed by any method in the class. Local variables are declared in a method and can only be accessed within that method.

    • Instance variables are declared at the class level, while local variables are declared within a method.

    • Instance variables can be accessed by any method in the class, while local variables can only be accessed within the method they are declared i...

  • Answered by AI
  • Q5. What is constructor overloading?
  • Ans. 

    Constructor overloading is the ability to have multiple constructors with different parameters in a class.

    • Constructor overloading allows creating objects with different initializations.

    • It helps in providing flexibility and convenience to the users of the class.

    • Constructors can be overloaded by changing the number, type, or order of parameters.

    • Example: class Person { Person() {} Person(String name) {} }

  • Answered by AI
  • Q6. You are from Electrical branch, so why join IT?
  • Ans. 

    I joined IT because of my interest in programming and the vast opportunities it offers.

    • I have always been interested in programming and coding

    • I realized that IT offers a wider range of opportunities compared to Electrical

    • I wanted to explore the world of software development and learn new skills

    • I believe that IT is the future and I wanted to be a part of it

  • Answered by AI
  • Q7. What do you know about cognizant?
  • Ans. 

    Cognizant is a multinational technology company that provides digital, technology, consulting, and operations services.

    • Founded in 1994

    • Headquartered in Teaneck, New Jersey

    • Operates in over 40 countries

    • Employs over 300,000 people

    • Offers services in areas such as artificial intelligence, cloud computing, and cybersecurity

  • Answered by AI
  • Q8. Who is the CEO and Founder of Cognizant?
  • Ans. 

    The CEO and Founder of Cognizant is Francisco D'Souza.

    • Francisco D'Souza co-founded Cognizant in 1994.

    • He served as the CEO of Cognizant from 2007 to 2018.

    • Under his leadership, Cognizant became one of the world's leading technology services companies.

    • D'Souza is also a member of the Board of Directors of General Electric and the World Economic Forum.

    • He holds a Bachelor's degree in Business Administration from the Universi...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundAt the time of the interview, I had 0 Years (fresher) of experience. My academic qualification is B.Tech from ITER.COGNIZANT interview preparation:Topics to prepare for the interview - most of the questions are from that course only. For aptitude R.S AGARWAL.Resources to prepare for this interview - PrepInsta prime subscription courses are quite helpful for campus placementTips for other job seekers - Only if you answer or skip a question will you be able to see the next question. Revisiting answers for already submitted questions is not possible. So be careful. Overall exam was moderate, only the logical reasoning was a bit tricky. Try and give real life examples for the projects you have mentioned.

ALL THE BEST.

Skills evaluated in this interview

GenC Interview Questions & Answers

user image Anonymous

posted on 19 Nov 2021

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

Interview Questionnaire 

1 Question

  • Q1. Normal interactive questions: 1. Tell me about yourself 2. Why have you taken IT 3. Why are you applying in Cognizant? 4. What do you know about Cognizant? 5. What difficulties have you faced in life ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Study and prepare well. If you make any mistake in the interview, that's okay! Let them know you're open to learn. Stay confident.

GenC Interview Questions & Answers

user image Anonymous

posted on 15 Oct 2022

I applied via Campus Placement and was interviewed before Oct 2021. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - get grip on the basics of concepts and your resume

GenC Interview Questions & Answers

user image PrepInsta

posted on 17 Dec 2021

I applied via Campus Placement and was interviewed in Sep 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

(1 Question)

Round duration - 100 minutes
Round difficulty - null
Online Test was conducted on AMCAT. There are 3 sections in Quants, Verbal and Logical.

  • Q1. Statements P: Some bags are hot. Q: All hots are cakes. Conclusions I. All cakes are bags. II. Some bags are cakes.
  • Ans. 

    Conclusion II follows from the given statements.

    • Statement P and Q do not provide enough information to conclude that all cakes are bags.

    • However, it can be concluded that some bags are cakes as some bags are hot and all hots are cakes.

    • Therefore, Conclusion II is true while Conclusion I is false.

  • Answered by AI
Round 2 - TR 

(6 Questions)

Round duration - 30 minutes
Round difficulty - null

  • Q1. Tell me about yourself
  • Q2. Write a coding for given year is leap or not
  • Ans. 

    Coding to check if a given year is leap or not

    • A year is a leap year if it is divisible by 4 but not by 100, or if it is divisible by 400

    • Use modulo operator to check if the year is divisible by 4, 100, and 400

    • Return true if the year is divisible by 4 and not by 100, or if it is divisible by 400. Else, return false

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

    DBMS stands for Database Management System. It is a software that manages and organizes data in a structured manner.

    • DBMS is used to create, retrieve, update, and delete data in a database.

    • It provides a way to store and organize large amounts of data efficiently.

    • DBMS ensures data integrity, security, and concurrency control.

    • Examples of popular DBMS include MySQL, Oracle, SQL Server, and PostgreSQL.

  • Answered by AI
  • Q4. What is the difference between a primary key and a foreign key?
  • Ans. 

    Primary key uniquely identifies a record in a table, while foreign key refers to a field in another table.

    • Primary key is used to enforce data integrity and ensure uniqueness of records.

    • Foreign key is used to establish a relationship between two tables.

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

    • Example: CustomerID in Orders table is a foreign key that references the Customer table's primary key.

    • Pri...

  • Answered by AI
  • Q5. Main Differences Between C++ and Java
  • Ans. 

    C++ and Java are both object-oriented programming languages, but differ in syntax, memory management, and platform compatibility.

    • C++ supports multiple inheritance, while Java only supports single inheritance.

    • C++ allows direct memory manipulation, while Java has a garbage collector for automatic memory management.

    • C++ is closer to the hardware and provides more control, while Java is platform-independent and provides por...

  • Answered by AI
  • Q6. What is pointers?
  • Ans. 

    Pointers are variables that store memory addresses. They allow direct manipulation of memory and facilitate efficient memory management.

    • Pointers store memory addresses

    • They allow direct manipulation of memory

    • They facilitate efficient memory management

  • Answered by AI
Round 3 - HR 

(3 Questions)

The round is nothing but Document verification
The hr asked to show my Aadhar card, PAN card,10th marksheet

  • Q1. Do you know any foreign languages?
  • Ans. 

    Yes, I know French and Spanish.

    • I learned French in high school and continued studying it in college.

    • I also studied Spanish in college and spent a semester abroad in Spain.

    • Knowing these languages has been helpful in my travels and in communicating with people from different cultures.

  • Answered by AI
  • Q2. Are you ready to relocate?
  • Q3. Are you ready for an internship in 8th semester.?
  • Ans. 

    Yes, I am ready for an internship in 8th semester.

    • I have completed relevant coursework and gained practical experience through previous internships.

    • I have researched potential internship opportunities and have a clear understanding of what I hope to gain from the experience.

    • I have prepared my resume and cover letter and have begun applying to internships.

    • I am open to learning and willing to take on new challenges durin

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundAt the time of the interview, I had 0 Years (fresher) of experience. My academic qualification is B.E from Sethu Institute of Technology.Cognizant Technology Solutions interview preparation:Tips for other job seekers - Be confident in HR Interviews and stay strong they only saw your confidence level.Final outcome of the interviewSelected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

JOBS

Yoda Technologies

No Jobs

REVIEWS

HGS

No Reviews

JOBS

Muthoot Exim

No Jobs

INTERVIEWS

TCS

No Interviews

SALARIES

Intouch

COMPANY BENEFITS

IntouchCX

No Benefits

COMPANY BENEFITS

IntouchCX

No Benefits

COMPANY BENEFITS

IntouchCX

No Benefits

SALARIES

TekLink International

SALARIES

CSIR URDIP

Tell us how to improve this page.

Cognizant GenC Interview Process

based on 57 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.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all
Cognizant GenC Salary
based on 166 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.1k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

Programmer Analyst
55.5k salaries
unlock blur

₹2.4 L/yr - ₹9.5 L/yr

Senior Associate
48.9k salaries
unlock blur

₹9 L/yr - ₹27.8 L/yr

Senior Processing Executive
28.9k salaries
unlock blur

₹1.8 L/yr - ₹9 L/yr

Technical Lead
17.5k salaries
unlock blur

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