Upload Button Icon Add office photos
Engaged Employer

i

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

Zycus Infotech Verified Tick

Compare button icon Compare button icon Compare
3.0

based on 421 Reviews

Filter interviews by

Zycus Infotech Interview Questions, Process, and Tips

Updated 17 Jan 2025

Top Zycus Infotech Interview Questions and Answers

View all 25 questions

Zycus Infotech Interview Experiences

Popular Designations

67 interviews found

Round 1 - Technical 

(1 Question)

  • Q1. Java8 basics, Springboot, and project details

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepare with Java basics, coding round

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company 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 - Case Study 

Given two problem statements based on OCR and NLP application

Round 3 - Technical 

(1 Question)

  • Q1. Main focus is on OCR technologies and how they work. NLP is secondary

Machine Learning Engineer Interview Questions asked at other Companies

Q1. Subset Sum Equal To KYou are given an array/list ‘ARR’ of ‘N’ positive integers and an integer ‘K’. Your task is to check if there exists a subset in ‘ARR’ with a sum equal to ‘K’. Note: Return true if there exists a subset with sum equal t... read more
View answer (3)

I applied via Naukri.com and was interviewed in Aug 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Interview was conducted by Product manager :Questions on springboot annotation ,micro service and its components , Scenario based questions on Transaction manager JPA and hibernate ,program logic to read...
  • Q2. Project based question

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was mostly focus on spring boot and micro service along with transaction management , not much questions on core java, explain your project very well

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via campus placement at Jaypee Institute of Information Technology, Noida and was interviewed before Mar 2022. There were 5 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 - Aptitude Test 

Aptitude test was of medium level, person with little practice can crack it

Round 3 - Group Discussion 

Random topics will be assigned and you are allowed to speak for or against the topic for duration of 1-2min

Round 4 - Case Study 

Case Study on Starbucks success in Indian market

Round 5 - One-on-one 

(2 Questions)

  • Q1. Puzzles, project related experience
  • Q2. SQL Code and HR Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on improving communication skills and anlysis of data in the case study round

Associate Business Analyst Interview Questions asked at other Companies

Q1. problem identification - how to reduce per delivery cost from Rs. 75 (hypothetical value).
View answer (1)

Zycus Infotech interview questions for popular designations

 Business Development Associate

 (6)

 Software Engineer

 (6)

 Machine Learning Engineer

 (4)

 Senior Software Engineer

 (3)

 Software Developer

 (3)

 Software Engineer Trainee

 (3)

 Associate Product Manager

 (2)

 Associate Software Engineer

 (2)

I applied via Campus Placement and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Case Study 

General case solving questions

Round 3 - HR 

(8 Questions)

  • Q1. Share details of your previous job.
  • Q2. What are your salary expectations?
  • Q3. What is your family background?
  • Q4. Tell me about yourself.
  • Q5. What are your strengths and weaknesses?
  • Q6. Where do you see yourself in 5 years?
  • Q7. Why are you looking for a change?
  • Q8. Why should we hire you?

Interview Preparation Tips

Topics to prepare for Zycus Infotech Business Associate interview:
  • Marketing
Interview preparation tips for other job seekers - Study about the company, pay attentions to the ppt they share before the interview. Know a few marketing terms that can be used while solving the case study

Business Associate Interview Questions asked at other Companies

Q1. What is the benefits of insurance?
View answer (2)

Get interview-ready with Top Zycus Infotech Interview Questions

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Aug 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Aptitude test will given in hacker rank Followed by 2 coding rounds .
2 technical rounds + Managerial round .

Round 3 - Coding Test 

2nd round will be Coding round in hacker rank

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

Jobs at Zycus Infotech

View all

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Jul 2021

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

Interview Questionnaire 

4 Questions

  • Q1. What is Method Overloading and Overriding?
  • Ans. 

    Method Overloading is creating multiple methods with the same name but different parameters. Method Overriding is creating a new implementation of an existing method in a subclass.

    • Method Overloading is used to provide different ways to call the same method with different parameters.

    • Method Overriding is used to provide a new implementation of an existing method in a subclass.

    • Method Overloading is resolved at compile-tim...

  • Answered by AI
  • Q2. What is an abstract class?
  • Ans. 

    An abstract class is a class that cannot be instantiated and is used as a base class for other classes.

    • An abstract class can have abstract and non-abstract methods.

    • Abstract methods have no implementation and must be implemented by the derived class.

    • Non-abstract methods can have implementation and can be inherited by the derived class.

    • An abstract class can have constructors and fields.

    • An abstract class can be used to de...

  • Answered by AI
  • Q3. What is a static, super, and final keyword?
  • Ans. 

    Static, super, and final are Java keywords used for different purposes.

    • Static keyword is used to create class-level variables and methods.

    • Super keyword is used to call the parent class constructor or method.

    • Final keyword is used to create constants or prevent method or class overriding.

  • Answered by AI
  • Q4. What is a string? How to make "Zycus" string to "Zycus Infotech" in Java?
  • Ans. 

    A string is a sequence of characters. To make 'Zycus' string to 'Zycus Infotech' in Java, concatenate the two strings.

    • Use the '+' operator to concatenate the two strings.

    • Create a new string variable and assign the concatenated value to it.

    • Example: String str1 = 'Zycus'; String str2 = ' Infotech'; String result = str1 + str2;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - First had an aptitude test which was easy and then had a face-to-face online interview with the recruiter who was very friendly and he asked some basic questions about Java OOPS.

Skills evaluated in this interview

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Coding Test 

Two questions related to Java programming

Round 3 - Technical 

(1 Question)

  • Q1. Project related questions as I joined this company as a fresher

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked ListYou are given a singly Linked List of integers. Your task is to return true if the given singly linked list is a palindrome otherwise returns false. For example: The given linked list is 1 -> 2 -> 3 -> 2->... read more
View answer (4)

Software Engineer Interview Questions & Answers

user image preetam Patel

posted on 8 Nov 2021

Interview Questionnaire 

1 Question

  • Q1. Basic of JavaScript

Interview Preparation Tips

Interview preparation tips for other job seekers - Should have good understanding of basic of JavaScript

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 (169)

Interview Questionnaire 

1 Question

  • Q1. Basic Excel. Soft skills

Procurement Analyst Interview Questions asked at other Companies

Q1. Explain P2P cycle, SAP TCodes used in P2P cycle, what is strategic sourcing, what is tactical sourcing
View answer (1)

Zycus Infotech Interview FAQs

How many rounds are there in Zycus Infotech interview?
Zycus Infotech interview process usually has 2-3 rounds. The most common rounds in the Zycus Infotech interview process are Aptitude Test, Technical and Resume Shortlist.
How to prepare for Zycus Infotech 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 Zycus Infotech. The most common topics and skills that interviewers at Zycus Infotech expect are Java, J2Ee, Hibernate, Spring Boot and Web Services.
What are the top questions asked in Zycus Infotech interview?

Some of the top questions asked at the Zycus Infotech interview -

  1. What is a string? How to make "Zycus" string to "Zycus Infotech" in Ja...read more
  2. How would you manage cascading deliveries for custome...read more
  3. What is Method Overloading and Overridi...read more
How long is the Zycus Infotech interview process?

The duration of Zycus Infotech interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Zycus Infotech Interview Process

based on 28 interviews in last 1 year

Interview experience

4
  
Good
View more

People are getting interviews through

based on 43 Zycus Infotech interviews
Job Portal
Campus Placement
Company Website
WalkIn
Referral
47%
21%
7%
5%
5%
15% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 883 Interviews
SAP Interview Questions
4.2
 • 302 Interviews
View all

Zycus Infotech Reviews and Ratings

based on 421 reviews

3.0/5

Rating in categories

3.3

Skill development

2.7

Work-Life balance

2.6

Salary & Benefits

3.3

Job Security

2.6

Company culture

2.4

Promotions/Appraisal

2.7

Work Satisfaction

Explore 421 Reviews and Ratings
Senior Java Developer- Immediate joiners

Pune,

Bangalore / Bengaluru

+1

6-11 Yrs

Not Disclosed

Presales Consultant

Pune,

Bangalore / Bengaluru

+1

5-9 Yrs

Not Disclosed

Java/Python Developer - Machine Learning & Data Science Expertise

Pune,

Bangalore / Bengaluru

+1

2-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
266 salaries
unlock blur

₹3 L/yr - ₹8.9 L/yr

Procurement Analyst
144 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Associate Technical Leader
96 salaries
unlock blur

₹5 L/yr - ₹13 L/yr

Softwaretest Engineer
94 salaries
unlock blur

₹3 L/yr - ₹6.2 L/yr

Senior Procurement Analyst
85 salaries
unlock blur

₹4.1 L/yr - ₹10.4 L/yr

Explore more salaries
Compare Zycus Infotech with

SAP

4.2
Compare

Oracle

3.7
Compare

IBM

4.1
Compare

Accenture

3.9
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