Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Zetwerk Team. If you also belong to the team, you can get access from here

Zetwerk Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Zetwerk Data Analyst Interview Questions and Answers

Updated 17 Oct 2022

Zetwerk Data Analyst Interview Experiences

1 interview found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 17 Oct 2022

I applied via LinkedIn and was interviewed in Sep 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. The hr scheduled a call with the analytics manager ,who asked about my experience and general details ,some background about projects and previous work ,why this job etc .30-40 minutes conversation.
  • Q2. Just a casual brief conversation
Round 3 - One-on-one 

(2 Questions)

  • Q1. Second round was with a senior analyst ,who asked 5-6 sql related questions , problems to solve etc ,tables to create ,joins ,window functions etc basic sql
  • Q2. Very friendly interviewer , you are allowed to google the syntax
Round 4 - One-on-one 

(1 Question)

  • Q1. Another round with the analytics head , case study ,problem solving ,logical reasoning etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up sql concepts,joins,window functions etc.
Basic stats and mental math

Interview questions from similar companies

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

I applied via campus placement at Nitte Meenakshi Institute of Technology, Bangalore and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Questions from arrays and strings and some aptitude questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. How to merge 2 csv files
  • Ans. 

    To merge two CSV files, you can use software like Microsoft Excel or programming languages like Python.

    • Open both CSV files in a software like Microsoft Excel.

    • Copy the data from one CSV file and paste it into the other CSV file.

    • Save the merged CSV file with a new name.

    • Alternatively, you can use programming languages like Python to merge CSV files by reading both files, combining the data, and writing to a new file.

  • Answered by AI
  • Q2. Basic questions on arrays
Round 3 - HR 

(1 Question)

  • Q1. 3 reasons why u choose this company
  • Ans. 

    I applied to this company because of its reputation in the industry, opportunities for growth, and company culture.

    • Reputation in the industry - I have heard great things about the company's innovative projects and successful track record.

    • Opportunities for growth - The company offers various training programs and career advancement opportunities for employees.

    • Company culture - I value a positive work environment and the...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Questions on python

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Interviewer asked me basic SQL questions
  • Q2. In the second technical round he asked me advanced SQL topics (Windows Functions, Joins & Subqueries)
Round 2 - Coding Test 

In the second technical round interview asked me about advanced sql topics, theory questions and two coding questions in joins and window functions.

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

(5 Questions)

  • Q1. Basic Excel Questions
  • Q2. Medium and Basic SQL Questions
  • Q3. Resume based Question
  • Q4. Case Study Questions
  • Q5. Questions on Project
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

SQL based questions wer asked on joins , rank function,

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

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. SQL base Question
  • Q2. About your projects
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Instahyre and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Asked to write different SQL queries.
1. Moving average of lf previous 10 days
2. For a data which records in and out time of an employee. How many employees were present in the office at a given time
3. A/B testing vs pre-post testing

Round 2 - Case Study 

1. Had to come up with a method to give a score to each user based on FRM(frequency, recency, monetory)
2. Guesstimate: how many burgers does McD sells in a day

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

I applied via Company Website and was interviewed in Jul 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 - Aptitude Test 

Number sires, clock, logic, arithmetic, geometry

Round 3 - Coding Test 

Code test basic, ans the basic knowledge, write code

Round 4 - Technical 

(5 Questions)

  • Q1. What is python?
  • Ans. 

    Python is a high-level programming language known for its simplicity and readability.

    • Python is widely used for web development, data analysis, artificial intelligence, and scientific computing.

    • It emphasizes code readability and uses indentation to define code blocks.

    • Python has a large standard library and a vibrant community of developers.

    • Example: print('Hello, World!')

    • Example: import pandas as pd

  • Answered by AI
  • Q2. What is python used for?
  • Ans. 

    Python is a versatile programming language used for data analysis, web development, artificial intelligence, automation, and more.

    • Data analysis and visualization

    • Web development (Django, Flask)

    • Artificial intelligence and machine learning (TensorFlow, PyTorch)

    • Automation and scripting

    • Scientific computing (NumPy, SciPy)

  • Answered by AI
  • Q3. What type of language is python?
  • Ans. 

    Python is a high-level programming language known for its simplicity and readability.

    • Python is an interpreted language, meaning it does not need to be compiled before running.

    • It supports multiple programming paradigms, including object-oriented, imperative, and functional programming.

    • Python has a large standard library and a thriving community, making it versatile and widely used.

    • Example: Python is used for web develop...

  • Answered by AI
  • Q4. What is oops in python?
  • Ans. 

    Object-oriented programming (OOP) is a programming paradigm based on the concept of 'objects', which can contain data and code.

    • OOP allows for the organization of code into reusable components called classes.

    • Classes can have attributes (variables) and methods (functions) associated with them.

    • In Python, everything is an object, and classes can be defined using the 'class' keyword.

    • Encapsulation, inheritance, and polymorph

  • Answered by AI
  • Q5. What is array in python?
  • Ans. 

    An array in Python is a data structure that stores a collection of elements of the same type.

    • Arrays can store elements such as integers, floats, or strings.

    • Arrays are indexed starting from 0, with elements accessed using their index.

    • Example: arr = ['apple', 'banana', 'cherry']

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Swiggy Data Analyst interview:
  • Advanced Excel
  • SQL Server
  • Python
Interview preparation tips for other job seekers - online interview

Skills evaluated in this interview

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

(1 Question)

  • Q1. Joins and basics
Round 2 - Case Study 

Netflix user churn case study,
Uber booking number reduce

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Coding Test 

SQL and Python data analysis questions

Round 2 - Technical 

(1 Question)

  • Q1. How do you match the data in different columns.
  • Ans. 

    Matching data in different columns involves comparing the values in the columns and identifying similarities or patterns.

    • Use string matching techniques like exact match, partial match, or fuzzy matching.

    • Apply data cleaning and preprocessing techniques to standardize the data before matching.

    • Utilize advanced algorithms like Levenshtein distance or Jaccard similarity for more complex matching.

    • Consider using database join...

  • Answered by AI

Zetwerk Interview FAQs

How many rounds are there in Zetwerk Data Analyst interview?
Zetwerk interview process usually has 4 rounds. The most common rounds in the Zetwerk interview process are One-on-one Round and Resume Shortlist.
How to prepare for Zetwerk Data Analyst 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 Zetwerk. The most common topics and skills that interviewers at Zetwerk expect are Aerospace, Consumer Electronics, Data Analysis, Data Mining and Fabrication.
What are the top questions asked in Zetwerk Data Analyst interview?

Some of the top questions asked at the Zetwerk Data Analyst interview -

  1. Second round was with a senior analyst ,who asked 5-6 sql related questions , p...read more
  2. Another round with the analytics head , case study ,problem solving ,logical re...read more
  3. very friendly interviewer , you are allowed to google the syn...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Tata Steel Interview Questions
4.1
 • 832 Interviews
Bajaj Auto Interview Questions
3.9
 • 269 Interviews
Ashok Leyland Interview Questions
4.1
 • 237 Interviews
View all
Zetwerk Data Analyst Salary
based on 5 salaries
₹4 L/yr - ₹7.1 L/yr
11% more than the average Data Analyst Salary in India
View more details

Zetwerk Data Analyst Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

5.0

Company culture

2.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Assistant Manager
148 salaries
unlock blur

₹5.6 L/yr - ₹17.5 L/yr

Site Engineer
83 salaries
unlock blur

₹2.2 L/yr - ₹6.7 L/yr

Manager
72 salaries
unlock blur

₹8.5 L/yr - ₹27 L/yr

Quality Engineer
67 salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Senior Engineer
63 salaries
unlock blur

₹4.1 L/yr - ₹9.3 L/yr

Explore more salaries
Compare Zetwerk with

Tata Steel

4.1
Compare

Bharat Forge

3.9
Compare

Larsen & Toubro Limited

4.0
Compare

Mahindra & Mahindra

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