Upload Button Icon Add office photos

Filter interviews by

Zuru Tech Interview Questions and Answers

Updated 7 May 2024

Zuru Tech Interview Experiences

Popular Designations

7 interviews found

I applied via Referral and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Assignment 

Subject related mathemitcal problem.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basics of favourite subject related questions
  • Q2. Seismic analysis, software like staad etab..design..detailing etc

Interview Preparation Tips

Topics to prepare for Zuru Tech QA/QC Civil Engineer interview:
  • Design Engineering
Interview preparation tips for other job seekers - Don't worry interviewer are very much gentle and polite behaviour..so do your best ...

QA/QC Civil Engineer Interview Questions asked at other Companies

Q1. What to do when any building material come at site, and their testing.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basics of ReactJs
  • Q2. Basics of Js & about your projects.
  • Q3. Some sort of CSS question.
Round 2 - Technical 

(2 Questions)

  • Q1. Advance Concept of ReactJs
  • Ans. 

    ReactJs is a JavaScript library for building user interfaces.

    • React uses a virtual DOM to improve performance by updating only the necessary components.

    • Components in React are reusable and can be composed together to build complex UIs.

    • React allows for declarative programming, making it easier to understand and maintain code.

    • State management in React can be handled using hooks or external libraries like Redux.

    • React Route...

  • Answered by AI
  • Q2. Hoc, Error Boundries, Suspense and more about optimization

Interview Preparation Tips

Topics to prepare for Zuru Tech Senior Software Engineer interview:
  • React.Js
  • Javascript
  • CSS
  • Redux

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is oops? what is c++?
  • Ans. 

    OOPs stands for Object-Oriented Programming. C++ is a programming language that supports OOP principles.

    • OOPs is a programming paradigm based on the concept of 'objects', which can contain data in the form of fields (attributes or properties) and code in the form of procedures (methods or functions).

    • C++ is a high-level programming language developed by Bjarne Stroustrup. It is an extension of the C programming language ...

  • Answered by AI

Skills evaluated in this interview

Associate Consultant Interview Questions asked at other Companies

Q1. There are 2 cricket teams, A and B, with 11 players each. If every player of team A shakes hands with every player of team B(once), what will be the total number of handshakes?
View answer (15)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. WHAT DO YOU KNOW ABOUT OUR COMPANY?

Internship Trainee Interview Questions asked at other Companies

Q1. Tell about your UG project? How will you design a table for 1 tonne load and what are all the consideration needed for it? Tell the Equations you know in strength of Materials? What are manufacturing processes involved to fabricate ball bea... read more
View answer (2)

Zuru Tech interview questions for popular designations

 C Developer

 (1)

 QA/QC Civil Engineer

 (1)

 Internship Trainee

 (1)

 Software Engineer

 (1)

 Senior Software Engineer

 (1)

 Associate Consultant

 (1)

 Junior Engineer

 (1)

C Developer Interview Questions & Answers

user image Anonymous

posted on 7 Jul 2022

I applied via Company Website and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Questions on Multi threading, smart pointer application
DSA questions, OO polymorphism, and its types, ad hoc, etc.

Round 2 - Assignment 

Was a assignment round.

Interview Preparation Tips

Interview preparation tips for other job seekers - questions based on resume and software skills, code readability and maintainability, and skill-based questions were asked.

C Developer Interview Questions asked at other Companies

Q1. String Transformation Problem Given a string (STR) of length N, you are tasked to create a new string through the following method: Select the smallest character from the first K characters of STR, remove it from STR, and append it to the n... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed before Aug 2022. There were 3 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 

Very easy, just do basics you can easily crack it.

Round 3 - Technical 

(1 Question)

  • Q1. Questions on string manipulation, questions on sql queries and question related your project.

Junior Engineer Interview Questions asked at other Companies

Q1. What is the main role of Junior engineer in Electrical maintenance and How to provide the company facilities ?
View answer (25)

I applied via Naukri.com and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. C++ basic and advance level Coordinate Geometry Git repository

Interview Preparation Tips

Interview preparation tips for other job seekers - They are looking for your hands on experience. Just brush up your knowledge. Best of luck 👍

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (220)

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself
  • Q2. Why IT
  • Q3. About my project
  • Q4. Few mechanical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - General questions

I applied via Referral and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Related to work profile
  • Q2. Related to interests

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, go well groomed

Zuru Tech Interview FAQs

How many rounds are there in Zuru Tech interview?
Zuru Tech interview process usually has 1-2 rounds. The most common rounds in the Zuru Tech interview process are Technical, Assignment and One-on-one Round.
How to prepare for Zuru Tech 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 Zuru Tech. The most common topics and skills that interviewers at Zuru Tech expect are Medical Insurance, Fabrication, Bim, C++ and Continuous Improvement.
What are the top questions asked in Zuru Tech interview?

Some of the top questions asked at the Zuru Tech interview -

  1. Advance Concept of Reac...read more
  2. what is oops? what is c...read more
  3. Hoc, Error Boundries, Suspense and more about optimizat...read more

Tell us how to improve this page.

Zuru Tech Interview Process

based on 6 interviews

Interview experience

4.8
  
Excellent
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 141 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
Appsierra Interview Questions
4.4
 • 31 Interviews
Han Digital Interview Questions
2.4
 • 26 Interviews
View all

Zuru Tech Reviews and Ratings

based on 33 reviews

3.9/5

Rating in categories

3.7

Skill development

4.1

Work-life balance

3.9

Salary

3.8

Job security

4.2

Company culture

3.6

Promotions

4.0

Work satisfaction

Explore 33 Reviews and Ratings
Junior Software Engineer
11 salaries
unlock blur

₹2 L/yr - ₹8 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹8 L/yr - ₹25 L/yr

HR Executive
7 salaries
unlock blur

₹2.4 L/yr - ₹5.2 L/yr

Software Engineer
5 salaries
unlock blur

₹6 L/yr - ₹23.5 L/yr

Software Developer
5 salaries
unlock blur

₹5.4 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Zuru Tech with

HCL Infosystems

3.9
Compare

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Diverse Lynx

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