Upload Button Icon Add office photos
Premium Employer

i

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

Zuci Systems

Compare button icon Compare button icon Compare
4.3

based on 29 Reviews

Filter interviews by

Zuci Systems Senior Software Engineer Interview Questions and Answers

Updated 25 Jul 2024

Zuci Systems Senior Software Engineer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. .Net + Azure questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I have mixed interview experience with Zuci.

1 Initial Screening
2 Technical
1 Technical + Manager
1 HR + Manager

Next day I got email, profile not suitable (Happy + Dissatisfied it was so quick). Then they should have stopped interview process in middle, if candidate it not suitable.

With these many rounds and giving more confidence to the candidate and rejecting after final round immediately is not good.

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. 3 sum coding problem
  • Q2. System design and projects
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic to medium questions related to DotNet Core MVC, SQL Server, etc
Round 2 - Technical 

(1 Question)

  • Q1. Completely unprofessional behavior of the interviewer. - No Introduction Direct start asking questions. - Asking too many misleading questions (First ask what you worked on, then ask did you heard about th...
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Duration was 1 hour, Topics covered were DSA, Concurrency in golang, Databse questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep learing DSA everyday and Master tthe most important topics in your programming language
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About the project. and asked what i did in project. how to create schema in pyspark. what is ADE. what are the difficulties i faced in project. what is spark submit command how we write sparksubmit command...
  • Q2. No of occurrences of letter in a string.
  • Ans. 

    Count occurrences of a letter in a string.

    • Iterate through each character in the string and count occurrences of the specified letter.

    • Use a hashmap to store the count of each letter.

    • Handle both uppercase and lowercase letters to ensure accurate counting.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

There was mcq test with 1 sql code based question.

Round 2 - Technical 

(5 Questions)

  • Q1. It was technical interview of around 30 min, questions were direct and short on react lifecycle and basic concepts of js.
  • Q2. What is debounce and throttling?
  • Ans. 

    Debounce and throttling are techniques used in web development to limit the number of times a function is called.

    • Debounce delays the execution of a function until after a specified time period has elapsed without additional calls.

    • Throttling limits the rate at which a function is called, ensuring it is not called more than once within a specified time interval.

    • Debounce is useful for handling events like resizing a windo...

  • Answered by AI
  • Q3. What is diff between git merge and rebase?
  • Ans. 

    Git merge combines changes from different branches, while rebase moves the current branch to the tip of another branch.

    • Merge creates a new commit with combined changes, while rebase rewrites commit history.

    • Merge preserves the commit history of both branches, while rebase creates a linear history.

    • Merge is non-destructive and suitable for public branches, while rebase is destructive and should be used for private branche...

  • Answered by AI
  • Q4. What is diff between git fork and clone?
  • Ans. 

    Git fork creates a copy of a repository under your GitHub account, while git clone creates a local copy of a repository.

    • Fork creates a copy on GitHub, clone creates a local copy on your machine

    • Forking allows you to make changes without affecting the original repository

    • Cloning downloads the entire repository to your local machine

    • Forking is commonly used for contributing to open source projects

  • Answered by AI
  • Q5. What is DOM in react?
  • Ans. 

    DOM in React stands for Document Object Model, representing the structure of a web page as a tree of objects.

    • DOM in React is a virtual representation of the actual HTML elements on a web page.

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

    • Changes to the virtual DOM are compared with the real DOM, and only the differences are updated.

    • This helps in minimizing the number of DOM m...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. It was based on round 2 but in detail.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Sep 2023. There were 4 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 - Technical 

(2 Questions)

  • Q1. Write code based on situation with proper implementation using Design patterns etc.
  • Ans. 

    Implement a code scenario using design patterns

    • Identify the problem statement and requirements

    • Choose appropriate design patterns like Singleton, Factory, Observer, etc.

    • Implement the code following the selected design patterns

    • Test the code for functionality and efficiency

  • Answered by AI
  • Q2. Coding question in which you need to write optimize program.
Round 3 - Technical 

(2 Questions)

  • Q1. Linked list Coding questions
  • Q2. Design a database scheme of one of the known website.
  • Ans. 

    Design a database scheme for Amazon website

    • Create tables for users, products, orders, reviews, and payments

    • Use primary and foreign keys to establish relationships between tables

    • Include attributes such as user_id, product_id, order_id, review_id, and payment_id

    • Implement indexes for faster data retrieval

    • Consider denormalization for performance optimization

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Coding questions and some design questions. I got the offer within few days.

Skills evaluated in this interview

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 Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. SQL query to join 3 tables
  • Ans. 

    Use SQL JOIN to combine data from 3 tables based on a common key.

    • Use INNER JOIN, LEFT JOIN, or RIGHT JOIN depending on the desired result

    • Specify the columns to select from each table

    • Use ON clause to specify the join condition

  • Answered by AI
  • Q2. Spring boot annotations
  • Q3. Hibernate annotations
  • Q4. Java 8 Streams + Lambda
Round 2 - One-on-one 

(3 Questions)

  • Q1. Working style: Independent contributor or Team
  • Q2. Are green-field projects alright?
  • Ans. 

    Green-field projects are great opportunities to start fresh and implement new technologies.

    • Green-field projects allow for creative freedom and innovation

    • They provide the opportunity to work with the latest technologies and tools

    • Starting from scratch can lead to cleaner code and better architecture

    • Examples: Developing a new mobile app, creating a new website from scratch

  • Answered by AI
  • Q3. Are you ok with learning new tech stacks?

Interview Preparation Tips

Topics to prepare for Revature Senior Software Engineer interview:
  • Java
  • Spring Framework
  • Hibernate
  • Angular
  • Data Structures

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Sql question, joins , store procedure
  • Q2. Mvc question, mvc frame work

Interview Preparation Tips

Interview preparation tips for other job seekers - Never join this company , that is my experience , they will give you resignation in 10 days without telling the proper reason , in this case it was team lead saurav , he had all planned me not gain entry to office on 10th day . i waited for 2 hours outside office then no one came so i left , also you sign bond for 2 years minimum, in my it was not applicable because i was experience
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Group Discussion 

Group discussion is very important thing.

Round 3 - HR 

(5 Questions)

  • Q1. HR round is very easy.
  • Q2. Just hard and smart work for.
  • Q3. What is requirement.
  • Ans. 

    A requirement is a specific need or expectation that must be met in order to achieve a desired outcome.

    • A requirement is a statement of what a product or service must do or how it must perform.

    • Requirements can be functional (what the product must do) or non-functional (how well it must do it).

    • Requirements should be clear, concise, and measurable.

    • Examples of requirements include: the ability to save and retrieve data, a ...

  • Answered by AI
  • Q4. What is your strength.
  • Ans. 

    My strength is problem-solving and analytical thinking.

    • I have a strong ability to analyze complex problems and break them down into manageable components.

    • I excel at finding innovative solutions and thinking outside the box.

    • I am skilled in debugging and troubleshooting software issues.

    • I have a solid understanding of algorithms and data structures.

    • I am experienced in optimizing code for performance and efficiency.

  • Answered by AI
  • Q5. What is your weekness.
  • Ans. 

    My weakness is that I tend to be too detail-oriented, which can sometimes slow down my progress.

    • I have a tendency to get caught up in the small details and can spend too much time on them.

    • I often find myself double-checking my work to ensure accuracy.

    • I sometimes struggle with prioritizing tasks because I want to make sure everything is perfect.

    • I am actively working on improving my time management skills to balance atte

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard keep patience. Everything is Possible so just you can do it.

Zuci Systems Interview FAQs

How many rounds are there in Zuci Systems Senior Software Engineer interview?
Zuci Systems interview process usually has 1 rounds. The most common rounds in the Zuci Systems interview process are Technical.
How to prepare for Zuci Systems Senior 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 Zuci Systems. The most common topics and skills that interviewers at Zuci Systems expect are CRM, IT Services, Java, SAN and Angular.

Tell us how to improve this page.

Zuci Systems Senior Software Engineer Salary
based on 49 salaries
₹5.2 L/yr - ₹18 L/yr
23% less than the average Senior Software Engineer Salary in India
View more details

Zuci Systems Senior Software Engineer Reviews and Ratings

based on 6 reviews

3.4/5

Rating in categories

3.0

Skill development

4.0

Work-Life balance

4.2

Salary & Benefits

4.0

Job Security

3.7

Company culture

4.2

Promotions/Appraisal

3.1

Work Satisfaction

Explore 6 Reviews and Ratings
Senior Software Engineer
49 salaries
unlock blur

₹5.2 L/yr - ₹18 L/yr

Software Engineer
35 salaries
unlock blur

₹3.5 L/yr - ₹11 L/yr

Module Lead
19 salaries
unlock blur

₹13 L/yr - ₹18.6 L/yr

Software Developer
17 salaries
unlock blur

₹3.3 L/yr - ₹17.5 L/yr

Technical Lead
14 salaries
unlock blur

₹20 L/yr - ₹33.5 L/yr

Explore more salaries
Compare Zuci Systems 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