AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Fractal Analytics

Compare button icon Compare button icon Compare
4.0

based on 881 Reviews

Play video Play video Video summary
  • About
  • Reviews
    881
  • Salaries
    8.2k
  • Interviews
    214
  • Jobs
    84
  • Benefits
    118
  • Photos
    14
  • Posts
    2

Filter interviews by

Fractal Analytics Data Engineer Interview Questions and Answers

Updated 11 Jun 2025

10 Interview questions

A Data Engineer was asked 4mo ago
Q. Explain the project.
Ans. 

Developed a data pipeline to ingest, process, and analyze customer behavior data for targeted marketing campaigns.

  • Designed and implemented ETL processes to extract data from various sources

  • Utilized Apache Spark for data processing and analysis

  • Built machine learning models to predict customer behavior

  • Collaborated with marketing team to optimize campaign strategies

A Data Engineer was asked 5mo ago
Q. What are the key features and functionalities of Snowflake?
Ans. 

Snowflake is a cloud-based data warehousing platform known for its scalability, performance, and ease of use.

  • Snowflake uses a unique architecture called multi-cluster, which separates storage and compute resources for better scalability and performance.

  • It supports both structured and semi-structured data, allowing users to work with various data types.

  • Snowflake offers features like automatic scaling, data sharing,...

Data Engineer Interview Questions Asked at Other Companies

asked in Sigmoid
Q1. Next Greater Element Problem Statement You are given an array arr ... read more
View answers (3)
asked in LTIMindtree
Q2. If you are given cards numbered 1-1000 and 4 boxes, where card 1 ... read more
View answers (4)
asked in Cisco
Q3. Optimal Strategy for a Coin Game You are playing a coin game with ... read more
View answer (1)
asked in Sigmoid
Q4. Problem: Search In Rotated Sorted Array Given a sorted array that ... read more
View answer (1)
asked in Sigmoid
Q5. K-th Element of Two Sorted Arrays You are provided with two sorte ... read more
View answers (2)
View All
A Data Engineer was asked 9mo ago
Q. What is the difference between GROUP BY and DISTINCT?
Ans. 

Group by is used to group rows that have the same values into summary rows, while distinct is used to remove duplicate rows from a result set.

  • Group by is used with aggregate functions like COUNT, SUM, AVG, etc.

  • Distinct is used to retrieve unique values from a column or set of columns.

  • Group by is used to perform operations on groups of rows, while distinct is used to filter out duplicate rows.

  • Group by is used in co...

A Data Engineer was asked 9mo ago
Q. What are window functions in SQL?
Ans. 

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

  • Window functions are used to calculate values based on a set of rows related to the current row.

  • They allow you to perform calculations without grouping the rows into a single output row.

  • Examples of window functions include ROW_NUMBER(), RANK(), DENSE_RANK(), and NTILE().

A Data Engineer was asked
Q. How do you use cumulative sum and rank functions in Spark?
Ans. 

Explanation of cumulative sum and rank functions in Spark

  • Cumulative sum function calculates the running total of a column

  • Rank function assigns a rank to each row based on the order of values in a column

  • Both functions can be used with window functions in Spark

  • Example: df.withColumn('cumulative_sum', F.sum('column').over(Window.orderBy('order_column').rowsBetween(Window.unboundedPreceding, Window.currentRow)))

  • Exampl...

A Data Engineer was asked
Q. In a word count Spark program, which commands will run on the driver and which will run on the executor?
Ans. 

Commands that run on driver and executor in a word count Spark program.

  • The command to read the input file and create RDD will run on driver.

  • The command to split the lines and count the words will run on executor.

  • The command to aggregate the word counts and write the output will run on driver.

  • Driver sends tasks to executors and coordinates the overall job.

  • Executor processes the tasks assigned by the driver.

A Data Engineer was asked
Q. How would you identify the number of stages in a given program?
Ans. 

Identify the number of stages in a given program, focusing on its structure and flow.

  • Stages represent distinct phases in a program's execution.

  • Common stages include initialization, processing, and finalization.

  • Example: In a data pipeline, stages might be data extraction, transformation, and loading (ETL).

  • Each stage may have specific tasks and dependencies.

Are these interview questions helpful?
A Data Engineer was asked
Q. Explain Sorting algorithms
Ans. 

Sorting algorithms are methods used to arrange elements in a specific order.

  • Sorting algorithms are used to rearrange elements in a specific order, such as numerical or alphabetical.

  • Common sorting algorithms include Bubble Sort, Selection Sort, Insertion Sort, Merge Sort, Quick Sort, and Heap Sort.

  • Each sorting algorithm has its own time complexity and efficiency based on the size of the input data.

  • Sorting algorithm...

A Data Engineer was asked
Q. Slowly change data handling in spark
Ans. 

Slowly changing data handling in Spark involves updating data over time.

  • Slowly changing dimensions (SCD) are used to track changes in data over time.

  • SCD Type 1 updates the data in place, overwriting the old values.

  • SCD Type 2 creates a new record for each change, with a start and end date.

  • SCD Type 3 adds a new column to the existing record to track changes.

  • Spark provides functions like `from_unixtime` and `unix_tim...

A Data Engineer was asked
Q. Joins in Sql, Modelling and visualization part in PowerBI
Ans. 

Answering about joins in SQL and modeling/visualization in PowerBI

  • Joins in SQL are used to combine data from two or more tables based on a related column

  • There are different types of joins such as inner join, left join, right join, and full outer join

  • PowerBI is a data visualization tool that allows users to create interactive reports and dashboards

  • Data modeling in PowerBI involves creating relationships between tab...

Fractal Analytics Data Engineer Interview Experiences

24 interviews found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

Basic Pyspark/python question with some mcqs

Round 2 - Technical 

(2 Questions)

  • Q1. Project overview
  • Add your answer
  • Q2. Pyspark, python , sql related questions.
  • Add your answer
Round 3 - Technical 

(2 Questions)

  • Q1. Basic technical question on spark and one python Dasa question and one sql
  • Add your answer
  • Q2. Sql + python + spark + Adf + Databricks
  • Add your answer
Round 4 - HR 

(2 Questions)

  • Q1. Why you want to join even though you have offers from good mnc
  • Ans. 

    I am passionate about data engineering and believe this company offers unique opportunities for growth and learning.

    • Exciting projects and challenges at this company

    • Opportunities for growth and learning in data engineering

    • Alignment with company values and culture

    • Potential for career advancement and development

    • Interest in the industry or specific technologies used by the company

  • Answered by AI
    Add your answer
  • Q2. Salary expectations and work culture
  • Add your answer
Anonymous

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Dec 2024

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

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

Round 1 - HR 

(2 Questions)

  • Q1. The HR representative will seek to understand your experience and its alignment with the role.
  • Add your answer
  • Q2. Salary expectations, Offers in hand
  • Add your answer
Round 2 - Technical 

(3 Questions)

  • Q1. What are the key features and functionalities of Snowflake?
  • Ans. 

    Snowflake is a cloud-based data warehousing platform known for its scalability, performance, and ease of use.

    • Snowflake uses a unique architecture called multi-cluster, which separates storage and compute resources for better scalability and performance.

    • It supports both structured and semi-structured data, allowing users to work with various data types.

    • Snowflake offers features like automatic scaling, data sharing, and ...

  • Answered by AI
    Add your answer
  • Q2. The interviewer asked several complex SQL questions that utilized analytical functions.
  • Add your answer
  • Q3. I was asked to write some syntax-level code for Jinja statements in dbt.
  • Ans. 

    Jinja in dbt allows for dynamic SQL generation using templating syntax.

    • Use `{{ }}` for expressions, e.g., `{{ ref('my_model') }}` to reference another model.

    • Use `{% %}` for control flow, e.g., `{% if condition %} ... {% endif %}` for conditional logic.

    • Loop through lists with `{% for item in list %} ... {% endfor %}`.

    • Define variables with `{% set var_name = value %}` and use them with `{{ var_name }}`.

  • Answered by AI
    Add your answer
Round 3 - Technical 

(2 Questions)

  • Q1. The interviewer, who was part of the senior management, inquired about dbt, its features, and my experience with dbt thus far.
  • Add your answer
  • Q2. The interviewer reviewed my resume and inquired about the challenges I encountered in my previous roles and the methods I used to resolve them.
  • Add your answer
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiations, Bonus discussions
  • Add your answer

Interview Preparation Tips

Topics to prepare for Fractal Analytics Data Engineer interview:
  • dbt
  • Snowflake
  • AWS
  • Python
  • PySpark
  • SQL
  • Data Modelling
  • Data Quality
  • Airflow
Interview preparation tips for other job seekers - Stick to the basics while also addressing some complex topics relevant to your role and job expectations. Be honest about what you know and what you don't. Always approach discussions diplomatically regarding what is valuable to you.
Anonymous

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Jan 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Aptitude Test 

A general round having mix of maths,aptitude,english,puzzle and quiz. level was easy

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell about yourself
  • Add your answer
  • Q2. What step would you take in this situatiion
  • Ans. 

    I would analyze the situation, identify the root cause, and propose a solution based on data-driven insights.

    • Analyze the data to understand the problem

    • Identify the root cause of the issue

    • Propose a solution based on data-driven insights

  • Answered by AI
    Add your answer
Anonymous

Data Engineer Interview Questions & Answers

user image Divisha Sharma

posted on 26 Sep 2024

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

(1 Question)

  • Q1. Sql questions and python
  • Add your answer
Round 2 - Behavioral 

(1 Question)

  • Q1. About last projects
  • Add your answer
Anonymous

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 27 Oct 2023

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic SQL questions and Window fuctions
  • Add your answer
Round 2 - HR 

(1 Question)

  • Q1. HR asked how was the interview last round and gave me feedback
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Answered almost all questions but still the interviewer gave feedback as, cannot write pyspark code. Although there was only one pyspark coding question and I did it.
In fact interviewer turned camera off several times between and missed responding for a few seconds.
He even didn't tell me to share screen to see what I code.

Totally not serious about the interview..
Anonymous

Data Engineer Interview Questions & Answers

user image Abhishek Rajeevan

posted on 31 Dec 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Dec 2023. There were 4 interview rounds.

Round 1 - Coding Test 

I cannot recall the platform, but it featured a combination of Python and SQL questions, with the majority being focused on SQL.

Round 2 - One-on-one 

(2 Questions)

  • Q1. SQL basics like Indexes, Clustering, Keys, Data warehousing concepts, Normalization and Denormalization etc..
  • Add your answer
  • Q2. SQL coding questions
  • Add your answer
Round 3 - One-on-one 

(2 Questions)

  • Q1. SQL questions to solve using different types of joins
  • Add your answer
  • Q2. Questions based on project and data quality checks
  • Add your answer
Round 4 - HR 

(2 Questions)

  • Q1. Behavioral questions
  • Add your answer
  • Q2. Culture fit
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Fractal typically emphasizes core skills in programming and data engineering. It is important to have a solid understanding of the fundamentals and to be prepared for coding challenges, as well as knowledge of data warehousing and ETL concepts.
Anonymous

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Mar 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Feb 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 - Coding Test 

Sql and python coding conducted

Round 3 - One-on-one 

(1 Question)

  • Q1. Questions on AWS or azure depending upon the platform you work. more conceptual questions on data engineering.
  • Add your answer
Round 4 - project discussion 

(1 Question)

  • Q1. They check to which project you are fit to.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - be good on concepts and basics of azure or AWS. more questions on handling big data and pyspark coding.
Anonymous

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 16 Jan 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Basic sql online assessment with some queries and mcq

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain project
  • Ans. 

    Developed a data pipeline to ingest, process, and analyze customer behavior data for targeted marketing campaigns.

    • Designed and implemented ETL processes to extract data from various sources

    • Utilized Apache Spark for data processing and analysis

    • Built machine learning models to predict customer behavior

    • Collaborated with marketing team to optimize campaign strategies

  • Answered by AI
    Add your answer
  • Q2. Pipeline optimization
  • Add your answer
Round 3 - One-on-one 

(1 Question)

  • Q1. Behavioral question
  • Add your answer
Anonymous

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 1 Aug 2024

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

I applied via Naukri.com and was interviewed before Aug 2023. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. SQL query on joins, window function, remove duplicates, 2nd highest rank
  • Add your answer
  • Q2. Azure Data Factory, ETL questions
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. SQL, python technical questions
  • Add your answer
  • Q2. Managerial questions
  • Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Strength and weakness
  • Add your answer
  • Q2. Typical hr questions
  • Add your answer
Round 4 - Aptitude Test 

Quantitative Analysis, Data Interpretation, Logical Reasoning

Anonymous

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 11 Jun 2025

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

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Python related questions.
  • Add your answer
  • Q2. Spark related questions and SQL queries.
  • Add your answer
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
timepasstiwari
·
A Digital Markter
Nailed the interview, still rejected
Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
Got a question about Fractal Analytics?
Ask anonymously on communities.
More about working at Fractal Analytics
  • HQ - New York City,New York, United States
  • Emerging Technologies
  • 1k-5k Employees (India)
  • Internet

Fractal Analytics Interview FAQs

How many rounds are there in Fractal Analytics Data Engineer interview?
Fractal Analytics interview process usually has 3-4 rounds. The most common rounds in the Fractal Analytics interview process are Technical, HR and Coding Test.
How to prepare for Fractal Analytics Data Engineer interview?
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 Fractal Analytics. The most common topics and skills that interviewers at Fractal Analytics expect are Python, SQL, SDLC, AWS and Analytics.
What are the top questions asked in Fractal Analytics Data Engineer interview?

Some of the top questions asked at the Fractal Analytics Data Engineer interview -

  1. In a word count spark program which command will run on driver and which will r...read more
  2. What are the key features and functionalities of Snowfla...read more
  3. I was asked to write some syntax-level code for Jinja statements in d...read more
How long is the Fractal Analytics Data Engineer interview process?

The duration of Fractal Analytics Data Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Fractal Analytics Interviews By Designations

  • Fractal Analytics Consultant Interview Questions
  • Fractal Analytics Data Engineer Interview Questions
  • Fractal Analytics Data Scientist Interview Questions
  • Fractal Analytics Software Engineer Interview Questions
  • Fractal Analytics Decision Scientist Interview Questions
  • Fractal Analytics Senior Consultant Interview Questions
  • Fractal Analytics Business Analyst Interview Questions
  • Fractal Analytics Summer Intern Interview Questions
  • Show more
  • Fractal Analytics Engineer Interview Questions
  • Fractal Analytics Data Analyst Interview Questions

Interview Questions for Popular Designations

  • Senior Data Engineer Interview Questions
  • Big Data Engineer Interview Questions
  • Senior Software Engineer Interview Questions
  • Software Engineer Interview Questions
  • Database Admin Interview Questions
  • Data Analyst Interview Questions
  • Associate Software Engineer Interview Questions
  • System Engineer Interview Questions
  • Show more
  • Data Scientist Interview Questions
  • Azure Data Engineer Interview Questions

Overall Interview Experience Rating

4.4/5

based on 20 interview experiences

Difficulty level

Easy 15%
Moderate 85%

Duration

Less than 2 weeks 54%
2-4 weeks 38%
4-6 weeks 8%
View more

Interview Questions from Similar Companies

MathCo
MathCo Interview Questions
3.0
 • 116 Interviews
Zeta
Zeta Interview Questions
3.4
 • 74 Interviews
Kiya.ai
Kiya.ai Interview Questions
3.3
 • 50 Interviews
Hughes Systique Corporation
Hughes Systique Corporation Interview Questions
3.8
 • 35 Interviews
Deutsche Telekom Digital Labs
Deutsche Telekom Digital Labs Interview Questions
3.7
 • 32 Interviews
CoinDCX
CoinDCX Interview Questions
3.8
 • 30 Interviews
MoEngage
MoEngage Interview Questions
3.9
 • 27 Interviews
Seclore
Seclore Interview Questions
4.0
 • 27 Interviews
Innovatiview India Ltd
Innovatiview India Ltd Interview Questions
3.9
 • 26 Interviews
Demandbase
Demandbase Interview Questions
3.8
 • 18 Interviews
View all
Fractal Analytics Data Engineer Salary
based on 924 salaries
₹7.8 L/yr - ₹26 L/yr
41% more than the average Data Engineer Salary in India
View more details

Fractal Analytics Data Engineer Reviews and Ratings

based on 95 reviews

4.2/5

Rating in categories

4.1

Skill development

4.2

Work-life balance

3.7

Salary

4.4

Job security

4.3

Company culture

3.3

Promotions

3.9

Work satisfaction

Explore 95 Reviews and Ratings
Data Engineer Jobs at Fractal Analytics
Fractal Analytics
Data Engineer/Senior/Architect

Mumbai,

Pune

+3

8-12 Yrs

Not Disclosed

Fractal Analytics
Data Engineer - AWS + Python

Noida,

Mumbai

+4

3-5 Yrs

₹ 8.5-27 LPA

Fractal Analytics
AWS -Data Engineer

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Explore more jobs
Fractal Analytics Salaries in India
Consultant
1.2k salaries
unlock blur

₹6 L/yr - ₹24.8 L/yr

Data Engineer
924 salaries
unlock blur

₹7.8 L/yr - ₹26 L/yr

Senior Consultant
735 salaries
unlock blur

₹11 L/yr - ₹40 L/yr

Data Scientist
561 salaries
unlock blur

₹8 L/yr - ₹31 L/yr

Senior Data Scientist
323 salaries
unlock blur

₹12 L/yr - ₹42 L/yr

Explore more salaries
Compare Fractal Analytics with
Kiya.ai

Kiya.ai

3.3
Compare
MathCo

MathCo

3.0
Compare
Innovatiview India Ltd

Innovatiview India Ltd

3.9
Compare
Zeta

Zeta

3.4
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Fractal Analytics Interview Questions >
  • Fractal Analytics Data Engineer Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter