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

Updated 4 Dec 2024

Top Cognizant GenC Next Interview Questions and Answers

  • Q1. Pair Sum Problem Statement You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where eac ...read more
  • Q2. Minimum Steps for a Knight to Reach Target Given a square chessboard of size 'N x N', determine the minimum number of moves a Knight requires to reach a specified target ...read more
  • Q3. Ways To Make Coin Change Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these ...read more
View all 22 questions

Cognizant GenC Next Interview Experiences

12 interviews found

GenC Next Interview Questions & Answers

user image Anonymous

posted on 4 Dec 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Campus Placement and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Basic questions related to python, data types, and other basic definitions.
  • Q2. Mini coding round including reverse string, max element in list, (Some people were asked to code sorting algos too according to my knowledge).
  • Q3. SQL basics, normalisation and coding related to joins, group by
  • Q4. Resume Projects explanation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with the basics and your projects, don't really need to deep dive into any particular domain and keep your DSA concepts clear.

GenC Next Interview Questions & Answers

user image Anonymous

posted on 24 May 2022

I was interviewed in Nov 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

2 Coding questions

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    This problem can be solved efficiently by using the technique of hashing. Use a hash_map to check for the current array value x(let), if there exists a value target_sum-x which on adding to the former gives target_sum.

  • Answered Anonymously
  • Q2. 

    Maximum Product Subarray Problem Statement

    Given an array arr of integers, your task is to identify the contiguous subarray within the array which has the highest product of its elements. Return this maxi...

  • Ans. 

    1. If there are even number of negative numbers and no zeros, result is simply product of all

    2. If there are odd number of negative numbers and no zeros, result is product of all except the negative integer with 
    the least absolute value.

    3. If there are zeros, result is product of all except these zeros with one exceptional case. The exceptional case is when 
    there is one negative number and all other elements

  • Answered Anonymously
Round 2 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

Few Aptitude questions were asked and few questions on Project were also asked

  • Q1. When two dice are thrown together, what is the probability that the sum of the numbers appearing on them is a prime number?
  • Ans. 

    When two dice are thrown, the total number of sample spaces is 36.

    Favourable outcomes = {(1,1),(1,2),(1,4),(1,6),(2,3),(2,3),(2,5),(3,2),(3,4),(4,1),(4,3),(5,2),(5,6),(6,1),(6,5)}

    Total number of favourable outcomes = 15

    Hence, the probability of getting a sum of prime numbers = 15/36 = 5/12.

  • Answered Anonymously
  • Q2. Can you explain your project and the problems you faced while working on it?
  • Ans. 

    Tip 1 : Prepare a brief Summary of your Project
    Tip 2 : Don't Copy paste code in your Project
    Tip 3 : Prepare a Decent Project and not the ones which are readily available on Google

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteria7Cognizant interview preparation:Topics to prepare for the interview - DSA , OOPS , OS, CN, Algorithms, DBMS , Dynamic Programming , GraphsTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Improve Communication Skills
Tip 2 : Do Extra Subjects
Tip 3 : Prepare some Projects

Application resume tips for other job seekers

Tip 1 : Do Mention coding profiles in resume
Tip 2 : Do add summary of Projects

Final outcome of the interviewSelected

Skills evaluated in this interview

GenC Next Interview Questions Asked at Other Companies

asked in Cognizant
Q1. Pair Sum Problem Statement You are given an integer array 'ARR' o ... read more
asked in Cognizant
Q2. Minimum Steps for a Knight to Reach Target Given a square chessbo ... read more
asked in Cognizant
Q3. Ways To Make Coin Change Given an infinite supply of coins of var ... read more
asked in Cognizant
Q4. Maximum Product Subarray Problem Statement Given an array arr of ... read more
asked in Cognizant
Q5. Sort Array Problem Statement Given an array consisting of 'N' pos ... read more

GenC Next Interview Questions & Answers

user image Vempati Jaya shankar

posted on 10 Jan 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2022. There were 5 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 

One one question form all the chapters

Round 3 - Coding Test 

There was a two coding questions

Round 4 - Technical 

(1 Question)

  • Q1. About opps concepts, About basic java to Advanced Java, MySql
Round 5 - HR 

(1 Question)

  • Q1. Tell me about yourself Why should I hire you Where are you from? Tell me about your favourite sport About your family

Interview Preparation Tips

Interview preparation tips for other job seekers - Finally my advice is cover all topics in java, SQL from basic to intermidiate level and focus on communication skills
All the best👍

GenC Next Interview Questions & Answers

user image Anonymous

posted on 24 May 2022

I was interviewed in Nov 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Medium

MCQs- Aptitude + Quantitative 
2 questions came in coding round

  • Q1. 

    Rat In a Maze Problem Statement

    Given a N * N maze with a rat placed at position MAZE[0][0], find and print all possible paths for the rat to reach its destination at MAZE[N-1][N-1]. The rat is allowed to...

  • Ans. 

    This question is solved by backtracking

    Create a solution matrix, initially filled with 0’s.
    Create a recursive function, which takes initial matrix, output matrix and position of rat (i, j).
    if the position is out of the matrix or the position is not valid then return.
    Mark the position output[i][j] as 1 and check if the current position is destination or not. If destination is reached print the output matrix and return.
    R...

  • Answered Anonymously
  • Q2. 

    Remove Duplicates from Sorted Array Problem Statement

    You are given a sorted integer array ARR of size N. Your task is to remove the duplicates in such a way that each element appears only once. The outpu...

  • Ans. 

    Create an auxiliary array temp[] to store unique elements.
    Traverse input array and one by one copy unique elements of arr[] to temp[]. Also keep track of count of unique elements. Let this count be j.
    Copy j elements from temp[] to arr[] and return j

  • Answered Anonymously
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

Basic Hr Questions were asked. I was also asked about some questions from DS algo + from my projects. I was also asked questions from DBMS

  • Q1. 

    Quick Sort Problem Statement

    You are given an array of integers. Your task is to sort this array in ascending order using the Quick Sort algorithm.

    Quick Sort utilizes a divide and conquer approach where...

  • Ans. 

    The key process in quickSort is partition(). Target of partitions is, given an array and an element x of array as pivot, put x at its correct position in sorted array and put all smaller elements (smaller than x) before x, and put all greater elements (greater than x) after x. All this should be done in linear time.

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteria6.5 CGPACognizant interview preparation:Topics to prepare for the interview - Data Structures, DBMS , OOPS, System Design, Algorithms, Dynamic Programming.Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 - Practice At least 250 Questions of DS algo
Tip 2 - Do at least 2 application based projects
Tip 3 - Practice questions with optimized approaches

Application resume tips for other job seekers

Tip 1 : Have some application based projects on resume.
Tip 2 : Do not put false things on resume.
Tip 3 : Project should clear and crisp

Final outcome of the interviewSelected

Skills evaluated in this interview

Cognizant interview questions for designations

 GenC

 (99)

 GenC Elevate

 (18)

 GenC Pro

 (2)

GenC Next Interview Questions & Answers

user image PrepInsta

posted on 17 Dec 2021

I applied via campus placement at Anna University and was interviewed in Sep 2021. There were 3 interview rounds.

Round 1 - Skill Based Assessment 

(1 Question)

Round duration - 180 minutes
This Round consisted of 30 MCQs from various topics like OOPS,JAVA,HTML,CSS,PL/SQL, Operating Systems, DBMS.
After MCQs, there were 4 coding questions and 2 SQL questions.
The difficulty of the first 2 questions was easy and that of 3rd and 4rth was medium.
These questions were from various programming topics such as greedy, dynamic programming, graphs etc.
The entire test duration was 3 hours.

  • Q1. One dynamic Programming question One Greedy algorithm question One based on graphs
  • Ans. 

    Dynamic programming, greedy algorithm, and graph-based questions.

    • Dynamic programming: Optimal substructure and overlapping subproblems.

    • Greedy algorithm: Make locally optimal choices to achieve global optimal solution.

    • Graph-based: BFS, DFS, shortest path, minimum spanning tree, etc.

    • Examples: Knapsack problem, Dijkstra's algorithm, Kruskal's algorithm.

  • Answered by AI
Round 2 - Technical 

(10 Questions)

They asked me coding questions and questions about my project. Since most of my projects were based on Machine Learning, they asked a few ML based question as well.

  • Q1. Write a program to perform Binary search on an array of N numbers.
  • Ans. 

    Program to perform Binary search on an array of N numbers.

    • Sort the array in ascending order

    • Set low and high variables to the first and last index of the array respectively

    • Calculate the mid index as (low+high)/2

    • If the element at mid index is equal to the search element, return mid

    • If the element at mid index is less than the search element, set low to mid+1

    • If the element at mid index is greater than the search element, s...

  • Answered by AI
  • Q2. Write a program to perform Merge sort on an array of N numbers.
  • Ans. 

    Program to perform Merge sort on an array of N numbers.

    • Divide the array into two halves recursively

    • Sort the two halves using merge sort

    • Merge the two sorted halves

    • Repeat until the entire array is sorted

    • Time complexity: O(nlogn)

  • Answered by AI
  • Q3. Explain all the stages of creating a machine learning model on a given dataset
  • Ans. 

    Creating a machine learning model involves data preparation, model selection, training, evaluation, and deployment.

    • Data preparation involves cleaning, transforming, and splitting the data into training and testing sets.

    • Model selection involves choosing the appropriate algorithm and hyperparameters for the problem.

    • Training the model involves feeding the training data to the algorithm and adjusting the parameters to mini...

  • Answered by AI
  • Q4. What are the different regularization techniques?
  • Ans. 

    Regularization techniques are used to prevent overfitting in machine learning models.

    • L1 regularization (Lasso)

    • L2 regularization (Ridge)

    • Elastic Net regularization

    • Dropout regularization

    • Early stopping

    • Data augmentation

    • Batch normalization

  • Answered by AI
  • Q5. What is poison distribution?
  • Ans. 

    Poison distribution refers to the spread of toxic substances through various means.

    • Poison distribution can occur through intentional or accidental means.

    • Examples include the distribution of poison through food or water, or the release of toxic chemicals into the environment.

    • Poison distribution can have serious health consequences and may require immediate medical attention.

    • Prevention measures such as proper storage and...

  • Answered by AI
  • Q6. What is the formula for gradient descent?
  • Ans. 

    Gradient descent is an optimization algorithm used to minimize the cost function of a machine learning model.

    • Start with an initial guess for the model parameters

    • Calculate the gradient of the cost function with respect to each parameter

    • Update the parameters in the opposite direction of the gradient

    • Repeat until convergence or a maximum number of iterations is reached

  • Answered by AI
  • Q7. Explain any clustering algorithm.
  • Ans. 

    Clustering algorithm groups similar data points together based on their characteristics.

    • Clustering is an unsupervised learning technique.

    • It can be used for customer segmentation, image segmentation, etc.

    • K-means, hierarchical clustering, and DBSCAN are popular clustering algorithms.

    • The choice of algorithm depends on the data and the problem at hand.

  • Answered by AI
  • Q8. What is PCA?
  • Ans. 

    PCA stands for Principal Component Analysis. It is a statistical technique used for dimensionality reduction.

    • PCA is used to identify patterns in data and reduce the number of variables in a dataset.

    • It works by transforming the original variables into a new set of variables called principal components.

    • These principal components are ordered by the amount of variance they explain in the data.

    • PCA is commonly used in fields...

  • Answered by AI
  • Q9. What is virtual DOM and why ReactJS uses it?
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM used for efficient updates.

    • Virtual DOM is a concept where a lightweight copy of the actual DOM is created.

    • ReactJS uses it to efficiently update the UI without re-rendering the entire page.

    • Virtual DOM compares the previous and current states and updates only the necessary changes.

    • This results in faster rendering and better performance.

    • Example: When a user types in a se...

  • Answered by AI
  • Q10. What are the bounding methods in React? Difference between Class Component and Functional Component in ReactJS?
  • Ans. 

    Bounding methods in React are used to limit the scope of a component's updates.

    • Bounding methods include shouldComponentUpdate, getSnapshotBeforeUpdate, and componentDidUpdate.

    • shouldComponentUpdate allows a component to decide if it should update based on changes in props or state.

    • getSnapshotBeforeUpdate allows a component to capture information before a change is made to the DOM.

    • componentDidUpdate is called after a com...

  • Answered by AI
Round 3 - HR 

(4 Questions)

This was more of a document verification round.

  • Q1. Tell me about Yourself
  • Q2. What are your hobbies?
  • Ans. 

    I enjoy reading, hiking, and playing board games.

    • Reading: I love getting lost in a good book, especially mysteries and thrillers.

    • Hiking: I enjoy exploring new trails and being out in nature.

    • Board games: I like playing strategy games with friends and family, like Settlers of Catan and Ticket to Ride.

  • Answered by AI
  • Q3. Tell me about your struggles to win your first hackathon (mentioned in my resume)
  • Ans. 

    I struggled to win my first hackathon due to lack of experience and technical skills.

    • I had limited knowledge of coding and programming languages.

    • I struggled to come up with a unique and innovative idea.

    • I had difficulty working in a team and communicating my ideas effectively.

    • I lacked confidence in my abilities and felt intimidated by the competition.

    • However, I learned from my mistakes and used the experience to improve...

  • Answered by AI
  • Q4. What is your favourite technology?
  • Ans. 

    My favorite technology is artificial intelligence.

    • AI has the potential to revolutionize various industries

    • It can automate repetitive tasks and improve efficiency

    • AI can also help in making better decisions by analyzing large amounts of data

    • Examples include chatbots, image recognition, and predictive analytics

  • 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 Anna University.Cognizant interview preparation:Tips for other job seekers - Practise coding continuously for 2 months before the interview to ace any coding round.
Be Well prepared in all the topics mentioned in your resume.Final outcome of the interviewSelected

Skills evaluated in this interview

Get interview-ready with Top Cognizant Interview Questions

GenC Next Interview Questions & Answers

user image Lokesh Singh

posted on 17 Feb 2022

Round 1 - Coding Test 

Coding test includes 4 programming questions(2 easy 2 moderate) and 2 sql questions(1 easy 1 moderate).

Round 2 - Technical 

(2 Questions)

  • Q1. Question on projects and mentioned skills
  • Q2. Question on data structures and algorithms
Round 3 - HR 

(3 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. What is your family background?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your CV honest and try to get good grasp on DSA, you will easily crack it.

GenC Next Interview Questions & Answers

user image Anonymous

posted on 31 Aug 2021

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

Interview Questionnaire 

5 Questions

  • Q1. First of all, Interviewer asked me to introduce myself.
  • Q2. Then he asked me to explain my project after which the following questions were asked :
  • Q3. What all technologies are used in your project and what else have you worked in?
  • Ans. 

    Our project uses technologies such as Python, Django, React, and PostgreSQL. I have also worked with Java and AngularJS.

    • Python is used for backend development

    • Django is used as a web framework

    • React is used for frontend development

    • PostgreSQL is used as the database management system

    • I have worked with Java for Android app development

    • I have worked with AngularJS for frontend development

  • Answered by AI
  • Q4. Since I mentioned java in my resume he asked me a lot of questions about the java concept which include oops, exception handling, final keyword.
  • Q5. About DBMS he asked for joins, triggers, cursors and asked me two queries.

Interview Preparation Tips

Interview preparation tips for other job seekers - Projects play a very important role in this interview and you should know all the details of your project and the technologies used in it including the workflow of your project.

GenC Next Interview Questions & Answers

user image Anonymous

posted on 29 Sep 2021

I applied via campus placement at Shri Vidyanikethan Engineering College, Tirupati and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduce your self? what is python? what are various areas where python use? what are sequence data structures and difference between tuple and list? asked me to run basic operations like stri...

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't laugh at this tip but it always worked out for me.
Don't answer questions in a single line or single word .Try to expand your answer for above 30 seconds try to tell examples and one or two facts extra .I can say eat time so interviewer wont get time to ask too many questions at the same time he will get impressed your explaining skills .
Another technique I use as i mentioned above tell one or two facts introduce a keyword or new hint for him to ask question on that. For example when the interviewer asked me about polymorphism i my self mentioned there are different types then he asked what are that types then in mentioned virtual function in my answer then he asked what is virtual function. They wont come prepared with a list of questions to ask .So it depends a lot how you end the before answer
BEST OF LUCK!!!!!

GenC Next Interview Questions & Answers

user image Anonymous

posted on 24 Mar 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at UEM Kolkata and was interviewed before Mar 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Write a program to reverse your name.
  • Ans. 

    A program to reverse a given name.

    • Create a variable to store the name

    • Loop through the name from the last character to the first

    • Add each character to a new variable

    • Print the reversed name

  • Answered by AI
  • Q2. Oops related questions. Like what is polymorphism,data abstraction etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare topics like OOPS,DBMS, SQL. Basic programming knowledge or problem solving skills. Dsa is not mandatory but basic data structures like stack, queue binary tree graph would be helpful ( totally depends on interviewer). Should have clear knowledge about college project. Don't lie on resume or else you will get wrecked.

GenC Next Interview Questions & Answers

user image Anonymous

posted on 16 Oct 2021

I applied via campus placement at Amrita School of Engineering, Bangalore and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Asked to code 2 programming question in the language of choice and was asked to write sql queries for 4 aggregate functions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with basic dsa
Have good knowledge on sql aggregate functions.

Cognizant Interview FAQs

How many rounds are there in Cognizant GenC Next interview?
Cognizant interview process usually has 2-3 rounds. The most common rounds in the Cognizant interview process are Technical, Coding Test and HR.
What are the top questions asked in Cognizant GenC Next interview?

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

  1. Find if the 5th bit of a number is set or clea...read more
  2. Write a program to reverse your na...read more
  3. Since I mentioned java in my resume he asked me a lot of questions about the ja...read more

Tell us how to improve this page.

Cognizant GenC Next Interview Process

based on 3 interviews

2 Interview rounds

  • Coding Test Round
  • HR Round
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k 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
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Cognizant GenC Next Salary
based on 15 salaries
₹6.1 L/yr - ₹7.8 L/yr
At par with the average GenC Next Salary in India
View more details
Associate
72.2k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

Programmer Analyst
55.5k salaries
unlock blur

₹2.4 L/yr - ₹9.6 L/yr

Senior Associate
48.5k salaries
unlock blur

₹8.9 L/yr - ₹27.3 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.2 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