Filter interviews by
The Date function in SQL is used to retrieve the current system date.
The Date function returns the current date in the format 'YYYY-MM-DD'.
It does not include the time component.
It is commonly used in SQL queries to filter or group data based on the current date.
Outliers are data points that are significantly different from other data points in a dataset.
Outliers can affect the statistical analysis of a dataset by skewing results.
Outliers can be caused by errors in data collection or measurement.
Outliers can be identified using statistical methods such as the Z-score or IQR.
Outliers may need to be removed or adjusted for in order to accurately analyze the data.
Examples of outl...
Java is a programming language that has different versions released over time.
Java has different versions like Java 8, Java 11, Java 14, etc.
Each version of Java comes with new features, improvements, and bug fixes.
Developers should use the appropriate Java version based on their project requirements.
Prints 'Hello, World!' to the console
Use a programming language of your choice to write a simple program that outputs 'Hello, World!'
For example, in Python: print('Hello, World!')
In Java: System.out.println('Hello, World!')
Top trending discussions
A closure is a function that has access to its own scope, the scope in which it was defined, and the global scope.
A closure is created when a function is defined inside another function.
The inner function has access to the variables and parameters of the outer function, even after the outer function has finished executing.
Closures are useful for creating private variables and functions in JavaScript.
They can also be us...
Encapsulation is the process of hiding internal details and providing a public interface for accessing and manipulating data.
Encapsulation bundles data and methods together into a single unit.
It helps in achieving data abstraction and data hiding.
By encapsulating data, we can control access to it and prevent unauthorized modifications.
Encapsulation promotes code reusability and maintainability.
Example: A class in objec...
Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.
Inheritance allows for code reuse and promotes the concept of hierarchy.
The class that is being inherited from is called the superclass or base class.
The class that inherits from the superclass is called the subclass or derived class.
The subclass can access the public and protected members of the s...
Abstraction is the process of simplifying complex systems by focusing on essential details.
Abstraction involves hiding unnecessary details and exposing only relevant information.
It allows developers to create models or representations that capture the essential aspects of a system.
Abstraction helps in managing complexity, improving code reusability, and enhancing maintainability.
For example, in object-oriented programm...
Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.
Polymorphism is a fundamental concept in object-oriented programming.
It enables code reusability and flexibility.
Polymorphism can be achieved through method overriding and method overloading.
Example: A parent class Animal can have multiple child classes like Dog, Cat, and Bird. They can ...
I applied via Company Website and was interviewed in Jul 2022. There were 4 interview rounds.
Apt + coding questions, medium difficulty
I applied via Walk-in and was interviewed before Nov 2023. There was 1 interview round.
Maths
Logical
English
C
posted on 11 Jan 2022
To delete a node in a linked list, we need to find the node and update the pointers of its previous and next nodes.
Find the node to be deleted by traversing the linked list
Update the pointers of the previous and next nodes to skip the node to be deleted
Free the memory occupied by the node to be deleted
I applied via Naukri.com and was interviewed in Mar 2022. There were 3 interview rounds.
1st Round is Up to an hr in that we have to perform Coding as per the test provided & also SQL round involve in it we have to show as output as per the test is concerned to provide valid outputs.
2nd round was an aptitude test of 90 mins it was like 100 Questions we have to solve and submit that it involved Logical Reasoning, Mathematical problems, Word Problems, etc.
I was interviewed before Jan 2021.
Round duration - 60 minutes
Round difficulty - Easy
I had one interview for approx. an hour, it includes both Technical and HR round, well mostly technical. Interview starts with tell me something about yourself. Asked in detailed about algorithms/web based projects mentioned in CV, make sure that whatever you have written you have complete knowledge about it. Asked to code few basic algorithms questions. Do mention about small project if you have done related to web development.
If interviewer says if you want to ask any question, its always better to ask one or two question.
Prepare tell me something about yourself way before your placement starts, a month or so. Write it down on a piece of paper, keep it to less than 120 sec, 90-100 sec is good.
A basic format would be like, your introduction, schooling (doesn't matter but if you have something good to say about), give an overview of your project/work experience mentioned in your CV.
You should cover all the necessary and import...
Binary Search Tree is a node-based binary tree data structure which has the following properties:
The left subtree of a node contains only nodes with keys lesser than the node’s key.
The right subtree of a node contains only nodes with keys greater than the node’s key.
The left and right subtree each must also be a binary search tree.
Given the root node of a binary search tree and a positive integer, you need to insert a new node with the given value into the BST so that the resulting tree maintains the pr...
A new key is always inserted at the leaf. We start searching a key from the root until we hit a leaf node. Once a leaf node is found, the new node is added as a child of the leaf node.
Pseudocode:
1. If tree is empty (no root), create a node with key k as root; return .
2. Set CurrNode = RootNode.
3. If k == CurrNode.key, return since the node is already present.
4. If k< CurrNode.key ... /* key must go in left sub...
You are provided with a Binary Search Tree (BST) containing 'N' nodes with integer data. Your task is to remove a given node from this BST.
A BST is a ...
Three cases arise in deleting a node :
1.Node to be deleted is the leaf: Simply remove it from the tree.
2. Node to be deleted has only one child: Copy the child to the node and delete the child node.
3.Node to be deleted has two children: Find inorder successor of the node. Copy contents of the inorder successor to the node and delete the inorder successor.
Pseudocode :
if node is null ->
return the node (eit...
Given a linked list where each node has two pointers: one pointing to the next node and another which can point randomly to any node in the list or ...
Algorithm :
1. Consider l1 as a node on the 1st list and l2 as the corresponding node on 2nd list.
2. Build the 2nd list by creating a new node for each node in 1st list. While doing so, insert each new node after it's corresponding node in the 1st list.
3. The new head is the 2nd node as that was the first inserted node.
4. Fix the random pointers in the 2nd list: (Remember that l1->next is actually l2) l2->random w...
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Must verify your CV from your seniors/batchmates.
Tip 2 : Include all the projects, intern work or hall activities or anything you have done on your own which is related to or interest of company. If you know any back-end/front-end (javascript, php, mysql etc) language do mention. I think the cv shortlist was completely based on previous work and technical skills related to Web Development/Design mentioned in the CV.
Tip 3 : Focus on skills, projects and experiences more.
Interview experience
based on 3 reviews
Rating in categories
Software Developer
11
salaries
| ₹10.6 L/yr - ₹37 L/yr |
Manager
10
salaries
| ₹16 L/yr - ₹35 L/yr |
Senior Software Engineer
7
salaries
| ₹11 L/yr - ₹46.2 L/yr |
District Manager
6
salaries
| ₹9.6 L/yr - ₹20 L/yr |
SAP Abap Consultant
5
salaries
| ₹12 L/yr - ₹31.2 L/yr |
Manappuram Finance
Hetero
Emcure Pharmaceuticals
Kantar