Upload Button Icon Add office photos

Filter interviews by

Fragma Data Systems Interview Questions, Process, and Tips for Freshers

Updated 16 Jan 2025

Top Fragma Data Systems Interview Questions and Answers for Freshers

Fragma Data Systems Interview Experiences for Freshers

Popular Designations

3 interviews found

Interview Questions & Answers

user image Anonymous

posted on 26 Dec 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Self introduction
  • Q2. Windows function and how you used
  • Ans. 

    Window functions are used to perform calculations across a set of table rows that are related to the current row.

    • Window functions are used in SQL to perform calculations on a specific subset of rows related to the current row.

    • They are often used with aggregate functions like SUM, AVG, and COUNT to calculate running totals, moving averages, and rankings.

    • Examples of window functions include ROW_NUMBER(), RANK(), LEAD(),

  • Answered by AI
  • Q3. Sql Coding questions. Window functions with joins.
  • Q4. Pyspark code for how you connect the data to ADLS with doing partition
  • Ans. 

    Use PySpark code to connect data to ADLS with partitioning

    • Use SparkSession to create a Spark application

    • Set the configuration for ADLS storage account and container

    • Read data from ADLS using Spark DataFrame API

    • Partition the data based on a specific column while writing back to ADLS

  • Answered by AI

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 10 Oct 2023

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Oct 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

1.ETL Pipeline
2.PySpark Code
3.SQL

Round 3 - Technical 

(2 Questions)

  • Q1. 1.sql easy question 2.pyspark easy code as I was fesher
  • Q2. 1.query related to group by
Round 4 - Technical 

(1 Question)

  • Q1. 1.One tricky sql query 2.What is sqoop?sqoop performs which job - map or reduce?

Top Fragma Data Systems Data Engineer Interview Questions and Answers

Q1. There are four cores and four worker nodes in Spark. How many jobs will run in parallel?
View answer (1)

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

I applied via Internshala and was interviewed before Sep 2021. There were 5 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 - Assignment 

I was given a pdf file containing 3 Problem statements along with the output for which I had to write SQL queries.

Round 3 - Technical 

(3 Questions)

  • Q1. Theoretical Questions related to SQL were asked like types of join, the difference between union and join, related to my project, and some behavioral questions.
  • Q2. What are different types of Joins?
  • Ans. 

    Joins are used to combine data from two or more tables based on a related column between them.

    • Inner Join: returns only the matching rows from both tables

    • Left Join: returns all rows from the left table and matching rows from the right table

    • Right Join: returns all rows from the right table and matching rows from the left table

    • Full Outer Join: returns all rows from both tables

    • Cross Join: returns the Cartesian product of b

  • Answered by AI
  • Q3. What is the Difference between Union and Joins
  • Ans. 

    Joins combine rows from two or more tables based on a related column, while unions combine rows from two or more tables with the same structure.

    • Joins are used to combine data from different tables based on a related column

    • Unions are used to combine data from tables with the same structure

    • Joins can be inner, left, right, or full, while unions are always a combination of all rows

    • Joins can have multiple conditions, while ...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Scenario-based questions on SQL
Round 5 - HR 

(1 Question)

  • Q1. Questions related to me like what my parents do etc. and their company profile.

Interview Preparation Tips

Interview preparation tips for other job seekers - If applying as a fresher, prepare SQL well as most of the questions will be from SQL only.

Skills evaluated in this interview

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. What is the architecture of Spark
  • Ans. 

    Spark has a master-slave architecture with a cluster manager and worker nodes.

    • Spark has a driver program that communicates with a cluster manager to allocate resources and schedule tasks.

    • The cluster manager can be standalone, Mesos, or YARN.

    • Worker nodes execute tasks and store data in memory or on disk.

    • Spark can also utilize external data sources like Hadoop Distributed File System (HDFS) or Amazon S3.

    • Spark supports va...

  • Answered by AI

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Interview mainly asked about spark architecture.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with the basic

I applied via Campus Placement and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Joined as a fresher, basic C program algo

Interview Preparation Tips

Interview preparation tips for other job seekers - Very easy to crack
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. Lazy evaluation narrow wide tranform data brick utlity functions
  • Q2. Dag,edges vertices
  • Q3. Spark architecture
  • Q4. Memory allocation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Technical 

(3 Questions)

  • Q1. Word Count program in Spark Scala
  • Ans. 

    Implement a Word Count program in Spark Scala

    • Use Spark's RDD API to read input text file

    • Split each line into words and map them to key-value pairs

    • ReduceByKey operation to count occurrences of each word

    • Save the result to an output file

  • Answered by AI
  • Q2. Apache spark architecture
  • Q3. Higher Order Functions in Scala
  • Ans. 

    Higher Order Functions in Scala are functions that take other functions as parameters or return functions as results.

    • Higher Order Functions allow for more concise and readable code.

    • Examples include map, filter, reduce, and flatMap in Scala.

    • They promote code reusability and modularity.

    • Higher Order Functions are a key feature of functional programming.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare the Spark and Scala thoroughly and do some programs related to it.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. 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 - One-on-one 

(2 Questions)

  • Q1. Technical interview round one
  • Q2. Technical interview round one answers
Round 3 - Technical 

(2 Questions)

  • Q1. Technical interview round two
  • Q2. Technical interview round two answers
Round 4 - HR 

(2 Questions)

  • Q1. HR interview round three
  • Q2. HR interview round three answers
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Introduce yourself
Round 2 - Behavioral 

(1 Question)

  • Q1. Introduce Yourself

Fragma Data Systems Interview FAQs

How many rounds are there in Fragma Data Systems interview for freshers?
Fragma Data Systems interview process for freshers usually has 3-4 rounds. The most common rounds in the Fragma Data Systems interview process for freshers are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Fragma Data Systems interview for freshers?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Fragma Data Systems. The most common topics and skills that interviewers at Fragma Data Systems expect are SQL, Java, Big Data, Python and Advanced Excel.
What are the top questions asked in Fragma Data Systems interview for freshers?

Some of the top questions asked at the Fragma Data Systems interview for freshers -

  1. Pyspark code for how you connect the data to ADLS with doing partit...read more
  2. What are different types of Joi...read more
  3. What is the Difference between Union and Jo...read more

Tell us how to improve this page.

Fragma Data Systems Interview Process for Freshers

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
Pythian Interview Questions
4.1
 • 6 Interviews
View all

Fragma Data Systems Reviews and Ratings

based on 113 reviews

4.3/5

Rating in categories

4.1

Skill development

4.1

Work-life balance

4.2

Salary

4.1

Job security

4.1

Company culture

4.2

Promotions

4.2

Work satisfaction

Explore 113 Reviews and Ratings
Data Engineer
56 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
24 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Analyst
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Fragma Data Systems with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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