Upload Button Icon Add office photos

Filter interviews by

Zumi Solutions Interview Questions and Answers

Updated 15 Jun 2024

Zumi Solutions Interview Experiences

1 interview found

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

I was interviewed in Jun 2022.

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 - Technical 

(2 Questions)

  • Q1. Write a C program to arrange the elements in ascending order.
  • Ans. 

    C program to arrange elements in ascending order

    • Use bubble sort algorithm to compare adjacent elements and swap if necessary

    • Iterate through the array multiple times until no more swaps are needed

    • Ensure proper error handling for input validation

    • Example: int arr[] = {4, 2, 7, 1, 5};

  • Answered by AI
  • Q2. Write a C program to add two elements without using third variable.
  • Ans. 

    Add two elements without using a third variable in C program.

    • Use bitwise XOR operation to add two elements without carry

    • Store the result in one of the variables

    • Example: int a = 5, b = 3; a = a ^ b; b = a ^ b; a = a ^ b; // a=3, b=5

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectation.
  • Q2. Comfortable with the bond period or not?

Skills evaluated in this interview

Embedded Software Engineer Interview Questions asked at other Companies

Q1. 3. 1)Do you know about Autosar. 2)define function definition and function declaration. 3)difference between structure and union. 4) define Enumeration 5)what is microcontroller and microprocessor and its applications 6)where we uses in real... read more
View answer (1)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via campus placement at Institute of Cost and Works Accountants of India (ICWAI) and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Online assessment (Technical, English, Reasoning)

Round 2 - Technical 

(6 Questions)

  • Q1. Difference between Balance sheet and trial balance
  • Q2. Standard costing formula
  • Q3. Journal entries for Prepaid Accruals Depreciation with accumulated depreciation concept Provision for Bad debts DTA and DTL
  • Q4. Case study on Ind AS 115
  • Q5. Preparation of balance sheet and computation of various ratios
  • Q6. Accounting principles
Round 3 - Technical 

(6 Questions)

  • Q1. What is DTA and DTL
  • Q2. Accounting entry for accumulated depreciation
  • Q3. Few resume based questions
  • Q4. Standard costing formula
  • Q5. Difference between budgeting and forecasting
  • Q6. Meaning of variance analysis

Interview Preparation Tips

Interview preparation tips for other job seekers - It was an on campus recruitment. (CMA Campus Placements)
First technical interview was for 45 - 50 mins
Second technical interview was for 20 mins
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(16 Questions)

  • Q1. What are custom hooks in React, and what are their use cases? Additionally, can you provide an example of a custom hook that performs an API call and utilizes the retrieved data?
  • Q2. What is the difference between useMemo and useCallback in React?
  • Q3. What is the difference between class-based components and functional components in React?
  • Q4. How can you implement the lifecycle of a React component in a functional component?
  • Q5. What are the various state management techniques available in React?
  • Q6. What is the architecture of Redux, and what purposes do middlewares serve within it?
  • Q7. What is hoisting in JavaScript?
  • Q8. What is event bubbling in JavaScript?
  • Q9. What are block scope and function scope in JavaScript?
  • Q10. Have you had experience working with semantic tags in HTML?
  • Q11. What are the various methods for creating an object in JavaScript?
  • Q12. What are the differences between shallow copy and deep copy in JavaScript?
  • Q13. What will be the output of the following JavaScript code fragment: `const a; function test() { console.log(a); }; test();`?
  • Q14. How can you use CSS to arrange elements in a row and column layout?
  • Q15. Have you utilized CSS preprocessors, and if so, which ones?
  • Q16. If I have assigned different colors to an ID and a class and applied both to the same element, which color will be applied based on CSS specificity precedence?

Interview Preparation Tips

Topics to prepare for Cognizant Senior Software Engineer interview:
  • Javascript
  • React.Js
  • HTML
  • CSS
Interview preparation tips for other job seekers - Possessing a deep understanding of JavaScript and React is essential. Interviewers may engage in mind games with candidates; therefore, we should remain calm and focused solely on the questions. Additionally, we need to be confident in our answers; otherwise, they may respond with doubt, asking, "Is that so?"
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at J S S Academy of Technical Education, Bangalore and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Average to easy difficulty level.

Round 2 - Technical 

(3 Questions)

  • Q1. Java code of string manipulation
  • Q2. What is the Java code for various types of sorting algorithms?
  • Q3. Sql query and topics related to joins.
Round 3 - HR 

(4 Questions)

  • Q1. About yourself and family
  • Q2. What do you know about the company?
  • Q3. Can you provide examples of real-life scenarios where you handled conflicts with either a colleague or a manager?
  • Q4. What actions would you take if your manager does not approve your product idea, and how would you attempt to persuade them?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident; they will strive to comfort you despite any feelings of hesitation and nervousness. A foundational understanding of Java or C++, along with knowledge of data structures and algorithms (DSA), will be extremely advantageous. You should illustrate your potential contributions while also recognizing your limitations. Foster a positive atmosphere.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Two coding questions related to matrices and heaps.

Round 2 - Technical 

(1 Question)

  • Q1. Python and SQL coding
Round 3 - Technical 

(1 Question)

  • Q1. Same questions like tech 1
Round 4 - HR 

(2 Questions)

  • Q1. Self intro , why tiger
  • Q2. Relocation

Interview Preparation Tips

Topics to prepare for Tiger Analytics Data Analyst interview:
  • Python
  • SQL
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the Singleton pattern ? in how many ways can this pattern be broken ?
  • Ans. 

    Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Singleton pattern can be implemented by making the constructor private and providing a static method to access the instance.

    • The pattern can be broken by using reflection to access the private constructor and create multiple instances.

    • Another way to break the Singleton pattern is by using multiple class loaders in Java.

    • Th...

  • Answered by AI
  • Q2. What is the internal implementation of hashmap? Let's assume that you want to store duplicate keys in the hashmap, how can we achieve the same in hashmap ?
  • Ans. 

    HashMap internally uses an array of linked lists to store key-value pairs. To store duplicate keys, we can use a custom implementation of HashMap.

    • HashMap internally uses an array of linked lists to handle collisions.

    • To store duplicate keys, we can create a custom HashMap implementation that allows multiple values for the same key.

    • One approach is to use a HashMap with values as lists, where each key can have multiple va

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What microservices patterns are you aware ? let's assume that there is a microservice based architecture and service A is calling service B which in turn service C. If service b fails, how will you manage ...
  • Ans. 

    Use compensating transactions and distributed tracing for managing transaction and logging in case of service B failure.

    • Implement compensating transactions to rollback changes made by service B in case of failure.

    • Use distributed tracing to track the flow of requests and identify where the failure occurred.

    • Implement retry mechanisms to handle transient failures in service B.

    • Use circuit breakers to prevent cascading fail...

  • Answered by AI
  • Q2. System Design question : Design a booking wesite for.eg: bookin.com ?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The Aptitude Test session accesses mathematical and logical reasoning abilities

Round 2 - Technical 

(6 Questions)

  • Q1. What is Vlookup
  • Q2. Some IF else Question in Excel
  • Q3. What does your day in your previous organization look like?
  • Q4. Could you share the technical skills you possess?
  • Q5. Can you explain what a Pivot Table is?
  • Q6. Find the Highest-paid employee in each department along with their salary and department name.

Interview Preparation Tips

Topics to prepare for Nagarro Data Analyst interview:
  • SQL
  • Excel
  • Problem Solving
  • PowerBI
  • SQL Queries
Interview preparation tips for other job seekers - Practice common interviews and scenarios, especially for your role.
Be prepared to discuss past challenges and how did you overcome.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(5 Questions)

  • Q1. HTML, CSS fundamentals
  • Q2. Javascript event loop and array methods
  • Q3. Javascript coding for operation on object array
  • Q4. React benefits and Redux implementations
  • Q5. How to create slice and combine reducers
Round 2 - Behavioral 

(2 Questions)

  • Q1. Questions based on projects, role, responsibilities and initiative at work place
  • Q2. How to create and optimize a react application
Round 3 - HR 

(1 Question)

  • Q1. Day to day activity of workplace and salary negotiation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Medium-level aptitude questions were included, along with two coding questions.

Round 2 - One-on-one 

(3 Questions)

  • Q1. Can you introduce yourself?
  • Q2. What is your educational background?
  • Q3. Academic projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be simple and friendly. Make sure about what to say in the process.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Fundamentals of Data Structures and Algorithms, including SQL.

Round 2 - Technical 

(2 Questions)

  • Q1. Basics of DSA and Algo and sql
  • Q2. Basics
Round 3 - Technical 

(2 Questions)

  • Q1. Details on previus project
  • Q2. B
Round 4 - HR 

(1 Question)

  • Q1. Basics of DSA and algo ..sql

Zumi Solutions Interview FAQs

How many rounds are there in Zumi Solutions interview?
Zumi Solutions interview process usually has 3 rounds. The most common rounds in the Zumi Solutions interview process are Resume Shortlist, Technical and HR.
How to prepare for Zumi Solutions 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 Zumi Solutions. The most common topics and skills that interviewers at Zumi Solutions expect are Application Development, C++, Debugging, Embedded Software and Linux.
What are the top questions asked in Zumi Solutions interview?

Some of the top questions asked at the Zumi Solutions interview -

  1. Write a C program to arrange the elements in ascending ord...read more
  2. Write a C program to add two elements without using third variab...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 784 Interviews
View all

Zumi Solutions Reviews and Ratings

based on 13 reviews

3.2/5

Rating in categories

3.6

Skill development

2.8

Work-Life balance

2.7

Salary & Benefits

3.0

Job Security

2.1

Company culture

2.8

Promotions/Appraisal

2.9

Work Satisfaction

Explore 13 Reviews and Ratings
Embedded Software Engineer
42 salaries
unlock blur

₹1.8 L/yr - ₹8 L/yr

Software Engineer
7 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Android App Developer
7 salaries
unlock blur

₹2.4 L/yr - ₹9.6 L/yr

Embedded Software Developer
5 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Software Developer
4 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Explore more salaries
Compare Zumi Solutions with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview