Upload Button Icon Add office photos
Engaged Employer

i

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

Zuno General Insurance Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Zuno General Insurance Interview Questions and Answers

Updated 26 Apr 2025
Popular Designations

7 Interview questions

A Senior Software Engineer was asked 2mo ago
Q. How would you implement Redis caching?
Ans. 

Redis caching improves application performance by storing frequently accessed data in memory for quick retrieval.

  • Data Storage: Use Redis to store key-value pairs, e.g., caching user session data with a key like 'session:12345'.

  • Expiration Policies: Set expiration times for cached data to ensure it remains fresh, e.g., `SETEX user:1000 3600 'John Doe'` for 1 hour.

  • Cache Aside Pattern: Load data into the cache only wh...

View all Senior Software Engineer interview questions
A Full Stack Software Developer was asked 7mo ago
Q. Implement a retry function in Node.js.
Ans. 

Implement a retry function in node.js

  • Create a function that takes a function and number of retries as parameters

  • Use a loop to call the function and handle errors

  • Use setTimeout to delay retries if needed

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked 7mo ago
Q. What are the apply, call, and bind methods?
Ans. 

apply, call, and bind are methods used in JavaScript to manipulate the context of a function.

  • apply() - calls a function with a given 'this' value and arguments provided as an array

  • call() - calls a function with a given 'this' value and arguments provided individually

  • bind() - creates a new function that, when called, has its 'this' keyword set to the provided value

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked 7mo ago
Q. What are Generator Functions in JavaScript?
Ans. 

Generator functions in JS are special functions that can pause and resume their execution, allowing for asynchronous programming.

  • Generator functions are defined using function* syntax.

  • They use the yield keyword to pause execution and return a value.

  • Generators can be iterated over using a for...of loop or by manually calling the next() method on the generator object.

  • They are commonly used for asynchronous programmi...

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked 7mo ago
Q. What are the disadvantages of using indexes in MongoDB?
Ans. 

Indexes in MongoDB can have disadvantages like increased storage space, slower write operations, and potential performance degradation.

  • Indexes can take up additional storage space as they store copies of the indexed fields.

  • Creating and maintaining indexes can slow down write operations, as the indexes need to be updated whenever the data changes.

  • Having too many indexes can lead to performance degradation, as Mongo...

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked 7mo ago
Q. What is Currying?
Ans. 

Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of functions, each taking a single argument.

  • Currying helps in creating reusable functions and improving code readability.

  • It allows partial application of functions, where some arguments are fixed and others are left to be provided later.

  • Example: const add = (a) => (b) => a + b; add(2)(3) will r...

View all Full Stack Software Developer interview questions
A SDE was asked
Q. What is inheritance, Call backs, event loop etc
Ans. 

Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

  • Inheritance allows a class to reuse code from another class, promoting code reusability and reducing redundancy.

  • Subclasses can extend the functionality of the superclass by adding new methods or overriding existing ones.

  • Callbacks are functions that are passed as arguments to other functions ...

View all SDE interview questions
Are these interview questions helpful?

Zuno General Insurance Interview Experiences

4 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(4 Questions)

  • Q1. What are Generator Functions in JS
  • Ans. 

    Generator functions in JS are special functions that can pause and resume their execution, allowing for asynchronous programming.

    • Generator functions are defined using function* syntax.

    • They use the yield keyword to pause execution and return a value.

    • Generators can be iterated over using a for...of loop or by manually calling the next() method on the generator object.

    • They are commonly used for asynchronous programming, a...

  • Answered by AI
  • Q2. What is Currying
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of functions, each taking a single argument.

    • Currying helps in creating reusable functions and improving code readability.

    • It allows partial application of functions, where some arguments are fixed and others are left to be provided later.

    • Example: const add = (a) => (b) => a + b; add(2)(3) will return...

  • Answered by AI
  • Q3. What are apply,call, bind methods
  • Ans. 

    apply, call, and bind are methods used in JavaScript to manipulate the context of a function.

    • apply() - calls a function with a given 'this' value and arguments provided as an array

    • call() - calls a function with a given 'this' value and arguments provided individually

    • bind() - creates a new function that, when called, has its 'this' keyword set to the provided value

  • Answered by AI
  • Q4. Implement a retry function in node.js
  • Ans. 

    Implement a retry function in node.js

    • Create a function that takes a function and number of retries as parameters

    • Use a loop to call the function and handle errors

    • Use setTimeout to delay retries if needed

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Disadvantages of indexes in mongoDb
  • Ans. 

    Indexes in MongoDB can have disadvantages like increased storage space, slower write operations, and potential performance degradation.

    • Indexes can take up additional storage space as they store copies of the indexed fields.

    • Creating and maintaining indexes can slow down write operations, as the indexes need to be updated whenever the data changes.

    • Having too many indexes can lead to performance degradation, as MongoDB ha...

  • Answered by AI

Skills evaluated in this interview

Team Manager Interview Questions & Answers

user image Anonymous

posted on 16 Jun 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How do you manage adversity?
  • Q2. What are your strengths and weaknesses?
  • Ans. 

    I excel in communication and adaptability, but I sometimes struggle with delegation and can be overly detail-oriented.

    • Strength: Strong communication skills - I effectively convey ideas and foster collaboration within my team.

    • Strength: Adaptability - I thrive in dynamic environments, quickly adjusting to new challenges and changes.

    • Weakness: Difficulty with delegation - I tend to take on too much myself, which can lead t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Team Management skills should be good
Domain Knowledge is preferred

SDE Interview Questions & Answers

user image Anonymous

posted on 26 May 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Coding Test 

Coding test was good but interviewer was not satisfied and thinking that i was doing cheating

Round 2 - Not Happened 

(1 Question)

  • Q1. What is inheritance, Call backs, event loop etc
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class, promoting code reusability and reducing redundancy.

    • Subclasses can extend the functionality of the superclass by adding new methods or overriding existing ones.

    • Callbacks are functions that are passed as arguments to other functions and a...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Redis cache implementation
  • Ans. 

    Redis caching improves application performance by storing frequently accessed data in memory for quick retrieval.

    • Data Storage: Use Redis to store key-value pairs, e.g., caching user session data with a key like 'session:12345'.

    • Expiration Policies: Set expiration times for cached data to ensure it remains fresh, e.g., `SETEX user:1000 3600 'John Doe'` for 1 hour.

    • Cache Aside Pattern: Load data into the cache only when ne...

  • Answered by AI
  • Q2. DSA questions and architecture questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Never accept a offer without knowing the culture of the company unless you a desperate for a job

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Zuno General Insurance?
Ask anonymously on communities.

Interview questions from similar companies

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

Interview Questionnaire 

2 Questions

  • Q1. What are the activities that you have performed?
  • Ans. 

    As an Assistant Manager, I have led teams, managed projects, and improved operational efficiency through strategic planning.

    • Led a team of 10 in a project that increased sales by 20% over six months.

    • Implemented a new inventory management system that reduced waste by 15%.

    • Conducted weekly team meetings to enhance communication and address challenges.

    • Developed training programs for new employees, improving onboarding effic...

  • Answered by AI
  • Q2. Some important journal entries

Interview Preparation Tips

Interview preparation tips for other job seekers - I would advice to be more confident on subject amd have a crisp cv which actually shows what you have done in your last company. After walkin, it is your cv which would create an impression of yours because in walkin, it is difficult to remember the candidate. I got call after 1 month and it was all because they liked my cv.
Be confident and practice all what you have done.

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

  • Q1. 

    Count Subsequences Problem Statement

    Given an integer array ARR of size N, your task is to find the total number of subsequences in which all elements are equal.

    Explanation:

    A subsequence of an array i...

  • Ans. 

    Count the total number of subsequences in which all elements are equal in an integer array.

    • Iterate through the array and count the frequency of each element.

    • Calculate the total number of subsequences for each element using the formula (frequency * (frequency + 1) / 2).

    • Sum up the total number of subsequences for all elements and return the result modulo 10^9 + 7.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaNoWipro Limited interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Do practice as much as you can
Tip 2 : Coding is key to crack

Application resume tips for other job seekers

Tip 1 : It should look nice
Tip 2 : Skills should be mentioned properly

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Referral and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How to change the process

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview panel is good but working with manger is not
Are these interview questions helpful?

I applied via Company Website and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. After 5 year in which position you will be

Interview Preparation Tips

Interview preparation tips for other job seekers - You should must improve your communication skills.

You have basic knowledge of your qualifications

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. General knowledge in coding and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Nooooooooooo noooooooooooooooooooooooooooo

I applied via Campus Placement and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Online Type of interview

Zuno General Insurance Interview FAQs

How many rounds are there in Zuno General Insurance interview?
Zuno General Insurance interview process usually has 1-2 rounds. The most common rounds in the Zuno General Insurance interview process are One-on-one Round, Coding Test and Technical.
What are the top questions asked in Zuno General Insurance interview?

Some of the top questions asked at the Zuno General Insurance interview -

  1. What are Generator Functions in...read more
  2. What is inheritance, Call backs, event loop ...read more
  3. What are apply,call, bind meth...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.4/5

based on 5 interview experiences

Difficulty level

Moderate 75%
Hard 25%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
View all

Zuno General Insurance Reviews and Ratings

based on 90 reviews

3.8/5

Rating in categories

3.5

Skill development

3.9

Work-life balance

3.6

Salary

3.7

Job security

3.6

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 90 Reviews and Ratings
Relationship Manager
25 salaries
unlock blur

₹3.7 L/yr - ₹6.1 L/yr

Deputy Manager
7 salaries
unlock blur

₹7 L/yr - ₹13.6 L/yr

Operations Executive
7 salaries
unlock blur

₹2.5 L/yr - ₹3.5 L/yr

Area Sales Manager
7 salaries
unlock blur

₹8.2 L/yr - ₹18.4 L/yr

Software Developer
5 salaries
unlock blur

₹5 L/yr - ₹8.5 L/yr

Explore more salaries
Compare Zuno General Insurance with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview