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

Filter interviews by

Zuci Systems Software Engineer Interview Questions and Answers

Updated 6 Sep 2024

Zuci Systems Software Engineer Interview Experiences

2 interviews found

Software Engineer Interview Questions & Answers

user image Sindhuja Sivakumar

posted on 6 Sep 2024

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

It was held in my college

Round 2 - Technical 

(2 Questions)

  • Q1. Data types of python
  • Ans. 

    Python has several built-in data types including int, float, str, list, tuple, dict, set, and bool.

    • int: whole numbers, e.g. 5

    • float: decimal numbers, e.g. 3.14

    • str: text, e.g. 'hello'

    • list: ordered collection, e.g. [1, 2, 3]

    • tuple: immutable collection, e.g. (1, 2, 3)

    • dict: key-value pairs, e.g. {'key': 'value'}

    • set: unordered collection of unique elements, e.g. {1, 2, 3}

    • bool: True or False values

  • Answered by AI
  • Q2. D/b some data types
Round 3 - Coding Test 

Pen and paper coding and sql

Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

    • Experienced in developing web applications using technologies such as HTML, CSS, JavaScript, and React

    • Strong background in computer science with knowledge of data structures and algorithms

    • Proficient in programming languages such as Java, Python, and C++

    • Familiar with Agile development methodolog

  • Answered by AI
  • Q2. Ok with relocate
  • Ans. 

    Open to relocation for the right opportunity

    • I am open to relocating for the right job opportunity

    • I have relocated in the past for work

    • I am willing to consider relocation if necessary

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Singleton class

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was very bad. That Interviewer had one call in between Interview so she finished Interview soon and gave feedback as negative.
My advice is better don't do any Interviews you guys only do all the work . Don't waste others time.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

I applied via Referral and was interviewed before Dec 2021. There were 5 interview rounds.

Round 1 - Aptitude Test 

20 basic coding and non coding mcq with 60 min time.

Round 2 - Coding Test 

5 basic coding problems with 60 min time based on arrays string and numbers.

Round 3 - Technical 

(1 Question)

  • Q1. 1St Technical Interview 3 coding problems 1) leap Year 2)binary to decimal 3)prime number
Round 4 - Technical 

(1 Question)

  • Q1. 2nd Technical Interview 1)input: "Raja Software Labs" output: "Raja%20Software%20Labs" 2) find contigious subarray with max sum
Round 5 - Technical 

(1 Question)

  • Q1. 3rd Technical Interview did not qualify for this round

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice questions on array, numbers and string.
explain logic before coding
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Oct 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 - Coding Test 

Simple array and string based questions were asked in the coding round

Round 3 - One-on-one 

(1 Question)

  • Q1. Questions were like - find first non repeating character in string, find max consecutive duplicate elements in an array

Interview Preparation Tips

Interview preparation tips for other job seekers - They only ask coding questions mainly on array and strings to freshers.

I applied via Job Portal and was interviewed in Mar 2022. There were 6 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 - Coding Test 

It's totally based on your basic coding skills. Have basics ques about coding and have some problems to solve.

Round 3 - Technical 

(1 Question)

  • Q1. Problems with Array and String and need to solve the question on notepad. You can use any languages but need to describe the code which you will write.
Round 4 - Technical 

(1 Question)

  • Q1. DSA Problems, coding round.
Round 5 - Technical 

(1 Question)

  • Q1. DSA problems. need to solve and describe the approach.
Round 6 - Technical 

(1 Question)

  • Q1. DSA problems, coding round. Check glassdoor for the questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - - Need basics of DSA concepts clear
- You can use any languages Java, Python, C++, Kotlin or any?
-

I applied via Campus Placement and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Total question where 20 and it include all the topics of aptitude and some coding solution

Round 2 - Coding Test 

It contain 5 question of question where doc file is send and we have to write a answer to that document file

Interview Preparation Tips

Interview preparation tips for other job seekers - practice basic DSA and some string and list manipulation questions

I applied via Recruitment Consulltant and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Some Questions are based on programming and some are aptitude questions.

Round 2 - Coding Test 

This is coding round here 5 coding questions is there?

Round 3 - One-on-one 

(3 Questions)

  • Q1. Find first non repeated character in string?
  • Ans. 

    Find the first non-repeated character in a string.

    • Iterate through the string and count the frequency of each character.

    • Return the first character with a count of 1.

  • Answered by AI
  • Q2. We have given a integer array then find the second maximum difference ?
  • Ans. 

    Find the second maximum difference in an integer array.

    • Sort the array in descending order

    • Calculate the difference between adjacent elements

    • Return the second maximum difference

  • Answered by AI
  • Q3. We have given a integer find the sum of all digits.
  • Ans. 

    Given an integer, find the sum of all its digits.

    • Convert the integer to a string and iterate over each character to get the sum.

    • Use modulo operator to get the last digit and add it to the sum, then divide by 10 to remove the last digit.

    • Recursively call the function with the integer divided by 10 and add the remainder to the sum.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You can brush up your basic concepts of Array and string these things is helping a lot in that interviews.

Skills evaluated in this interview

Round 1 - Aptitude Test 

Basic technical que on java c++

Round 2 - Coding Test 

Google docs paltform
5 coding ques

Round 3 - Technical 

(1 Question)

  • Q1. Ques on my resume two coding ques

Interview Preparation Tips

Interview preparation tips for other job seekers - be clear with the basics of c++ java and dsa

I applied via Company Website and was interviewed in Feb 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Coding Test 
Round 3 - Coding Test 

Java

Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a software engineer with experience in developing and maintaining software applications.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on various projects using different programming languages such as Java, C++, and Python.

    • I am skilled in software development methodologies like Agile and have experience with version control systems like Git.

    • I have strong problem-solving and analytical skills, which h...

  • Answered by AI
  • Q2. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving, attention to detail, and teamwork. My weaknesses include time management and public speaking.

    • Strengths: problem-solving, attention to detail, teamwork

    • Weaknesses: time management, public speaking

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best for your interview
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

5 questions written coding test
Basic question on string and array manipulation

Round 2 - Technical 

(1 Question)

  • Q1. 2nd smallest number
  • Ans. 

    Find the 2nd smallest number in an array of integers.

    • Sort the array in ascending order

    • Return the second element in the sorted array

  • Answered by AI

Zuci Systems Interview FAQs

How many rounds are there in Zuci Systems Software Engineer interview?
Zuci Systems interview process usually has 4 rounds. The most common rounds in the Zuci Systems interview process are Technical, Coding Test and HR.
How to prepare for Zuci Systems 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, Data Modeling, HTML, IT Services and J2Ee.
What are the top questions asked in Zuci Systems Software Engineer interview?

Some of the top questions asked at the Zuci Systems Software Engineer interview -

  1. data types of pyt...read more
  2. ok with reloc...read more
  3. Singleton cl...read more

Tell us how to improve this page.

Zuci Systems Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Join Zuci Systems A digital transformation enabler.
Zuci Systems Software Engineer Salary
based on 35 salaries
₹4 L/yr - ₹11 L/yr
13% less than the average Software Engineer Salary in India
View more details

Zuci Systems Software Engineer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

3.9

Job security

5.0

Company culture

4.1

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
48 salaries
unlock blur

₹5.2 L/yr - ₹18 L/yr

Software Engineer
35 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Module Lead
20 salaries
unlock blur

₹13 L/yr - ₹19 L/yr

Technical Lead
18 salaries
unlock blur

₹22 L/yr - ₹30 L/yr

Software Developer
17 salaries
unlock blur

₹3.3 L/yr - ₹17.5 L/yr

Explore more salaries
Compare Zuci Systems with

Medcode

4.5
Compare

Maxgen Technologies

4.5
Compare

Cyfuture

3.0
Compare

Value Point Systems

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