i
Cognizant
Filter interviews by
React hooks are functions that let you use state and lifecycle features in functional components.
useState: Allows you to add state to functional components. Example: const [count, setCount] = useState(0);
useEffect: Enables side effects in functional components. Example: useEffect(() => { document.title = `Count: ${count}`; }, [count]);
useContext: Lets you access context values without prop drilling. Example: co...
Closures are functions that capture the lexical scope in which they were defined, allowing access to variables from that scope.
A closure is created when a function is defined inside another function.
Closures can access variables from their parent function even after the parent function has executed.
Example: function outer() { let x = 10; return function inner() { return x; }; } const getX = outer(); getX(); // ret...
final, finally, and finalize are keywords in Java with distinct purposes related to variables, blocks, and garbage collection.
final: Used to declare constants. Example: final int MAX_VALUE = 100;
finally: A block that executes after try-catch, regardless of exceptions. Example: try { ... } catch { ... } finally { cleanup(); }
finalize: A method called by the garbage collector before an object is removed. Example: pr...
Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods.
Lambda expressions allow you to write code in a more concise and readable way.
Functional interfaces are interfaces with a single abstract method, which can be implemented using lambda expressions.
Streams provide a way to work with sequences of elements and perform operations like filter, map, an...
What people are saying about Cognizant
Method hiding occurs when a subclass defines a method with the same name as a static method in its superclass.
Method hiding is specific to static methods in Java.
The static method in the subclass hides the static method in the superclass.
Example: If class A has a static method 'display()' and class B extends A with its own 'display()', B's method hides A's method.
Method hiding is resolved at compile time, not runt...
I have experience working with the Angular framework.
Developed web applications using Angular framework
Implemented features like data binding, routing, and services
Worked with Angular CLI for project setup and management
Joins are used in databases to combine rows from two or more tables based on a related column between them.
Inner Join: Returns rows when there is at least one match in both tables.
Left Join (or Left Outer Join): Returns all rows from the left table and the matched rows from the right table.
Right Join (or Right Outer Join): Returns all rows from the right table and the matched rows from the left table.
Full Join (or...
A sequence is a ordered list of elements or events following a specific pattern or order.
A sequence can be in ascending or descending order.
Examples include Fibonacci sequence, arithmetic progression, and DNA sequence.
Sequences can be finite or infinite.
Views and materialized views are database objects that store queries and results for easy access and improved performance.
Views are virtual tables created by a query, allowing users to access specific data without storing it physically.
Materialized views are physical copies of query results that are stored on disk, improving performance by reducing the need to re-run the query.
Materialized views need to be refresh...
Procedures do not return values while functions return values.
Procedures are a set of instructions that perform a specific task without returning a value.
Functions are a set of instructions that perform a specific task and return a value.
Procedures are called using the CALL statement in SQL.
Functions are called by using their name followed by parentheses containing any arguments.
Azure Data Lake Storage (ADLS) is a scalable data storage service for big data analytics in the cloud.
ADLS is designed for big data analytics, allowing storage of large amounts of unstructured data.
It integrates seamlessly with Azure services like Azure Databricks and Azure HDInsight.
ADLS supports hierarchical namespace, enabling efficient organization of data in directories.
It provides fine-grained access control usin...
An integration pipeline automates the process of integrating code changes into a shared repository, ensuring quality and consistency.
Continuous Integration (CI) is a key component, where developers frequently merge code changes.
Automated tests run on each integration to catch bugs early, e.g., unit tests, integration tests.
Build automation tools like Jenkins or Travis CI are often used to manage the pipeline.
Deployment...
A cluster is a group of interconnected computers that work together to perform tasks as a single system.
Clusters improve performance by distributing workloads across multiple machines.
They provide redundancy; if one node fails, others can take over (e.g., database clusters).
Common types include load-balancing clusters and high-availability clusters.
Examples include Hadoop clusters for big data processing and Kubernetes...
I applied via Company Website and was interviewed in Nov 2024. There were 3 interview rounds.
Standard quantitative questions accompanied by logical reasoning and related topics.
OOP concepts include encapsulation, inheritance, polymorphism, and abstraction.
Encapsulation: Bundling data and methods that operate on the data into a single unit (class).
Inheritance: Allows a class to inherit properties and behavior from another class.
Polymorphism: Objects of different classes can be treated as objects of a common superclass.
Abstraction: Hides complex implementation details and only shows the necessa...
React is a JavaScript library for building user interfaces.
React allows developers to create reusable UI components.
It uses a virtual DOM for efficient rendering.
React uses a declarative approach to define how the UI should look based on the application state.
It supports server-side rendering for improved performance.
React can be used with other libraries like Redux for state management.
I am a software engineer with a passion for coding and problem-solving. I come from a close-knit family with supportive parents and siblings.
Software engineer with coding and problem-solving skills
Close-knit family with supportive parents and siblings
My strengths include problem-solving and teamwork, while my weaknesses are time management and public speaking. I am addressing my weaknesses by taking time management courses and practicing public speaking.
Strengths: problem-solving, teamwork
Weaknesses: time management, public speaking
Addressing weaknesses: taking time management courses, practicing public speaking
I applied via Walk-in and was interviewed in Nov 2024. There were 5 interview rounds.
Aptitude is one of best round, to improve our skills knowledge technology.
GD is one of best round, because I love this round, sharing my knowledge ideas thinking views, to others for company growth organization growth, this round shows how much skills r there in person can be easily identified .
I have recently acquired skills in machine learning and data analysis.
Completed online courses in machine learning algorithms
Practiced data analysis techniques using Python and R
Attended workshops on deep learning models
The duration of working on a single project varies depending on the project complexity and requirements.
The duration of working on a single project can range from a few days to several months or even years.
Factors such as project scope, team size, resources, and deadlines influence the duration of the project.
For example, a small project with a clear scope may take a few days to complete, while a large-scale project ma...
I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.
Simple aptitude questions, multiple-choice questions, database management systems, and data structures.
List is mutable and can be modified, while tuple is immutable and cannot be changed.
Lists are defined using square brackets [], while tuples are defined using parentheses ().
Elements in a list can be changed, added, or removed, while elements in a tuple cannot be modified once it is created.
Lists are typically used for collections of similar items that may need to be modified, while tuples are used for fixed collection...
String is immutable, while StringBuffer is mutable, allowing for dynamic string manipulation without creating new objects.
Strings are immutable: Once created, their values cannot be changed. Example: String str = 'Hello'; str = str + ' World';
StringBuffer is mutable: It allows modification of the string without creating a new object. Example: StringBuffer sb = new StringBuffer('Hello'); sb.append(' World');
Performance:...
Collections in programming are data structures that store groups of related objects, enabling efficient data management and manipulation.
Collections can be categorized into Lists, Sets, and Maps.
Lists (e.g., ArrayList) allow duplicate elements and maintain order.
Sets (e.g., HashSet) do not allow duplicates and are unordered.
Maps (e.g., HashMap) store key-value pairs for efficient data retrieval.
Collections provide meth...
OOP (Object-Oriented Programming) is a programming paradigm based on objects and classes to structure software design.
Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).
Inheritance: Mechanism to create a new class using properties and methods of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).
Polymorphism: Ability to present the same interface for...
Arrays are data structures that store multiple values of the same type in a single variable, allowing efficient data management.
Arrays are indexed collections, meaning each element can be accessed using its index. Example: `String[] fruits = {"Apple", "Banana", "Cherry"};`
They have a fixed size, defined at the time of creation. Example: `int[] numbers = new int[5];` creates an array of 5 integers.
Arrays can hold primit...
A challenging session featuring mathematical questions, puzzles, and a game round.
It is quite easy and manageable to solve.
I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.
General aptitude questions
Basic coding question
I applied via Campus Placement
I appeared for an interview in May 2025, where I was asked the following questions.
Java is a high-level, object-oriented programming language designed for portability and performance across platforms.
Developed by Sun Microsystems in 1995, now owned by Oracle.
Java is platform-independent due to the Java Virtual Machine (JVM).
It follows the principle of 'Write Once, Run Anywhere' (WORA).
Java is widely used for building enterprise applications, mobile apps (Android), and web applications.
Example: A simp...
OOP concepts include encapsulation, inheritance, polymorphism, and abstraction, fundamental for object-oriented programming.
Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).
Inheritance: Mechanism where a new class derives properties and behavior from an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).
Polymorphism: Ability to present the same interf...
Some of the top questions asked at the Cognizant Software Engineer interview -
The duration of Cognizant Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 163 interview experiences
Difficulty level
Duration
based on 1.2k reviews
Rating in categories
Associate
73k
salaries
| ₹5.3 L/yr - ₹12.5 L/yr |
Programmer Analyst
56.2k
salaries
| ₹3.5 L/yr - ₹7.3 L/yr |
Senior Associate
55.1k
salaries
| ₹9.7 L/yr - ₹23.4 L/yr |
Senior Processing Executive
29.8k
salaries
| ₹2.3 L/yr - ₹6.5 L/yr |
Technical Lead
19k
salaries
| ₹6 L/yr - ₹21 L/yr |
TCS
Infosys
Wipro
Accenture