Upload Button Icon Add office photos

Carl Zeiss

Compare button icon Compare button icon Compare

Filter interviews by

Carl Zeiss Data Engineer Interview Questions and Answers

Updated 10 Nov 2024

Carl Zeiss Data Engineer Interview Experiences

2 interviews found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 10 Nov 2024

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

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Just based on games and Aptitude

Round 2 - Coding Test 

2 Mid question and 20 CS fundamental

Round 3 - Technical 

(2 Questions)

  • Q1. Coding Question DP
  • Q2. Behavioural Questions

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 22 Mar 2024

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was Aptitute Round as well as gaming round

Round 2 - Coding Test 

They asked DSA and SQL

Round 3 - Technical 

(3 Questions)

  • Q1. Mostly resume based
  • Q2. Coding questions and SQL queries
  • Q3. About your projects and all
Round 4 - HR 

(1 Question)

  • Q1. It was interactive round

Interview Preparation Tips

Interview preparation tips for other job seekers - Add what you know in your resume

Data Engineer Interview Questions Asked at Other Companies

asked in Cisco
Q1. Optimal Strategy for a Coin Game You are playing a coin game with ... read more
asked in Sigmoid
Q2. Next Greater Element Problem Statement You are given an array arr ... read more
asked in Sigmoid
Q3. Problem: Search In Rotated Sorted Array Given a sorted array that ... read more
asked in Cisco
Q4. Covid Vaccination Distribution Problem As the Government ramps up ... read more
asked in LTIMindtree
Q5. 1) If you are given a card with 1-1000 numbers and there are 4 bo ... read more

Interview questions from similar companies

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

I applied via Referral and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic about python

Interview Preparation Tips

Interview preparation tips for other job seekers - just prepare for py3

Interview Questionnaire 

1 Question

  • Q1. How do you rate yourself in c?

I applied via Naukri.com and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I can not disclose the questions but definitely it was a level up than I expected

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a deep knowledge about your field of experience, narrow knowledge is not going to help you here as there are more numbers of interviews and that will definitely going to beat you with its uncertainty of the questions so better prepare throughly
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Basic programming and Algorithms. data structures theory and implementation

Round 2 - HR 

(1 Question)

  • Q1. Formality round and nothing was asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and always be open for questions

I appeared for an interview in Feb 2017.

Interview Questionnaire 

7 Questions

  • Q1. What is a malloc function and where is it used and how is it different from new?
  • Ans. 

    malloc is a function in C that dynamically allocates memory on the heap. It is used to allocate memory for variables or data structures.

    • malloc is used in C programming language.

    • It is used to allocate memory on the heap.

    • malloc is different from 'new' in C++ as it does not call constructors for objects.

  • Answered by AI
  • Q2. What is the difference between C++ and Objective C and where will you use it?
  • Ans. 

    C++ is a general-purpose programming language while Objective C is a superset of C used for iOS and macOS development.

    • C++ is widely used for developing applications, games, and system software.

    • Objective C is mainly used for iOS and macOS development.

    • C++ supports both procedural and object-oriented programming paradigms.

    • Objective C is an object-oriented language with dynamic runtime features.

    • C++ has a larger community a...

  • Answered by AI
  • Q3. What is the difference between class container and class composition?
  • Ans. 

    Class container is a class that holds objects of other classes, while class composition is a way to combine multiple classes to create a new class.

    • Class container holds objects of other classes, acting as a collection or container.

    • Class composition combines multiple classes to create a new class with its own behavior and attributes.

    • In class container, the objects are typically stored in a data structure like an array o...

  • Answered by AI
  • Q4. There are fifteen horses and a racing track that can run five horses at a time. You have to figure out the top 3 horses out of those and you don't have any timer machine to measure. How will you find the t...
  • Ans. 

    Divide the horses into groups of 5 and race them. Take the top 2 from each race and race them again. Finally, race the top 2 horses to determine the top 3.

    • Divide the horses into 3 groups of 5 and race them.

    • Take the top 2 horses from each race and race them again.

    • Finally, race the top 2 horses to determine the top 3.

  • Answered by AI
  • Q5. What is the most difficult problem that you have solved (during work) till now and why you think you could do so?
  • Ans. 

    Developing a real-time data processing system for a high-traffic e-commerce website

    • Implemented a distributed system architecture to handle large volumes of data

    • Optimized algorithms for efficient data processing and storage

    • Utilized caching mechanisms to improve system performance

    • Worked closely with cross-functional teams to troubleshoot and resolve issues

    • Example: Successfully reduced data processing time by 50% by imple

  • Answered by AI
  • Q6. Why you want to change your current job?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Looking for a more challenging role to further develop my skills

    • Interested in exploring new technologies and industries

    • Seeking better career advancement opportunities

    • Want to work in a more collaborative team environment

  • Answered by AI
  • Q7. What is the width of a tree? How will you calculate the width of the tree?
  • Ans. 

    The width of a tree is the maximum number of nodes at any level in the tree.

    • To calculate the width of a tree, we can perform a level order traversal and keep track of the maximum number of nodes at any level.

    • We can use a queue data structure to perform the level order traversal.

    • At each level, we count the number of nodes in the queue and update the maximum width if necessary.

  • Answered by AI

Interview Preparation Tips

Skills: Basic C/C++, Implementing Data Structures In C++

Skills evaluated in this interview

I appeared for an interview in Nov 2016.

Interview Questionnaire 

8 Questions

  • Q1. A random number will be given as input to system,write a program to detect its data type(int or float ) without using size of function
  • Q2. General hr questions
  • Q3. Once again general hr interview questions
  • Q4. 1.given a large rectangle
  • Ans. 

    Need more context. What needs to be done with the large rectangle?

    • What are the dimensions of the rectangle?

    • Is it a 2D or 3D object?

    • What is the context of the problem?

    • Are there any constraints or limitations?

    • What tools or programming languages can be used?

  • Answered by AI
  • Q5. You will be given dimensions of a bigger rectangle and smaller rectangle,derive a formula to get how many smaller rectangles fit into the bigger rectangle
  • Ans. 

    Derive a formula to determine how many smaller rectangles fit into a bigger rectangle given their dimensions.

    • Calculate the number of times the smaller rectangle can fit into the bigger rectangle horizontally and vertically

    • Divide the width of the bigger rectangle by the width of the smaller rectangle to get the horizontal count

    • Divide the height of the bigger rectangle by the height of the smaller rectangle to get the ve...

  • Answered by AI
  • Q6. How many points are required to draw a rectangle
  • Ans. 

    At least 4 points are required to draw a rectangle.

    • A rectangle has 4 sides and 4 corners, so at least 4 points are needed to define those corners.

    • The points must be arranged in a specific order to form a closed shape with 4 sides.

    • Additional points can be used to add details or modify the shape of the rectangle.

    • The number of points required may vary depending on the software or tool used to draw the rectangle.

  • Answered by AI
  • Q7. What will be the new coordinates of a rectangle points if rectangle length and breadth is scaled and write a program to calculate the coordinates of corner points of scaled rectangle
  • Ans. 

    Answering how to calculate new coordinates of a scaled rectangle and providing a program for it.

    • To calculate new coordinates, multiply the original coordinates by the scaling factor

    • Scaling factor can be calculated by dividing the new length/breadth by the original length/breadth

    • Program can take input of original coordinates, scaling factor, and output new coordinates

    • Example: Original coordinates: (0,0), (0,5), (5,5), (...

  • Answered by AI
  • Q8. Lastly a puzzle: i dont remember the question

Interview Preparation Tips

Round: Test
Experience: The test had three sections:
1.aptitude:It was like any other aptitude test,all it takes is a bit of practice to crack all the questions
2.C programming:Basics of c were asked,outputs of some programs,u have to be thorough with concepts of c
3.Electronics:The company hired for both profiles: 1. PDK:software
and 2.Logic library:hardware,so this electronics section was also there,questions are mostly Network analysis,cmos logic,digital logic,vlsi etc
u should have good basics to get the electronics questions of course they are not very hard,but not too easy


Tips: practice aptitude,basics of c programming and also basics of electronics
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Test
Experience: after 1st round i was shortlisted to this technical round,i was asked this question, i suggested that i will convert that number into a string and check whether string has a dot or not to check if it is float or int,the interviewer was not very impressed but was ok and asked few small questions and promoted me to next round

Tips: If u crack test with top marks,the technical rounds will be very easy,because the interviewers do not ask tough questions for people who cracked written test with high marks

Round: Technical Interview
Experience: tell me about yourself,strengths,weakness,three principles u follow in life,etc
Tips: This round depends on you,dont try to bluff something,they will know if u are bluffing,take a breath and speak up ur mind,be confident u can do it

Round: HR Interview
Experience: same questions,but this time less duration,not involving lengthy discussions, i think this round was just for double check

Round: HR Interview
Experience: After the hr round,only seven were shortlist,this interview round was very much easy and they checked my approach to the given problem,they were checking how well i am thinking adding complexities to the given problem
Tips: they did not check my programming ability,but just problem solving skills,so be good at aptitude,by practicing as much as you can

Round: Group Discussion
Experience: after technical interview,4 were shortlisted,so they went for gd round,it was general topic,which checks your general knowledge
Tips: Dont be nervous,just speak what ever you know,never mind language issues
Duration: 20 minutes

Skills: for pdk profile :programming
College Name: NIT Warangal

Interview Questionnaire 

1 Question

  • Q1. Line drawing algorithm , clone linked list

Interview Questionnaire 

14 Questions

  • Q1. 1. Why do you want to change your current job ?
  • Q2. 2. What do you know about quality tools ?
  • Ans. 

    Quality tools are techniques used to ensure quality in a product or service.

    • Quality control charts

    • Pareto charts

    • Fishbone diagrams

    • Histograms

    • Control charts

    • Scatter diagrams

    • Statistical process control

  • Answered by AI
  • Q3. What is your biggest professional achievement so far ?
  • Q4. Tell my that why a histogram is used....and what is frequency and interval in histogram?
  • Ans. 

    A histogram is used to represent the distribution of numerical data. Frequency is the number of occurrences and interval is the range of values.

    • Histograms are useful for visualizing data and identifying patterns.

    • Frequency refers to the number of times a value appears in the data set.

    • Interval refers to the range of values that are grouped together in the histogram.

    • Histograms are commonly used in statistics, finance, and...

  • Answered by AI
  • Q5. If we do rework of any produced part, which factors get affected by this of OEE?
  • Ans. 

    Rework of produced parts affects the factors of Overall Equipment Efficiency (OEE).

    • Rework increases the time required to produce a part, reducing the availability factor of OEE.

    • Rework increases the number of defects, reducing the quality factor of OEE.

    • Rework increases the amount of scrap or waste, reducing the performance factor of OEE.

    • Rework can lead to increased downtime for equipment setup and adjustments, reducing ...

  • Answered by AI
  • Q6. What is Autonomous maintenance ?
  • Ans. 

    Autonomous maintenance is a maintenance approach where operators take responsibility for routine maintenance tasks.

    • Operators are trained to perform routine maintenance tasks

    • Operators conduct inspections and minor repairs

    • Autonomous maintenance reduces downtime and improves equipment reliability

    • It also frees up maintenance staff to focus on more complex tasks

  • Answered by AI
  • Q7. Why do companies are going for having TPM ?
  • Ans. 

    Companies are going for TPM to improve productivity, reduce downtime, and increase efficiency.

    • TPM helps in identifying and eliminating equipment failures before they occur

    • It ensures that equipment is maintained properly and in a timely manner

    • TPM also helps in reducing the need for emergency repairs and downtime

    • It improves overall equipment effectiveness and reduces costs

    • Companies that have implemented TPM have seen sig...

  • Answered by AI
  • Q8. Why do you want to relocate ?
  • Q9. What is SPC, and what is Cp and Cpk ?
  • Ans. 

    SPC stands for Statistical Process Control. Cp and Cpk are statistical tools used to measure process capability.

    • SPC is a method of monitoring and controlling a process to ensure it is operating within acceptable limits.

    • Cp is a measure of how well the process is centered between the upper and lower specification limits.

    • Cpk is a measure of how well the process is capable of producing within the specification limits.

    • Cp an...

  • Answered by AI
  • Q10. How to calculate OEE?
  • Ans. 

    OEE can be calculated by multiplying Availability, Performance, and Quality percentages.

    • Calculate Availability by dividing Operating Time by Planned Production Time.

    • Calculate Performance by dividing Actual Production by Maximum Production.

    • Calculate Quality by dividing Good Units by Total Units Produced.

    • Multiply Availability, Performance, and Quality percentages to get OEE.

  • Answered by AI
  • Q11. What ardvthe major losses that affects OEE?
  • Ans. 

    Major losses affecting OEE include availability, performance, and quality losses.

    • Availability losses occur when equipment is not running due to breakdowns, changeovers, or lack of materials.

    • Performance losses occur when equipment is running below its maximum speed or efficiency.

    • Quality losses occur when defective products are produced and need to be scrapped or reworked.

    • Other losses may include startup and shutdown los...

  • Answered by AI
  • Q12. What is IATF stands for and what is its current revised name ?
  • Ans. 

    IATF stands for International Automotive Task Force and its current revised name is IATF 16949:2016.

    • IATF stands for International Automotive Task Force

    • Its current revised name is IATF 16949:2016

  • Answered by AI
  • Q13. What is capacitor and where it is being used ?
  • Ans. 

    A capacitor is an electronic component that stores electrical energy in an electric field. It is used in various electronic circuits.

    • Capacitors are used to filter out noise and stabilize voltage in power supplies.

    • They are used in timing circuits, oscillators, and filters.

    • Capacitors are also used in audio equipment to filter out unwanted frequencies.

    • They can be found in electronic devices such as TVs, computers, and sma...

  • Answered by AI
  • Q14. Why do you prefer working in production dept.?

Carl Zeiss Interview FAQs

How many rounds are there in Carl Zeiss Data Engineer interview?
Carl Zeiss interview process usually has 3-4 rounds. The most common rounds in the Carl Zeiss interview process are Aptitude Test, Coding Test and Technical.
How to prepare for Carl Zeiss 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 Carl Zeiss. The most common topics and skills that interviewers at Carl Zeiss expect are Azure, Data Analysis, Data Visualization, Python and Power Bi.
What are the top questions asked in Carl Zeiss Data Engineer interview?

Some of the top questions asked at the Carl Zeiss Data Engineer interview -

  1. Coding questions and SQL quer...read more
  2. It was interactive ro...read more
  3. Behavioural Questi...read more

Tell us how to improve this page.

Carl Zeiss Data Engineer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Texas Instruments Interview Questions
4.0
 • 120 Interviews
Synopsys Interview Questions
3.9
 • 89 Interviews
Molex Interview Questions
3.8
 • 55 Interviews
Lam Research Interview Questions
3.7
 • 46 Interviews
Broadcom Interview Questions
3.3
 • 41 Interviews
View all
Carl Zeiss Data Engineer Salary
based on 11 salaries
₹10 L/yr - ₹19.1 L/yr
48% more than the average Data Engineer Salary in India
View more details

Carl Zeiss Data Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Sales Associate
88 salaries
unlock blur

₹3.3 L/yr - ₹8 L/yr

Sales Specialist
63 salaries
unlock blur

₹6 L/yr - ₹16.3 L/yr

Field Service Engineer
40 salaries
unlock blur

₹4.8 L/yr - ₹11.5 L/yr

Sales Executive
33 salaries
unlock blur

₹1.8 L/yr - ₹9.5 L/yr

Technical Lead
31 salaries
unlock blur

₹20 L/yr - ₹36 L/yr

Explore more salaries
Compare Carl Zeiss with

TDK India Private Limited

3.8
Compare

Molex

3.8
Compare

Synopsys

3.9
Compare

Broadcom

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