Faster and better experience!
Filter interviews by
I applied via Recruitment Consultant and was interviewed in Jul 2019. There were 3 interview rounds.
Two way binding in Angular allows automatic synchronization of data between the model and the view.
Two way binding is achieved using the ngModel directive.
Changes made in the view are automatically reflected in the model and vice versa.
It simplifies the code and reduces the need for manual event handling.
Example:
Express is a web application framework for Node.js. RESTful API is an architectural style for building web services.
Express is a popular framework for building web applications using Node.js
It provides a set of features for handling HTTP requests and responses
RESTful API is an architectural style for building web services that use HTTP methods to perform CRUD operations
It uses standard HTTP methods like GET, POST, PUT,...
Node is asynchronous, meaning it can handle multiple requests at once without blocking the main thread.
Node uses an event-driven, non-blocking I/O model
Callbacks are used to handle asynchronous operations
Example: Reading a file using fs module
Example: Making an HTTP request using http module
Synchronous data in Node.js can be handled using callbacks or promises.
Use callbacks to handle synchronous data in Node.js
Promises can also be used to handle synchronous data
Avoid using synchronous code in Node.js as it can block the event loop
CRUD stands for Create, Read, Update, and Delete. It refers to the basic operations performed on a database.
Create - inserting new data into the database
Read - retrieving data from the database
Update - modifying existing data in the database
Delete - removing data from the database
CRUD operations are essential for managing data in a database
Examples include adding a new user, updating a product's price, or deleting a cu
MongoDB is better suited for handling unstructured data and offers better scalability and performance compared to MySQL.
MongoDB is a NoSQL database that allows for flexible and dynamic schema design.
MongoDB is better suited for handling large amounts of unstructured data, such as social media posts or sensor data.
MongoDB offers better scalability and performance compared to MySQL, especially for write-heavy application...
Observables are a way to handle asynchronous data streams in Angular.
Observables are similar to Promises but can emit multiple values over time.
They can be created using the RxJS library.
They are often used for handling HTTP requests and real-time data updates.
Operators can be used to transform, filter, and combine observables.
Subscriptions are used to listen to the emitted values and handle errors and completion.
A callback is a function passed as an argument to another function, which is then invoked inside the outer function.
Callbacks are used to execute code asynchronously, such as when an event occurs or when data is retrieved from a server.
They are commonly used in JavaScript for event handling, AJAX requests, and timers.
Callbacks can also be used for error handling, allowing the caller to handle errors that occur inside t...
Top trending discussions
posted on 3 May 2024
I applied via Job Portal and was interviewed in Apr 2024. There were 2 interview rounds.
posted on 23 Feb 2024
I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.
We have attempt all questions in that test.
They will give some questions based on technical side.
I applied via Walk-in and was interviewed in Mar 2023. There were 3 interview rounds.
GK questions (multiple choice questions)
posted on 13 Sep 2022
I applied via Recruitment Consulltant
As most of people getting assessment round when the resume shortlist and the criteria of it is just having above 60% score in your academics and after that you have 3 sections in your assessment quantitative, reasoning and verbal section. Mostly All are based on mcqs types questions
Types of network include LAN, WAN, MAN, WLAN, PAN, SAN, CAN, and VPN.
LAN (Local Area Network) is a network that covers a small area such as a home, office, or building.
WAN (Wide Area Network) is a network that covers a large geographical area such as a city, country, or even the world.
MAN (Metropolitan Area Network) is a network that covers a larger area than a LAN but smaller than a WAN, typically a city or town.
WLAN ...
Topology is the study of geometric properties and spatial relations unaffected by the continuous change of shape or size.
Topology is concerned with the properties of space that are preserved under continuous transformations, such as stretching or bending.
It is used in mathematics, physics, computer science, and engineering.
Types of topology include point-set topology, algebraic topology, and differential topology.
Examp...
Yes
I am able to relocate for the position
I am open to moving to a new location for the job
I am willing to relocate if required
posted on 19 May 2023
I applied via Campus Placement and was interviewed in Nov 2022. There were 4 interview rounds.
There were 3-4 medium-level DSA questions.
Publicis Sapient has job locations in multiple cities across India.
Publicis Sapient has offices in Bangalore, Gurgaon, Mumbai, and Chennai.
They also have a presence in Noida, Hyderabad, and Jaipur.
The company offers remote work options as well.
Job locations may vary depending on the specific role and project.
posted on 22 Jan 2023
Practice coding high level of coding
I applied via Campus Placement and was interviewed in Sep 2022. There were 2 interview rounds.
Around 20 ppl participated out of which 7 were shortlisted from each batch.just be cofident
I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.
5 coding question is there. we have to solve Atleast 3 for interview call.
Finding middle element in linked list using Floyd algorithm.
Floyd algorithm uses two pointers, one slow and one fast, to traverse the linked list.
The slow pointer moves one node at a time while the fast pointer moves two nodes at a time.
When the fast pointer reaches the end of the list, the slow pointer will be at the middle element.
If the list has even number of elements, there will be two middle elements.
In that case...
I applied via Campus Placement and was interviewed in Feb 2022. There were 3 interview rounds.
Round duration - 120 minutes
The Recruitment Process of Mphasis starts with an Online Test having
sections like :
Quants
Logical Reasoning
Verbal Ability
Computer Programming
The interviewee is asked about the difficulty level and number of questions in a test.
The interviewee should mention the specific type of test (quants, logical, verbal) and their difficulty level.
They should also mention the total number of questions in the test.
If applicable, they can provide examples of the types of questions asked.
It is important to answer truthfully and not exaggerate or downplay the difficulty lev
There were 20 coding programming questions.
Were the questions related to a specific programming language?
What was the difficulty level of the questions?
Were there any questions related to data structures or algorithms?
How much time was given to answer the questions?
Were there any coding challenges or just theoretical questions?
Round duration - 20 minutes
The technical interview consisted of technical questions and from the technical subjects that were present on my CV.
A program for multiple inheritances
Create a base class with common attributes and methods
Create derived classes that inherit from the base class
Use multiple inheritance to inherit from multiple base classes
Resolve any naming conflicts using scope resolution operator (::)
Example: class Derived: public Base1, public Base2 {}
Example: class Derived: public Base1, public Base2 { public: void method() { Base1::method(); Base
Structure is a collection of variables of different data types while union is a collection of variables of same data type.
Structure allocates memory for all its variables while union allocates memory for only one variable at a time.
Structure is used when we need to store different types of data while union is used when we need to store only one type of data.
Example of structure: struct student { char name[20]; int age;...
The OSI model is a conceptual model that describes how data is transmitted over a network.
OSI stands for Open Systems Interconnection.
It has 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.
Each layer has a specific function and communicates with the adjacent layers.
Example: When you send an email, the Application layer sends it to the Presentation layer, which formats the data,...
Process management involves planning, organizing, executing, and monitoring processes to achieve organizational goals.
It includes identifying and defining processes
Assigning responsibilities and resources
Establishing timelines and milestones
Monitoring progress and making adjustments as needed
Examples include project management, supply chain management, and quality management
A dangling pointer is a pointer that points to a memory location that has been deallocated or freed.
Dangling pointers can cause crashes or unexpected behavior when accessed.
They can occur when a pointer is not set to NULL after the memory it points to is freed.
Example: int *ptr = malloc(sizeof(int)); free(ptr); printf('%d', *ptr);
In the above example, ptr becomes a dangling pointer after the memory it points to is free
Function overriding vs function overloading
Function overloading is having multiple functions with the same name but different parameters
Function overriding is having a function in a subclass with the same name and parameters as a function in the superclass
Function overloading is resolved at compile-time while function overriding is resolved at runtime
C code for in-order traversal on a binary tree.
Start at the root node.
Traverse the left subtree recursively.
Visit the root node.
Traverse the right subtree recursively.
Repeat until all nodes have been visited.
Example code: void inorderTraversal(Node* root) { if(root != NULL) { inorderTraversal(root->left); printf("%d ", root->data); inorderTraversal(root->right); } }
Round duration - 10 mins
Mphasis is a leading IT solutions provider with a focus on digital transformation.
Mphasis has a strong presence in the banking and financial services industry, providing innovative solutions to clients such as Citibank and Standard Chartered.
The company has a focus on digital transformation and offers services such as cloud computing, data analytics, and artificial intelligence.
Mphasis has won several awards for its wo...
Work-life balance is the ability to prioritize and manage both work and personal life effectively.
It involves setting boundaries and managing time efficiently
It allows for time to pursue personal interests and hobbies
It reduces stress and burnout
Examples include flexible work hours, remote work options, and time off for personal reasons
based on 2 reviews
Rating in categories
Software Engineer
7
salaries
| ₹3 L/yr - ₹6 L/yr |
Associate Software Engineer
7
salaries
| ₹2 L/yr - ₹6.5 L/yr |
Project Assistant
5
salaries
| ₹1.7 L/yr - ₹2.2 L/yr |
GIS Engineer
5
salaries
| ₹2.7 L/yr - ₹3.6 L/yr |
Project Manager
4
salaries
| ₹2 L/yr - ₹11 L/yr |
Infosys
TCS
Wipro
HCLTech