Filter interviews by
Be the first one to contribute and help others!
I was interviewed before Apr 2021.
Round duration - 45 minutes
Round difficulty - Medium
Technical Interview round with questions on Core Subjects mainly.
C is a procedural programming language while C++ is an object-oriented programming language with features like classes and inheritance.
C is a procedural programming language, while C++ is a multi-paradigm language with support for object-oriented programming.
C does not support classes and objects, while C++ does.
C uses structures for data organization, while C++ uses classes for data organization.
C does not have featur...
A virtual function is a function in a base class that is declared using the keyword 'virtual' and can be overridden by a function with the same signature in a derived class.
Virtual functions allow for dynamic polymorphism in object-oriented programming.
They are used to achieve runtime binding and enable the implementation of the function to be determined during runtime.
Example: virtual void display() = 0; in a base cla...
Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.
Allows for code reusability by creating a new class based on an existing class
Child class inherits attributes and methods of the parent class
Can have multiple levels of inheritance (e.g. grandparent, parent, child classes)
Example: class Dog extends Animal, where Dog inherits properties and methods
Default Constructor is a constructor that is automatically called when an object is created without any arguments. Copy Constructor is used to create a new object as a copy of an existing object.
Default Constructor has no parameters, while Copy Constructor takes an object of the same class as a parameter.
Default Constructor initializes the object with default values, while Copy Constructor creates a new object with the...
Round duration - 40 minutes
Round difficulty - Easy
Technical Interview round with questions on Core Subjects mainly.
The types of access modifiers in C++ are public, private, and protected.
Public: accessible from outside the class
Private: only accessible within the class
Protected: accessible within the class and its subclasses
DDL is used to define the structure of database objects, while DML is used to manipulate data within those objects.
DDL is used to create, modify, and delete database objects like tables, indexes, etc.
DML is used to insert, update, delete, and retrieve data from database tables.
DDL statements include CREATE, ALTER, DROP, TRUNCATE, etc.
DML statements include INSERT, UPDATE, DELETE, SELECT, etc.
Primary Key uniquely identifies each record in a table, while Unique Key ensures that all values in a column are distinct.
Primary Key does not allow NULL values, while Unique Key allows one NULL value.
A table can have only one Primary Key, but multiple Unique Keys.
Primary Key is automatically indexed, while Unique Key may or may not be indexed.
Primary Key is used to establish relationships between tables, while Unique ...
DBMS is a software system that manages databases, while RDBMS is a type of DBMS that stores data in a structured format using tables.
DBMS stands for Database Management System, which is a software system that allows users to interact with a database.
RDBMS stands for Relational Database Management System, which is a type of DBMS that stores data in a structured format using tables with rows and columns.
RDBMS uses Struct...
Normalization in database management systems aims to reduce data redundancy, improve data integrity, and optimize database performance.
Eliminate data redundancy by breaking down data into smaller tables
Reduce update anomalies by ensuring data is stored in a logical and consistent manner
Improve data integrity by enforcing referential integrity constraints
Optimize database performance by reducing the amount of redundant
Round duration - 30 minutes
Round difficulty - Easy
HR round with typical behavioral problems.
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 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I was interviewed before Apr 2021.
Round duration - 60 minutes
Round difficulty - Medium
Started with the discussion why do you want to join DE shaw. Since prior to my current company, I was working with a finance based company so they asked why do you want to come back to finance base company. So they asked my about debentures, bonds, mortgages and other financial jargons.
Then they asked questions related to DSA, OS etc.
Given an array ARR
consisting of N
integers, your task is to identify all distinct triplets within the array that sum up to a given integer K
.
The task is to find all distinct triplets in an array that sum up to a given integer.
Iterate through the array and use nested loops to find all possible triplets.
Use a set to store unique triplets and avoid duplicates.
Check if the sum of the triplet equals the target sum.
Return the list of valid triplets or -1 if no such triplet exists.
Your task is to determine the minimum number of platforms required at a railway station so that no train has to wait.
Given two arrays:
AT
- represent...Determine the minimum number of platforms needed at a railway station so that no train has to wait.
Sort the arrival and departure times arrays in ascending order.
Initialize two pointers for arrival and departure times, and a variable to keep track of the maximum number of platforms needed.
Increment the platform count when a train arrives and decrement when a train departs.
Update the maximum platform count as needed.
Ret...
Internal fragmentation occurs when memory is allocated in fixed-size blocks, leading to wasted space within a block. External fragmentation occurs when free memory is fragmented into small chunks, making it difficult to allocate contiguous blocks.
Internal fragmentation is caused by allocating fixed-size blocks of memory, leading to wasted space within a block.
External fragmentation occurs when free memory is fragmented...
SQL query to find the employee with the nth highest salary
Use the ORDER BY clause to sort salaries in descending order
Use the LIMIT clause to select the nth highest salary
Join the employee table with the salary table to get the employee details
Java is platform independent due to its bytecode and JVM.
Java code is compiled into bytecode, which can run on any platform with a Java Virtual Machine (JVM)
JVM acts as an intermediary between the Java code and the underlying platform, ensuring portability
Developers write code once and it can be executed on any platform that has a compatible JVM
Examples: Windows, macOS, Linux all can run Java programs without any chang
Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.
Abstract class can have constructor, member variables, and methods with implementation.
Interface can only have abstract methods and constants.
A class can implement multiple interfaces but can only extend one abstract class.
Example: Abstract class - Animal with abstract method 'eat' and non-abstract method 'sle
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 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I applied via Referral and was interviewed before Mar 2022. There were 3 interview rounds.
Basic coding questions And logical questions
Simple program for mathematics
I applied via Referral and was interviewed in Apr 2023. There were 4 interview rounds.
I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.
Linear regression assumptions include linearity, independence, homoscedasticity, and normality.
Linearity: The relationship between the independent and dependent variables is linear.
Independence: The residuals are independent of each other.
Homoscedasticity: The variance of the residuals is constant across all levels of the independent variables.
Normality: The residuals are normally distributed.
Example: If we are predict...
Multicollinearity is a phenomenon in which two or more predictor variables in a regression model are highly correlated.
Multicollinearity can lead to unstable estimates of the coefficients and make it difficult to determine the effect of each predictor variable on the outcome.
One way to tackle multicollinearity is to identify the highly correlated variables and consider removing one of them from the model.
Another approa...
Time series analysis components include trend, seasonality, cyclicality, and irregularity.
Trend: Long-term movement or direction of the data.
Seasonality: Regular patterns that occur at specific intervals.
Cyclicality: Repeating patterns that are not necessarily at fixed intervals.
Irregularity: Random fluctuations or noise in the data.
Examples: Trend in stock prices, seasonality in retail sales, cyclicality in economic c
Preventive measures for regression assumptions not met
Check for multicollinearity among independent variables
Transform variables if they are not normally distributed
Consider using non-parametric regression methods
Use robust regression techniques to handle outliers
Collect more data to improve model performance
Handling missing values is crucial in data analysis. Various techniques like imputation, deletion, or prediction can be used.
Use imputation techniques like mean, median, mode to fill in missing values.
Consider using predictive modeling to estimate missing values based on other variables.
Delete rows or columns with a high percentage of missing values if they cannot be accurately imputed.
Use advanced techniques like K-ne...
Tuple is immutable and fixed in size, while list is mutable and can change in size.
Tuple is created using parentheses, while list is created using square brackets.
Tuple elements can be of different data types, while list elements are usually of the same data type.
Tuple is faster than list for iteration and accessing elements.
Example: tuple = (1, 'a', True), list = [1, 2, 3]
Outliers can be detected using statistical methods like Z-score, IQR, or visualization techniques like box plots.
Calculate Z-score for each data point and identify points with Z-score greater than a certain threshold (usually 3 or -3).
Use Interquartile Range (IQR) to identify outliers by determining data points that fall below Q1 - 1.5 * IQR or above Q3 + 1.5 * IQR.
Visualize the data using box plots and identify points...
I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.
Written test covering economic questions
I applied via Job Fair and was interviewed in Aug 2024. There were 4 interview rounds.
Business related talk
How to manage employees
How to increase company
I applied via Referral and was interviewed before Dec 2020. There were 4 interview rounds.
based on 6 reviews
Rating in categories
Accountant
5
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Accountant
4
salaries
| ₹0 L/yr - ₹0 L/yr |
Audit Assistant
3
salaries
| ₹0 L/yr - ₹0 L/yr |
Junior Accountant
3
salaries
| ₹0 L/yr - ₹0 L/yr |
Gallagher
Canara HSBC Life Insurance
Life Insurance Corporation of India
Bank of Baroda