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

Filter interviews by

Clear (1)

Zycus Infotech Senior Software Engineer Interview Questions and Answers

Updated 24 Jan 2022

Zycus Infotech Senior Software Engineer Interview Experiences

3 interviews found

I applied via LinkedIn and was interviewed in Dec 2021. There were 5 interview rounds.

Round 1 - Coding Test 

A full fledged technical MCQ

Round 2 - Technical 

(1 Question)

  • Q1. Very advanced technical interview
Round 3 - Technical 

(1 Question)

  • Q1. Again a very advanced technical round
Round 4 - HR 

(6 Questions)

  • Q1. Why are you looking for a change?
  • Q2. What are your salary expectations?
  • Q3. Why should we hire you?
  • Q4. Where do you see yourself in 5 years?
  • Q5. What are your strengths and weaknesses?
  • Q6. Tell me about yourself.
Round 5 - HR 

(1 Question)

  • Q1. Share details of your previous job.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company but very lengthy interview process

Interview Questionnaire 

3 Questions

  • Q1. What are the features of Java?
  • Ans. 

    Java is a versatile programming language known for its platform independence and rich set of features.

    • Platform independence: Java programs can run on any operating system or platform that has a Java Virtual Machine (JVM).

    • Object-oriented: Java supports the principles of object-oriented programming, allowing for modular and reusable code.

    • Garbage collection: Java has automatic memory management, freeing developers from ma...

  • Answered by AI
  • Q2. Which are Types of testying?
  • Ans. 

    Types of testing include unit testing, integration testing, system testing, and acceptance testing.

    • Unit testing: Testing individual components or functions of the software.

    • Integration testing: Testing the interaction between different components or modules.

    • System testing: Testing the entire system as a whole.

    • Acceptance testing: Testing the software against user requirements or business use cases.

  • Answered by AI
  • Q3. What is the full form of RAM?
  • Ans. 

    Random Access Memory

    • RAM stands for Random Access Memory.

    • It is a type of computer memory that can be accessed randomly.

    • RAM is volatile memory, meaning it loses its data when the power is turned off.

    • It is used to store data that is currently being used by the computer's operating system, applications, and processes.

    • RAM allows for faster data access compared to other types of storage like hard drives or solid-state drives

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be punctual, be confident

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more

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

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of redux and react es6 js css3

Interview Preparation Tips

Interview preparation tips for other job seekers - First of all go through the job description .Brush up all your basics .And do practice hands on coding.

I was interviewed before Dec 2020.

Round 1 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round consisted of questions from DS/Algo , OOPS and Operating Systems primarily usage of some basic UNIX commands .

  • Q1. 

    Kth Largest Number Problem Statement

    You are given a continuous stream of numbers, and the task is to determine the kth largest number at any moment during the stream.

    Explanation:

    A specialized data st...

  • Ans. 

    Design a data structure to find the kth largest number in a continuous stream of integers.

    • Design a specialized data structure to handle an indefinite number of integers from the stream.

    • Implement 'add(DATA)' to incorporate integers into the stream's pool.

    • Implement 'getKthLargest()' to retrieve the kth largest number from the pool.

    • Maintain the pool of numbers and return the kth largest number for each query.

    • Ensure effici

  • Answered by AI
  • Q2. What is an interface?
  • Ans. 

    An interface in software engineering is a contract that defines the methods that a class must implement.

    • Defines a set of methods that a class must implement

    • Provides a way to achieve abstraction and multiple inheritance

    • Helps in achieving loose coupling between classes

  • Answered by AI
  • Q3. Can you explain the SOLID principles in Object-Oriented Design?
  • Ans. 

    SOLID principles are a set of five design principles in object-oriented programming to make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable...

  • Answered by AI
  • Q4. Can you explain piping in Unix/Linux?
  • Ans. 

    Piping in Unix/Linux allows the output of one command to be used as the input for another command.

    • Piping is done using the '|' symbol

    • It helps in connecting multiple commands together to perform complex operations

    • Example: ls -l | grep 'txt' - This command lists all files in long format and then filters for files with 'txt' in their name

  • Answered by AI
Round 2 - Video Call 

(5 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had questions revolving around OS , Selenium and some common concepts from DBMS. The interviewer was quite experienced and made the whole interview quite wholesome for me.

  • Q1. Can you explain any 5 essential UNIX commands?
  • Ans. 

    Essential UNIX commands include ls, cd, pwd, mkdir, and rm.

    • ls - list directory contents

    • cd - change directory

    • pwd - print working directory

    • mkdir - make directory

    • rm - remove files or directories

  • Answered by AI
  • Q2. How do you enable Actuator in a Spring Boot application?
  • Ans. 

    To enable Actuator in a Spring Boot application, you need to include the Actuator dependency in your pom.xml file and configure it in the application.properties file.

    • Include Actuator dependency in pom.xml file

    • Configure Actuator endpoints in application.properties file

    • Access Actuator endpoints to monitor and manage the application

  • Answered by AI
  • Q3. What is dependency injection?
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q4. What are Self-Join and Cross-Join in the context of database management systems?
  • Ans. 

    Self-Join is when a table is joined with itself, while Cross-Join is when every row from one table is combined with every row from another table.

    • Self-Join is used to combine rows with other rows in the same table.

    • Cross-Join generates a Cartesian product of the two tables involved.

    • Self-Join is typically used to compare rows within the same table, like in hierarchical structures.

    • Cross-Join is used when there is no common

  • Answered by AI
  • Q5. What are views in SQL?
  • Ans. 

    Views in SQL are virtual tables that are generated based on the result set of a SELECT query.

    • Views are saved SELECT queries that can be treated as tables.

    • They can simplify complex queries by storing them as a view.

    • Views do not store data themselves, but display data from the underlying tables.

    • They can be used to restrict access to specific columns or rows of a table.

    • Views can be used for data abstraction and security p

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This is a cultural fitment testing round .HR was very frank and asked standard questions. Then we discussed about my role.

  • Q1. Why should we hire you?
  • Q2. Why are you looking for a job change?

Interview Preparation Tips

Eligibility criteriaAbove 2 years of experienceCapgemini interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Java , Selenium , Spring Boot, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. A lot questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - I came in HCL without any reference, Randomly I came to give interview. there were total 3 rounds I faced. 1 Round Technical. 2nd Technial. 3 HR . For clearing technical round in HCL you should be technically strong. My 1st round took more than a hour and 2nd round took nearly 45 mins. Your basics should be clear and strong.

I applied via Approached by Company and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. C#,asp.net mvc,.net core

Interview Preparation Tips

Interview preparation tips for other job seekers - Please go through glassdoor interview questions

I applied via Newspaper Ad and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Please revise on the basics of C++ concepts. Theory should do well. Datatypes, operators, mathematical expression evaluation, functions, arrays, pointers, structures, classes etc. You may be asked to write...
  • Q2. Please revise on the object-oriented concepts of C++ langauage. Four pillars of object-oriented languages, function overloading, operator overloading, virtual functions concept explanation, polymorphism, a...
Round 2 - HR 

(4 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Where do you see yourself in 5 years?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - For technical interview
Please prepare well for the technical interview on C++ concepts.
Even if you are not asked to write programs during the interview, you must be able to explain well.

For HR interview
Please be honest about your expectations from the job and why you are looking for a job change.
Try to find out about the team which you are joining, whether it is permanent employment or C2H etc.
Do not ask for too much salary hike. It sets unreal expectations and lessens your chances of getting hired.
Be honest with the HR.

I applied via Recruitment Consulltant and was interviewed before Sep 2021. There were 2 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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Java basics, core java , polymorphism, inheritance , Collections, Exception Handling,

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core java sql , basic db querry

I applied via Naukri.com and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Python questions
  • Q2. Difference between tuple and list
  • Ans. 

    Tuple is immutable and ordered while list is mutable and ordered.

    • Tuple uses parentheses while list uses square brackets.

    • Tuple is faster than list for accessing elements.

    • Tuple can be used as keys in dictionaries while list cannot.

    • Tuple is used for heterogeneous data while list is used for homogeneous data.

    • Tuple is used for returning multiple values from a function.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Mostly compensation and perks

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are at 2-4 YOE looking for python development/ test role. Its quite easy to get into CG, just brush up on basics and go for it. They offered me almost 80% hike from previous company.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Zycus Infotech Interview FAQs

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

Some of the top questions asked at the Zycus Infotech Senior Software Engineer interview -

  1. What is the full form of R...read more
  2. What are the features of Ja...read more
  3. Which are Types of testyi...read more

Recently Viewed

INTERVIEWS

ivy

No Interviews

INTERVIEWS

Varun Beverages

No Interviews

INTERVIEWS

Varun Beverages

No Interviews

INTERVIEWS

Enphase Energy

No Interviews

INTERVIEWS

Varun Beverages

No Interviews

INTERVIEWS

ivy

No Interviews

INTERVIEWS

Enphase Energy

No Interviews

INTERVIEWS

ivy

No Interviews

INTERVIEWS

Zycus Infotech

No Interviews

INTERVIEWS

Varun Beverages

No Interviews

Tell us how to improve this page.

Zycus Infotech Senior Software Engineer Salary
based on 69 salaries
₹4.5 L/yr - ₹13.1 L/yr
44% less than the average Senior Software Engineer Salary in India
View more details

Zycus Infotech Senior Software Engineer Reviews and Ratings

based on 9 reviews

3.3/5

Rating in categories

3.6

Skill development

2.8

Work-life balance

2.6

Salary

3.1

Job security

2.7

Company culture

2.7

Promotions

3.2

Work satisfaction

Explore 9 Reviews and Ratings
Software Engineer
292 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Procurement Analyst
141 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Technical Leader
96 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
92 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Procurement Analyst
85 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Zycus Infotech with

SAP

4.2
Compare

Oracle

3.7
Compare

IBM

4.0
Compare

Accenture

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