Upload Button Icon Add office photos

Filter interviews by

Saaj & Associates Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I was interviewed before Apr 2021.

Round 1 - Face to Face 

(4 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Technical Interview round with questions on Core Subjects mainly.

  • Q1. What is the difference between C and C++?
  • Ans. 

    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...

  • Answered by AI
  • Q2. What is a virtual function?
  • Ans. 

    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...

  • Answered by AI
  • Q3. What is inheritance in object-oriented programming?
  • Ans. 

    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

  • Answered by AI
  • Q4. What is the difference between a Default Constructor and a Copy Constructor in Object-Oriented Programming?
  • Ans. 

    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...

  • Answered by AI
Round 2 - Face to Face 

(5 Questions)

Round duration - 40 minutes
Round difficulty - Easy

Technical Interview round with questions on Core Subjects mainly.

  • Q1. What are the types of access modifiers in C++?
  • Ans. 

    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

  • Answered by AI
  • Q2. What is the difference between DDL (Data Definition Language) and DML (Data Manipulation Language)?
  • Ans. 

    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.

  • Answered by AI
  • Q3. What are the key differences between a Primary Key and a Unique Key in a database management system?
  • Ans. 

    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 ...

  • Answered by AI
  • Q4. What is the difference between DBMS and RDBMS?
  • Ans. 

    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...

  • Answered by AI
  • Q5. What are the objectives of normalization in database management systems?
  • Ans. 

    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

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaCS/IT/ECE And CGPA min of 7.0[CSE]. For ECE = 7.5DE Shaw India interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Apr 2021.

Round 1 - Face to Face 

(6 Questions)

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.

  • Q1. 

    Find Triplets with Given Sum Problem Statement

    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.

    Explanation:

    ...
  • Ans. 

    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.

  • Answered by AI
  • Q2. 

    Minimum Number of Platforms Problem

    Your task is to determine the minimum number of platforms required at a railway station so that no train has to wait.

    Explanation:

    Given two arrays:

    • AT - represent...
  • Ans. 

    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...

  • Answered by AI
  • Q3. What is the difference between internal fragmentation and external fragmentation in operating systems?
  • Ans. 

    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...

  • Answered by AI
  • Q4. Write an SQL query to find the employee with the nth highest salary.
  • Ans. 

    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

  • Answered by AI
  • Q5. How is Java platform independent?
  • Ans. 

    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

  • Answered by AI
  • Q6. What is the difference between an abstract class and an interface in Java?
  • Ans. 

    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

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPADE Shaw India interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: Though technical questions were not that difficult but the quant section was way too hard and almost impossible to solve completely in given time limit.
Tips: It’s better if you attempt less questions (in quant) but do them right (I attempted less than 40% quant and still got through).

Round: Technical Interview
Experience: Next they would have 2-3 technical rounds where they cover most of the areas of CS. Some of the areas where they concentrated more would be Algorithms, OOPS Concepts and Logical Puzzles.
Tips: Brush up important concepts from various areas such as Operating System, OOPS, Software Engineering. Be ready for some really challenging questions in Algorithms. Also they do ask quite a few logical puzzles so it’s important you practice a lot of them online before the interview.

General Tips: D E Shaw selects very few candidates + comes in starting weeks of placement season, so competition is immense. Multiple companies come on same day, so it becomes a little tedious. Surely I wasn't the better candidate that day.
Skill Tips: D E Shaw focuses more on your ability to solve logical problems, so make sure you are in best state of your mind and speak while solving any problem because what they are looking for is not the right answer (well of course they are) but also how are you approaching the problem.
Skills: Operating System, OOPS, Algorithms, CS, logical puzzles, Quant
College Name: NIT SURATHKAL
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before Mar 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Basic coding questions And logical questions

Round 3 - Coding Test 

Simple program for mathematics

Interview Preparation Tips

Interview preparation tips for other job seekers - Just learn basic coding in python for Fibonacci series and inverse or a string and all

Analyst Interview Questions & Answers

Ipsos user image Anonymous

posted on 15 Oct 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Details about Statistics knowledge
Round 3 - One-on-one 

(1 Question)

  • Q1. Asked about previous job experience
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and reasons for leaving previous company

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics clear

Analyst Interview Questions & Answers

Ipsos user image Anonymous

posted on 21 Feb 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. State linear regression assumptions.
  • Ans. 

    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...

  • Answered by AI
  • Q2. What is multicollinearity? How to tackle this condition?
  • Ans. 

    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...

  • Answered by AI
  • Q3. What are the components of time series analysis?
  • Ans. 

    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

  • Answered by AI
  • Q4. What are the preventive measures if regression assumptions are not met?
  • Ans. 

    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

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. How to tackle with missing values ?
  • Ans. 

    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...

  • Answered by AI
  • Q2. What is the difference between tuple and list ?
  • Ans. 

    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]

  • Answered by AI
  • Q3. How to detect outlier ?
  • Ans. 

    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...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay positive and give fast answers.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Why do you think you are a fit ?
Round 2 - Assignment 

Written test covering economic questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Please introduce yourself in mandarin

Interview Preparation Tips

Topics to prepare for Ipsos Consultant interview:
  • Case study
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Why are you joining in fhpl
  • Q2. Which type of work
Round 2 - Group Discussion 

Business related talk

Round 3 - Assignment 

How to manage employees

Round 4 - Assignment 

How to increase company

Interview Preparation Tips

Interview preparation tips for other job seekers - Good 👍

I applied via Referral and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why do you like to work in health sector
  • Ans. As the market is boom in health sector and specially insurance sector so i am interested
  • Answered by Emmanuel
  • Q2. How long would you like to be our organization
  • Ans. As long as it goes well with me in learning and growing myself to be better world of health sector.
  • Answered by Emmanuel

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good interaction.

Interview Preparation Tips

Round: Test
Experience: The first round had two sections. First section consisted of general aptitude and technical aptitude questions. In the second section we were given one coding question, for which we had to write the code in a language of our preference (C,C++,Java). Around 20 students were selected in the first round.

Round: Technical Interview
Experience: The second round was a technical interview. Two interviewers were present and the interview duration was 1-1.5 hours. Questions on Computer Networks, Databases, Operating Systems, Algorithms were asked. But they were more concerned about coding fundamentals especially C++ and Java. 6 students were selected in the second round.

Round: Technical Interview
Experience: Third round was again a technical interview. The interview process was same as previous second round.

Round: HR Interview
Experience: All the 6 students who were selected for the third round had a HR interview.

General Tips: The technical interview process was exhausting as the interview duration was 1-1.5 hours and challenging as they asked questions from all major fields of computer science.
Skill Tips: Prepare a decent resume and have at least 3-4 hard copies of it available with you all the times.Also do carry passport size photos with you. While going for interviews wear proper formals,carry 2-3 copies of resume and a pen.
Skills: C, Basic coding questions, Database, Data structures, Computer Networks, OS, Algorithms
College Name: NIT SURATHKAL

Tell us how to improve this page.

Interview Questions from Similar Companies

Gallagher Interview Questions
3.8
 • 215 Interviews
DE Shaw Interview Questions
3.8
 • 120 Interviews
Bank of Baroda Interview Questions
3.6
 • 94 Interviews
CapitalOne Interview Questions
3.7
 • 78 Interviews
NetAmbit Interview Questions
3.6
 • 77 Interviews
Ipsos Interview Questions
3.3
 • 36 Interviews
View all

Saaj & Associates Reviews and Ratings

based on 6 reviews

4.5/5

Rating in categories

4.4

Skill development

4.3

Work-life balance

4.4

Salary

4.4

Job security

4.4

Company culture

4.4

Promotions

4.4

Work satisfaction

Explore 6 Reviews and Ratings
Accountant
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Accountant
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Audit Assistant
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Junior Accountant
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Saaj & Associates with

Gallagher

3.8
Compare

Canara HSBC Life Insurance

3.7
Compare

Life Insurance Corporation of India

4.3
Compare

Bank of Baroda

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview