Upload Button Icon Add office photos
Engaged Employer

i

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

ZET Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ZET Interview Questions and Answers for Experienced

Updated 19 Nov 2024

ZET Interview Experiences for Experienced

Popular Designations

4 interviews found

Brand Manager Interview Questions & Answers

user image Vineet Nair

posted on 22 Aug 2023

Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 2023. 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 - Assignment 

Case study on the Brand

Round 3 - One-on-one 

(1 Question)

  • Q1. Interview to evaluate the technical knowledge

Brand Manager Interview Questions asked at other Companies

Q1. Caselet: Suppose your product team gives you a product which needs to be priced above or equal to 1.1 Lakh. But the customer is ready to pay only 1 lac for the product. How would go about launching the product at that price?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Accounting standards
Round 2 - Assignment 

Excel and accounting

Round 3 - One-on-one 

(1 Question)

  • Q1. Basic accounting

Financial Associate Interview Questions asked at other Companies

Q1. Journal entry for cash sales?
View answer (33)

SDE Interview Questions & Answers

user image Anonymous

posted on 3 Aug 2024

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

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

Round 1 - Coding Test 

General dsa questions

Round 2 - Technical 

(1 Question)

  • Q1. DP, trees, graph

SDE Interview Questions asked at other Companies

Q1. Return Subsets Sum to K Problem Statement Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'. Explanation: A subset of an array 'ARR' is a tuple that can be obtained from 'ARR' by r... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Find the maximum sum of the subarrays in an array.
  • Ans. 

    Find the maximum sum of subarrays in an array.

    • Iterate through the array and keep track of the current sum.

    • If the current sum becomes negative, reset it to 0.

    • Update the maximum sum as you iterate through the array.

    • Return the maximum sum found.

  • Answered by AI
  • Q2. Count of the subarrays with k different integers
  • Ans. 

    The question asks to count the number of subarrays with k different integers in an array.

    • Use a sliding window approach to iterate through the array and keep track of the count of unique integers in the window.

    • Maintain a hashmap to store the frequency of each integer in the window.

    • Increment the count of subarrays whenever the number of unique integers in the window equals k.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be prepared for the fundamentals and easy questions from leetcode

Skills evaluated in this interview

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)

ZET interview questions for popular designations

 Financial Associate

 (2)

 Software Engineer

 (1)

 Data Analyst

 (1)

 Software Development Engineer II

 (1)

 SDE

 (1)

 Brand Manager

 (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Hard que multiple que scattered economics shares average etc

Round 2 - Case Study 

Easy case study question breakeven etc

Round 3 - Case Study 

Moderate case study related to finance sector

Round 4 - Case Study 

Hard case study deep analysis required

Round 5 - HR 

(1 Question)

  • Q1. Behaviour question round by HR easy to moderate
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

The first round was a coding test, which was outsourced to an external vendor. I was asked 2 basic DSA questions, and there was discussions around the time and space complexity, and scope of optimizing the solutions. Post that there were a few questions around Spring Boot features and basic system design. The interviewer was professional throughout the interview, and the interview process felt more like a discussion, as compared to the standard interview process.

Round 2 - Coding Test 

There was another round of coding - this time conducted by the organization itself. It consisted of a medium level DSA question on stacks. I wrote the code on my personal IDE and executed it there itself. The interviewer discussed about the possible edge cases and how I would deal with them. Post solving the question I was asked about my previous projects.

Round 3 - Technical 

(3 Questions)

  • Q1. Discuss in detail about a scenario where a challenging production issue was handled.
  • Q2. What are your responsibilities as a senior / team lead in the current organization?
  • Q3. How did you handle conflicts with junior engineers and reporting managers?
Round 4 - Group Discussion 

This was the final round where the discussion was largely around system design and HLD. It started off with questions are system design patterns and concepts. Then I was asked to design a booking design, with discussions around concurrency control and transaction management.

Interview Preparation Tips

Interview preparation tips for other job seekers - The coding questions were easy-medium, so strong basics is important. Be prepared to talk about previous projects in detail. A good knowledge on system design concepts is a must.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. DP on Stock buy n sell
  • Ans. 

    Implement a dynamic programming solution for stock buy and sell problem.

    • Use dynamic programming to find the maximum profit by buying and selling stocks.

    • Keep track of the minimum stock price seen so far and update the maximum profit accordingly.

    • Consider edge cases like no profit or negative profit.

    • Example: Input [7, 1, 5, 3, 6, 4], Output 5 (buy at 1, sell at 6)

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Interview 

(2 Questions)

  • Q1. Dynamo db working style
  • Ans. 

    DynamoDB is a fully managed NoSQL database service provided by AWS, designed for high performance and scalability.

    • DynamoDB is schema-less, allowing for flexible data models

    • It offers high availability and durability through replication and automatic backups

    • DynamoDB uses primary keys for data retrieval, with optional secondary indexes for querying

    • It supports ACID transactions for consistency and reliability

    • DynamoDB is de...

  • Answered by AI
  • Q2. Function vs method
  • Ans. 

    A function is a standalone block of code that can be called independently, while a method is a function that is associated with a class or object.

    • Functions are standalone blocks of code, while methods are functions associated with classes or objects.

    • Functions can be called independently, while methods are called on specific instances of classes or objects.

    • Functions are defined outside of classes, while methods are defi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview is fine, but they rejected
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. What is your job role
  • Ans. 

    I am responsible for assisting in various tasks and projects within the company.

    • Supporting team members in daily operations

    • Completing assigned tasks in a timely manner

    • Assisting in research and analysis

    • Participating in meetings and discussions

  • Answered by AI
  • Q2. What is the ctc
  • Ans. 

    CTC stands for Cost to Company, which includes all expenses related to an employee's compensation.

    • CTC includes salary, bonuses, benefits, and any other perks provided by the company

    • It is the total amount of money a company spends on an employee in a year

    • CTC is often used to negotiate job offers and understand the full value of a compensation package

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Basic python, sql and pandas questions

Round 2 - Technical 

(2 Questions)

  • Q1. Case study (Probability questions)
  • Q2. Resume projects

ZET Interview FAQs

How many rounds are there in ZET interview for experienced candidates?
ZET interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the ZET interview process for experienced candidates are One-on-one Round, Assignment and Technical.
How to prepare for ZET interview for experienced candidates?
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 ZET. The most common topics and skills that interviewers at ZET expect are Digital Marketing, B2B Sales, Bfsi Sales, Corporate Sales and Marketing.
What are the top questions asked in ZET interview for experienced candidates?

Some of the top questions asked at the ZET interview for experienced candidates -

  1. Find the maximum sum of the subarrays in an arr...read more
  2. Count of the subarrays with k different integ...read more
  3. Was asked to implement swipe functionality like in whatsapp in react nat...read more

Tell us how to improve this page.

ZET Interview Process for Experienced

based on 4 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

CapitalOne Interview Questions
3.7
 • 79 Interviews
Jodo Interview Questions
3.6
 • 23 Interviews
OneCard Interview Questions
3.5
 • 22 Interviews
Credgenics Interview Questions
3.5
 • 18 Interviews
Prosperr.io Interview Questions
3.9
 • 12 Interviews
Oportun Interview Questions
3.5
 • 11 Interviews
PolicyX.com Interview Questions
3.2
 • 10 Interviews
Namaste Credit Interview Questions
3.4
 • 10 Interviews
View all

ZET Reviews and Ratings

based on 21 reviews

2.8/5

Rating in categories

2.7

Skill development

2.6

Work-life balance

2.9

Salary

2.4

Job security

2.7

Company culture

2.4

Promotions

2.6

Work satisfaction

Explore 21 Reviews and Ratings
Software Engineer
10 salaries
unlock blur

₹11.2 L/yr - ₹26 L/yr

Software Developer
5 salaries
unlock blur

₹12.1 L/yr - ₹20 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹18 L/yr - ₹25 L/yr

Data Analyst
4 salaries
unlock blur

₹19 L/yr - ₹24 L/yr

Senior Business Analyst
4 salaries
unlock blur

₹25 L/yr - ₹28 L/yr

Explore more salaries
Compare ZET with

Fino Paytech

3.9
Compare

Wibmo

3.2
Compare

OneCard

3.5
Compare

ROI NET Solution

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