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

Updated 24 Sep 2023

Cognizant Internet Consultant Interview Experiences

1 interview found

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

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 uses like, compitative exam, check our mentality or IQ level etc

Round 3 - One-on-one 

(9 Questions)

  • Q1. Testing knowledge for internet
  • Q2. Effect of internt uses
  • Ans. 

    The internet has revolutionized communication, access to information, and business operations.

    • Increased communication through email, social media, and video conferencing

    • Access to vast amounts of information through search engines and online databases

    • E-commerce has transformed the way businesses operate and reach customers

    • Remote work and online education have become more prevalent

    • Social media has changed how people conn

  • Answered by AI
  • Q3. How to utilize internet in our daily life?
  • Ans. 

    The internet can be utilized in daily life for communication, information access, entertainment, shopping, and productivity.

    • Stay connected with friends and family through social media and messaging apps

    • Access information and news from around the world instantly

    • Stream movies, music, and TV shows for entertainment

    • Shop online for a wide range of products and services

    • Use online tools and apps for work, study, and organizat

  • Answered by AI
  • Q4. What is network?
  • Ans. 

    A network is a collection of computers, servers, mainframes, network devices, and other devices connected to one another to share data and resources.

    • Networks can be wired or wireless.

    • Networks can be local (LAN), wide area (WAN), or global (Internet).

    • Examples of networks include Ethernet, Wi-Fi, and cellular networks.

  • Answered by AI
  • Q5. Types of network
  • Ans. 

    Types of networks include LAN, WAN, MAN, WLAN, PAN, CAN, SAN, and VPN.

    • LAN (Local Area Network) - connects devices in a limited area like a home or office

    • WAN (Wide Area Network) - connects devices over a large geographical area

    • MAN (Metropolitan Area Network) - covers a larger area than LAN but smaller than WAN

    • WLAN (Wireless Local Area Network) - uses wireless technology to connect devices in a limited area

    • PAN (Personal ...

  • Answered by AI
  • Q6. Expand LAN,WAN, MAN
  • Q7. Hardware and software
  • Q8. Example of input device
  • Ans. 

    An input device is any hardware device that sends data to a computer, allowing you to interact with and control the system.

    • Keyboard - allows you to input text and commands

    • Mouse - allows you to point and click on screen

    • Touchscreen - allows you to interact directly with the display

    • Microphone - allows you to input audio data

  • Answered by AI
  • Q9. Example of out put device
  • Ans. 

    An output device is any piece of computer hardware equipment used to communicate the results of data processing carried out by an information processing system (such as a computer) to the outside world.

    • Monitor - displays visual output from the computer

    • Printer - produces hard copies of documents or images

    • Speaker - plays audio output from the computer

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard working is not important how to smart in our work that's important

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via campus placement at Graphic Era University, Dehradun and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 Questions of Medium leetcode difficulty.

Round 2 - Group Discussion 

The topic was given to 8-10 people and starting from a random person the GD starts.

Round 3 - Technical 

(2 Questions)

  • Q1. SQL query to get 3rd largest element.
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to get 3rd largest element.

    • Use ORDER BY clause to sort the elements in descending order.

    • Use LIMIT 2,1 to skip the first two largest elements and get the 3rd largest element.

  • Answered by AI
  • Q2. Programme to swap two objects (deep copy).
  • Ans. 

    Program to swap two objects (deep copy)

    • Create a temporary object to store one of the objects

    • Copy the values of the second object into the first object

    • Copy the values from the temporary object into the second object

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Behavioural questions

Interview Preparation Tips

Topics to prepare for Genpact Intern interview:
  • DBMS
  • SQL
  • Programming
  • OS
Interview preparation tips for other job seekers - Read basics of OS, DBMS (especially SQL) and little bit of Leetcode.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Os, cloud computing, DBMS, networks, ai and ml mcq questions were asked

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Ist I gave a aptitude + Technical questions + 1 coding question
Coding question was based on sorting

Round 2 - Technical 

(5 Questions)

  • Q1. Academic project explanation, java basic questions
  • Q2. What is class, object
  • Ans. 

    Class is a blueprint for creating objects, while object is an instance of a class.

    • A class defines the properties and behaviors of objects.

    • An object is a specific instance of a class.

    • Classes can inherit properties and behaviors from other classes.

    • Objects can interact with each other by calling methods on each other.

    • Example: Class 'Car' may have properties like 'color' and 'model', while an object of class 'Car' could be

  • Answered by AI
  • Q3. Explain OOPS concept
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve problems.

    • It involves concepts like encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation refers to bundling data and methods that operate on the data into a single unit.

    • Inheritance allows a class to inherit...

  • Answered by AI
  • Q4. What is method overloading, method overiding
  • Ans. 

    Method overloading is when multiple methods have the same name but different parameters. Method overriding is when a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Method overloading allows a class to have multiple methods with the same name but different parameters.

    • Method overriding occurs in a subclass when a method has the same name and parameters as a method in it...

  • Answered by AI
  • Q5. What is inheritance, encapsulation, access modifiers
  • Ans. 

    Inheritance, encapsulation, and access modifiers are key concepts in object-oriented programming.

    • Inheritance allows a class to inherit properties and behaviors from another class.

    • Encapsulation is the concept of bundling data and methods that operate on the data within a single unit.

    • Access modifiers control the visibility and accessibility of class members.

    • Examples: public, private, protected

    • Inheritance example: class D...

  • Answered by AI

Skills evaluated in this interview

Intern Interview Questions & Answers

Capgemini user image Rewa Parashar

posted on 30 Oct 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

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 

Easy aptitude test. Simple questions and easy to answer.

Round 3 - Technical 

(2 Questions)

  • Q1. Implementing the logic for 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 by comparing the first two elements of the array and swap them if necessary.

    • Continue comparing adjacent elements and swapping them until the array is sorted.

    • Repeat this process for each element in the array until no more swaps are needed.

  • Answered by AI
  • Q2. Software development lifecycle and its uses
  • Ans. 

    Software development lifecycle is a process used to design, develop, and test software applications.

    • It includes phases like planning, design, development, testing, deployment, and maintenance.

    • Each phase has specific goals and deliverables to ensure the quality and success of the software.

    • Examples of SDLC models include Waterfall, Agile, and DevOps.

    • SDLC helps in managing the project effectively, reducing risks, and deli

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. What is revenue recognition
  • Ans. 

    Revenue recognition is the process of recording revenue in a company's financial statements when it is earned.

    • Revenue recognition is important for accurately reflecting a company's financial performance.

    • It involves determining when revenue is earned and when it can be recognized on the income statement.

    • Revenue is typically recognized when goods are delivered or services are performed, regardless of when payment is rece...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Nov 2023. 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 - HR 

(1 Question)

  • Q1. They ask you about your qualifications and what are your specialization skill later on it forward the resume of yours
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Mainly on english and aptitude

Round 2 - Coding Test 

Java coding questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. One to one discussion
  • Q2. Where do you want to see after 5 years
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Genral knowledge and reasoning

Round 3 - Technical 

(1 Question)

  • Q1. Basic info on IT And coding concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Apply through company portal
Round 1 - One-on-one 

(2 Questions)

  • Q1. Why should we hire you?
  • Q2. What are your future plans?
Round 2 - Technical 

(2 Questions)

  • Q1. Conversion of 2d array to 1d array
  • Ans. 

    Conversion of 2d array to 1d array

    • Iterate through each row of the 2d array and append it to the 1d array

    • Use built-in functions like flatten() in Python or flat() in JavaScript

    • Calculate the index of each element in the 2d array and map it to the corresponding index in the 1d array

  • Answered by AI
  • Q2. Why do you like Java?
  • Ans. 

    I like Java because of its versatility and wide range of applications.

    • Java is platform-independent, making it easy to write code that can run on multiple operating systems.

    • It has a vast library of pre-built classes and functions, making it easy to develop complex applications.

    • Java is used in a variety of industries, from finance to gaming, making it a valuable skill to have.

    • It is also a popular language for developing ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and don't give up. If you don't know the answer then don't give wrong one just simply say that you can't recall.

Skills evaluated in this interview

Cognizant Interview FAQs

How many rounds are there in Cognizant Internet Consultant interview?
Cognizant interview process usually has 3 rounds. The most common rounds in the Cognizant interview process are Resume Shortlist, Aptitude Test and One-on-one Round.
What are the top questions asked in Cognizant Internet Consultant interview?

Some of the top questions asked at the Cognizant Internet Consultant interview -

  1. How to utilize internet in our daily li...read more
  2. What is netwo...read more
  3. Example of out put dev...read more

Tell us how to improve this page.

Cognizant Internet Consultant Interview Process

based on 1 interview

Interview experience

4
  
Good
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
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