i
Navigators
Software
Filter interviews by
Encapsulation is the concept of bundling data and methods that operate on the data, while data abstraction is the concept of hiding the implementation details and showing only the necessary details to the user.
Encapsulation involves bundling data and methods together in a class, providing access control to protect data from outside interference.
Data abstraction involves hiding the implementation details and showin...
Shallow copy creates a new object but does not duplicate nested objects, while deep copy creates a new object with all nested objects duplicated.
Shallow copy only copies the references of nested objects, not the objects themselves.
Deep copy creates new instances of all nested objects.
Shallow copy is faster and more memory efficient, but changes to nested objects in the original object will reflect in the copied ob...
List is mutable, tuple is immutable in Python.
List can be modified after creation, tuple cannot be modified
List is defined using square brackets [], tuple using parentheses ()
List is used for collections of items that may change, tuple for fixed collections
Left join includes all records from the left table and matching records from the right table, while right join includes all records from the right table and matching records from the left table.
Left join keeps all records from the left table, even if there are no matches in the right table.
Right join keeps all records from the right table, even if there are no matches in the left table.
Example: Left join - SELECT ...
Put method is used to create or replace a resource, while patch method is used to update a resource partially.
Put method is idempotent, meaning multiple identical requests will have the same effect as a single request.
Patch method is not idempotent, as multiple identical requests may have different effects.
Put method requires the client to send the entire updated resource, while patch method only requires the spec...
A decorator is a design pattern in object-oriented programming that allows behavior to be added to individual objects, either statically or dynamically, without affecting the behavior of other objects.
Decorators are used to modify the behavior of functions or classes without changing their source code.
They are often used for adding functionalities like logging, caching, or authentication to existing code.
In Python...
List is mutable and can be changed, while tuple is immutable and cannot be changed.
List can be modified using methods like append, remove, and pop.
Tuple elements cannot be changed once assigned.
Lists are denoted by square brackets [], while tuples are denoted by parentheses ().
PHP OOP (Object-Oriented Programming) enhances code reusability and organization through classes and objects.
Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: class User { private $name; }
Inheritance: Mechanism to create a new class using properties and methods of an existing class. Example: class Admin extends User {}
Polymorphism: Ability to redefine methods in de...
ACID properties are a set of properties that guarantee database transactions are processed reliably.
ACID stands for Atomicity, Consistency, Isolation, Durability
Atomicity ensures that all operations in a transaction are completed successfully or none at all
Consistency ensures that the database remains in a consistent state before and after the transaction
Isolation ensures that transactions are independent of each ...
List is mutable and can be changed, while tuple is immutable and cannot be changed.
List can be modified using methods like append, remove, and pop.
Tuple elements cannot be changed once assigned.
Lists are denoted by square brackets [], while tuples are denoted by parentheses ().
A decorator is a design pattern in object-oriented programming that allows behavior to be added to individual objects, either statically or dynamically, without affecting the behavior of other objects.
Decorators are used to modify the behavior of functions or classes without changing their source code.
They are often used for adding functionalities like logging, caching, or authentication to existing code.
In Python, dec...
I applied via Naukri.com and was interviewed in Nov 2023. There was 1 interview round.
PHP OOP (Object-Oriented Programming) enhances code reusability and organization through classes and objects.
Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: class User { private $name; }
Inheritance: Mechanism to create a new class using properties and methods of an existing class. Example: class Admin extends User {}
Polymorphism: Ability to redefine methods in derived...
I applied via Approached by Company and was interviewed before Sep 2023. There were 3 interview rounds.
List is mutable, tuple is immutable in Python.
List can be modified after creation, tuple cannot be modified
List is defined using square brackets [], tuple using parentheses ()
List is used for collections of items that may change, tuple for fixed collections
Shallow copy creates a new object but does not duplicate nested objects, while deep copy creates a new object with all nested objects duplicated.
Shallow copy only copies the references of nested objects, not the objects themselves.
Deep copy creates new instances of all nested objects.
Shallow copy is faster and more memory efficient, but changes to nested objects in the original object will reflect in the copied object.
...
Parameters are variables in a function definition, while arguments are the actual values passed to the function.
Parameters are defined in the function signature, arguments are passed when calling the function.
Parameters are placeholders for data, arguments are the actual data passed to the function.
Parameters are used to initialize variables within a function, arguments are the values assigned to those variables.
Exampl...
Parsing a csv file without pandas
Open the csv file using the built-in open() function
Read the file line by line using a for loop
Split each line by the comma delimiter to get individual values
Left join includes all records from the left table and matching records from the right table, while right join includes all records from the right table and matching records from the left table.
Left join keeps all records from the left table, even if there are no matches in the right table.
Right join keeps all records from the right table, even if there are no matches in the left table.
Example: Left join - SELECT * FRO...
ACID properties are a set of properties that guarantee database transactions are processed reliably.
ACID stands for Atomicity, Consistency, Isolation, Durability
Atomicity ensures that all operations in a transaction are completed successfully or none at all
Consistency ensures that the database remains in a consistent state before and after the transaction
Isolation ensures that transactions are independent of each other
...
Encapsulation is the concept of bundling data and methods that operate on the data, while data abstraction is the concept of hiding the implementation details and showing only the necessary details to the user.
Encapsulation involves bundling data and methods together in a class, providing access control to protect data from outside interference.
Data abstraction involves hiding the implementation details and showing onl...
Stateless server does not store any client session information, while stateful server stores client session information.
Stateless server treats each request as an independent transaction.
Stateful server maintains client session information between requests.
Stateless servers are easier to scale horizontally.
Stateful servers are more complex to scale due to session data.
Examples: Stateless - RESTful APIs, Stateful - TCP ...
Put method is used to create or replace a resource, while patch method is used to update a resource partially.
Put method is idempotent, meaning multiple identical requests will have the same effect as a single request.
Patch method is not idempotent, as multiple identical requests may have different effects.
Put method requires the client to send the entire updated resource, while patch method only requires the specific ...
I expect a competitive salary based on my skills, experience, and industry standards for a System Engineer role.
Research industry standards: For example, Glassdoor or Payscale can provide insights into average salaries for System Engineers in my area.
Consider my experience: With 5 years in the field, I would expect a salary in the range of $80,000 to $100,000.
Factor in company size: Larger companies may offer higher sa...
Top trending discussions
I applied via Naukri.com
This is the round in which basic quant questions were asked
In this round basic 2 java questions were asked
In this round one topic was given and we need to discuss about that topic
Java is a high-level, object-oriented programming language used to develop applications for various platforms.
Java is platform-independent, meaning it can run on any platform with a Java Virtual Machine (JVM)
It is known for its security features, such as the ability to run code in a sandbox environment
Java is used for developing a wide range of applications, from web applications to mobile apps and games
It is also used...
Searching is finding a specific item in a collection of items. Sorting is arranging items in a specific order.
Searching involves looking for a specific item in a collection of items.
Sorting involves arranging items in a specific order, such as alphabetical or numerical.
Searching and sorting are commonly used in computer science and data analysis.
Examples of searching algorithms include linear search and binary search.
E...
A binary tree is a data structure consisting of nodes, where each node has at most two children.
Nodes in a binary tree have a left and/or right child node.
The topmost node is called the root node.
Binary trees are used in search algorithms and data compression.
Examples of binary trees include binary search trees and heap trees.
posted on 13 Jan 2021
I applied via Referral and was interviewed before Jan 2020. There was 1 interview round.
We are using a variety of technologies, including some of the latest ones.
We are using React for our front-end development.
We are also using Node.js for our back-end development.
We are using Docker for containerization.
We are using Kubernetes for orchestration.
We are using AWS for cloud hosting.
We are constantly evaluating new technologies to see if they can improve our development process.
It depends on the specific requirements and constraints of the project.
Consider the project's goals and objectives
Evaluate the available technologies and their capabilities
Assess the project's budget and timeline
Consult with stakeholders and experts in the field
Examples: React vs Angular, MySQL vs MongoDB, Java vs Python
I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.
I appeared for an interview before Feb 2024.
Concentrate on identifying patterns and understanding time complexity.
Concentrate on identifying patterns and understanding time complexity.
Concentrate on addressing problems through various approaches and consider their time complexity.
I appeared for an interview in Mar 2025, where I was asked the following questions.
posted on 17 Oct 2023
I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.
Aptitude test reasoning test 30 questions and technical part 30 questions
Method overloading and overriding are used in object-oriented programming to create multiple methods with the same name but different parameters or implementations. For and while loops are used for iteration in programming.
Method overloading involves creating multiple methods in the same class with the same name but different parameters. Example: void print(int num) and void print(String str)
Method overriding involves ...
based on 3 interview experiences
Difficulty level
Duration
based on 5 reviews
Rating in categories
Software Developer
110
salaries
| ₹4 L/yr - ₹9 L/yr |
Angular Developer
37
salaries
| ₹3.7 L/yr - ₹8.4 L/yr |
Python Developer
20
salaries
| ₹2.8 L/yr - ₹6.7 L/yr |
System Engineer
19
salaries
| ₹5.6 L/yr - ₹13.6 L/yr |
Android Developer
18
salaries
| ₹2.5 L/yr - ₹8.5 L/yr |
Northcorp Software
Zidio Development
Accel Frontline
Elentec Power India (EPI) Pvt. Ltd.