Upload Button Icon Add office photos

Filter interviews by

Quant Systems India Big Data Engineer Interview Questions and Answers

Updated 3 Sep 2024

Quant Systems India Big Data Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sql questions and python coding questions

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Types of Chunking in data preparation in RAG
  • Q2. How Embedding works in Vector Databases
  • Q3. Explain ARIMA model
  • Q4. How can we decide to choose Linear Regression for a business problem
Round 2 - Technical 

(4 Questions)

  • Q1. What is token and it's limit for Open Source LLMs
  • Q2. Difference of a Regression and Time Series problem
  • Q3. Advantage of LSTM over RNN
  • Q4. Performance Metrics for Logistic Regression
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy ques to answer basic

Round 2 - Coding Test 

Easy ques to write. not tough ques

Round 3 - Technical 

(2 Questions)

  • Q1. Easy ques to write.Not tough
  • Q2. Easy Ques to write not tough
Round 4 - HR 

(2 Questions)

  • Q1. Great to work here in Bajaj
  • Q2. 15min interview and basic of SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview in 15min
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Get the maximum salary of the employee from the employee and department table
  • Q2. Explain the data analysis process that you would follow for employee salary table
  • Ans. 

    The data analysis process for an employee salary table involves data cleaning, exploration, visualization, and modeling.

    • Start by cleaning the data to remove any duplicates, missing values, or outliers.

    • Explore the data by calculating basic statistics like mean, median, and standard deviation.

    • Visualize the data using histograms, box plots, or scatter plots to identify patterns or trends.

    • Perform statistical modeling to an...

  • Answered by AI
  • Q3. Explain the challenges you faced in your project
  • Ans. 

    I faced challenges in managing large datasets and ensuring data accuracy in my project.

    • Managing large volumes of data from multiple sources

    • Ensuring data accuracy and consistency

    • Dealing with missing or incomplete data

    • Handling data cleaning and preprocessing tasks

    • Addressing technical issues with data storage or processing tools

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was moderate and also easy to crack

Round 2 - Technical 

(2 Questions)

  • Q1. Write a SQL queries
  • Ans. 

    SQL queries to retrieve data from a database

    • Use SELECT statement to retrieve data from tables

    • Use WHERE clause to filter results based on specific conditions

    • Use JOIN clause to combine data from multiple tables

  • Answered by AI
  • Q2. Use case when while writing a query
  • Ans. 

    Using a case statement in a query to handle different conditions

    • Use CASE statement to handle different conditions in a query

    • CASE can be used for conditional logic within SELECT, WHERE, ORDER BY clauses

    • Example: SELECT column1, CASE WHEN condition1 THEN 'Result1' ELSE 'Result2' END AS new_column FROM table_name

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. Explain Data types in SQL?
  • Ans. 

    Data types in SQL define the type of data that can be stored in a column of a table.

    • Data types include integer, float, text, date, boolean, etc.

    • Each data type has specific properties and constraints.

    • Examples: INT for integers, VARCHAR for variable-length character strings.

  • Answered by AI
  • Q2. Explain 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 relationships between them.

    • RDBMS e...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

English, quant, logical reasoning

Round 2 - Technical 

(2 Questions)

  • Q1. Wacc, coc, beta
  • Q2. Coc, equity, capm
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indian Institute of Technology (IIT), Jodhpur and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is p value?
  • Ans. 

    A p-value is a measure used in statistical hypothesis testing to determine the strength of evidence against the null hypothesis.

    • A p-value is the probability of obtaining results as extreme as the observed results, assuming the null hypothesis is true.

    • A p-value is compared to a significance level (usually 0.05) to determine if the null hypothesis should be rejected.

    • A p-value less than the significance level indicates st

  • Answered by AI
  • Q2. Tell the output a**2
  • Ans. 

    The output of a**2 is the square of the value of a.

    • The output is the value of a multiplied by itself

    • For example, if a = 3, then the output would be 9 (3*3)

  • Answered by AI
  • Q3. Difference between append() and concat
  • Ans. 

    append() adds elements to a single DataFrame, while concat() combines multiple DataFrames.

    • append() is a method used to add rows to a DataFrame.

    • concat() is a function used to combine multiple DataFrames along a particular axis.

    • append() modifies the original DataFrame, while concat() returns a new DataFrame.

    • Example: df1.append(df2) vs pd.concat([df1, df2])

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. PartitionBy vs bucketBy in spark
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Explain error handling in PySpark
  • Ans. 

    Error handling in PySpark involves using try-except blocks and logging to handle exceptions and errors.

    • Use try-except blocks to catch and handle exceptions in PySpark code

    • Utilize logging to record errors and exceptions for debugging purposes

    • Consider using the .option('mode', 'PERMISSIVE') method to handle corrupt records in data processing

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Data Warehousing related questions
Round 3 - Behavioral 

(1 Question)

  • Q1. Data Modelling related questions

Skills evaluated in this interview

Quant Systems India Interview FAQs

How many rounds are there in Quant Systems India Big Data Engineer interview?
Quant Systems India interview process usually has 1 rounds. The most common rounds in the Quant Systems India interview process are Technical.

Tell us how to improve this page.

Software Engineer
14 salaries
unlock blur

₹3 L/yr - ₹10.1 L/yr

US IT Recruiter
6 salaries
unlock blur

₹3.6 L/yr - ₹4.3 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹8 L/yr - ₹12 L/yr

QA Engineer
6 salaries
unlock blur

₹4 L/yr - ₹10.5 L/yr

Salesforce Marketing Cloud Developer
6 salaries
unlock blur

₹2.9 L/yr - ₹9.7 L/yr

Explore more salaries
Compare Quant Systems India with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview