Upload Button Icon Add office photos

Zebra Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Zebra Technologies Software Engineer Interview Questions and Answers

Updated 9 Oct 2024

Zebra Technologies Software Engineer Interview Experiences

5 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is jdk, string related questions, basic java oops questions?

Software Engineer Interview Questions & Answers

user image Nazif ullah Hanan

posted on 2 Jul 2024

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

(2 Questions)

  • Q1. What are the main principles of the Java
  • Ans. 

    Main principles of Java include object-oriented programming, platform independence, and automatic memory management.

    • Object-oriented programming: Java is based on classes and objects, allowing for encapsulation, inheritance, and polymorphism.

    • Platform independence: Java code can run on any platform that has a Java Virtual Machine (JVM) installed.

    • Automatic memory management: Java uses garbage collection to automatically m

  • Answered by AI
  • Q2. What is the different between == and equals method
  • Ans. 

    The == operator compares the memory addresses of two objects, while the equals method compares the content of two objects.

    • The == operator is used to compare the memory addresses of two objects in Java.

    • The equals method is used to compare the content of two objects in Java.

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will return false, but str1.equals(str2) will return true

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Spring boot related questions
  • Q2. Java related questios
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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is a pointer to pointer
  • Ans. 

    A pointer to pointer is a variable that stores the memory address of another pointer variable.

    • It is used to create dynamic data structures like linked lists and trees.

    • It allows multiple levels of indirection.

    • It is denoted by ** in C and C++.

    • Example: int **ptr;

    • Example: ptr = &p; where p is a pointer variable.

  • Answered by AI
  • Q2. Class, object, inheritance, polymorphism,dbms

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on pointers,work on ds, study network analysis, learn more about the job and company

Skills evaluated in this interview

Zebra Technologies interview questions for designations

 Software Developer

 (1)

 Software Tester

 (1)

 Software Engineer2

 (1)

 Test Engineer

 (2)

 Senior Automation Engineer

 (1)

 Software Trainee Intern

 (1)

 Monitoring Engineer

 (1)

 Product Owner

 (1)

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Normal apptitude queations were asked in this round

Round 2 - Technical 

(1 Question)

  • Q1. Questions on javascript Basic of HTML, CSS

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare for basics

Interview questions from similar companies

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 140 minutes
Round difficulty - Medium

Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

  • Q1. 

    Sum of Two Numbers Represented as Arrays

    Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

  • Ans. 

    Given two numbers represented as arrays, calculate their sum and return the result as an array.

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other by considering the remaining digits

    • Ensure the final sum array does not have any leading zeros

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

Round 3 - HR 

Round duration - 8 minutes
Round difficulty - Easy

This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

Interview Preparation Tips

Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
Tip 2 : Exercise problems based on OOPS concepts and others too.
Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

Application resume tips for other job seekers

Tip 1 : Your resume should be in standard form, short and simple will be more effective.
Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Jun 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 minutes
Round difficulty - Easy

It was an mcq + coding round. There were aptitude and ouput based question in mcq. And coding questions were easy

  • Q1. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an array of integers from 0 to (N-2).

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number with a frequency greater than 1 as the duplicate number.

    • Time complexity can be optimized to O(N) using Floyd's Tortoise and Hare algorithm.

  • Answered by AI
  • Q2. 

    Reverse String Operations Problem Statement

    You are provided with a string S and an array of integers A of size M. Your task is to perform M operations on the string as specified by the indices in array A...

  • Ans. 

    Given a string and an array of indices, reverse substrings based on the indices to obtain the final string.

    • Iterate through the array of indices and reverse the substrings accordingly

    • Ensure the range specified by each index is non-empty

    • Return the final string after all operations are completed

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 Minutes
Round difficulty - Easy

It was technical + hr round. there were 2 people as interviewer. They stated from intro and asked some basic puzzles and hr questions. After that they asked about my projects, technologies and some ds algo and dbms questions.

Interview Preparation Tips

Eligibility criterianaAccenture interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude
Tip 2 : Focus on practicing coding
Tip 3 : Learn from mistakes

Application resume tips for other job seekers

Tip 1 : Mention some projects that you have done
Tip 2 : Try to have skills that are required for the role

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. What is fan trap? How to solve it? Give one example.
  • Ans. 

    Fan trap is a situation in which a query involving multiple tables results in a Cartesian product.

    • Fan trap occurs when a table is connected to multiple tables in a one-to-many relationship.

    • It can be solved by creating a bridge table or by using aggregate functions.

    • For example, if a customer table is connected to an orders table and a products table, a fan trap can occur when trying to retrieve information about custome...

  • Answered by AI
  • Q2. Two tables are joined. But joined type are not mentioned, then how much records will retrieve using select statement.
  • Q3. How to use dynamic break in report?
  • Ans. 

    Dynamic break in report allows for automatic page breaks based on data.

    • Define a break field in the report design

    • Set the break field to trigger a page break when its value changes

    • Use dynamic break to automatically adjust page breaks based on data

    • Example: A report on sales by region can use dynamic break to create a new page for each region

  • Answered by AI
  • Q4. Use of foreach function in report.
  • Ans. 

    Foreach function is used to iterate through an array of strings in a report.

    • Foreach function is used to loop through each element in an array of strings.

    • It can be used to display each element in a report.

    • Example: foreach(string item in stringArray){ Console.WriteLine(item); }

  • Answered by AI
  • Q5. What is Aggregate awareness? When we use it? Syntax of it.
  • Ans. 

    Aggregate awareness is a feature in Business Objects that allows reports to be optimized for performance by using aggregate tables.

    • Aggregate awareness is used when creating reports in Business Objects

    • It allows the report to use aggregate tables instead of detailed tables for improved performance

    • Syntax: AGGR_AWARE(, ,

      )

    • Example: AGGR_AWARE(Product, Sum(Sales), Sales_Fact_Table)

  • Answered by AI
  • Q6. @prompt function syntax and it's use.
  • Ans. 

    The @prompt function syntax is used to display a prompt message to the user and receive input.

    • The syntax is @prompt('message', 'default value')

    • The message is the prompt message to be displayed to the user

    • The default value is optional and will be displayed in the input field

    • The function returns the value entered by the user

  • Answered by AI

I applied via Campus Placement and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Reverse an array
  • Ans. 

    Reverse an array of strings

    • Iterate through the array from both ends and swap the elements

    • Continue swapping until the middle of the array is reached

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare DS and algo well and some general HR questions

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Nov 2021. There were 2 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Python and Java questions
  • Q2. Oops basic interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easily we can Just Practice basic interview questions
Contribute & help others!
anonymous
You can choose to be anonymous

Zebra Technologies Interview FAQs

How many rounds are there in Zebra Technologies Software Engineer interview?
Zebra Technologies interview process usually has 1-2 rounds. The most common rounds in the Zebra Technologies interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Zebra Technologies Software 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 Zebra Technologies. The most common topics and skills that interviewers at Zebra Technologies expect are Software Engineering, System integration, Java, HTML and Javascript.
What are the top questions asked in Zebra Technologies Software Engineer interview?

Some of the top questions asked at the Zebra Technologies Software Engineer interview -

  1. What is the different between == and equals met...read more
  2. What is a pointer to poin...read more
  3. What are the main principles of the J...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Sundaram Clayton

No Interviews

INTERVIEWS

Binary Semantics

No Interviews

INTERVIEWS

Systech Solutions

No Interviews

INTERVIEWS

Sundaram Clayton

No Interviews

INTERVIEWS

L&T Construction

No Interviews

SALARIES

Sundaram Clayton

INTERVIEWS

Espire Infolabs

No Interviews

INTERVIEWS

Sundaram Clayton

No Interviews

Tell us how to improve this page.

Zebra Technologies Software Engineer Interview Process

based on 4 interviews

Interview experience

3.8
  
Good
View more

Fast track your campus placements

View all
Zebra Technologies Software Engineer Salary
based on 127 salaries
Lock Unlock
₹5 L/yr - ₹16.8 L/yr
25% more than the average Software Engineer Salary in India
View more details

Zebra Technologies Software Engineer Reviews and Ratings

based on 12 reviews

4.1/5

Rating in categories

4.2

Skill development

3.9

Work-life balance

3.9

Salary

4.3

Job security

4.1

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 12 Reviews and Ratings
Software Engineer, Advanced

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Explore more jobs
Software Engineer
127 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
90 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Engineer2
45 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Lead Engineer
44 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Technical Lead
43 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Zebra Technologies with

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent