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

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

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. JavaScript , coding questions
Round 2 - Technical 

(1 Question)

  • Q1. Coding problem, JavaScript and nodejs question
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Walk-in and was interviewed in Nov 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Normal online code / frontend test

Round 2 - Technical 

(1 Question)

  • Q1. How would you build book my show
  • Ans. 

    Designing and building a platform similar to BookMyShow involves creating a user-friendly interface for booking tickets for various events.

    • Develop a user-friendly website and mobile app for users to browse and book tickets for movies, concerts, plays, etc.

    • Implement a secure payment gateway for users to make online transactions.

    • Integrate a database to store information about events, venues, tickets, and user bookings.

    • In...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Solid principals, awareness of patterns
Round 4 - Technical 

(1 Question)

  • Q1. How would you build tinyurl like service, systems designs
  • Ans. 

    To build a tinyurl-like service, design a system with a URL shortening algorithm, a database to store mappings, and a redirect service.

    • Use a hashing algorithm to generate short URLs from long URLs (e.g. MD5, SHA-256).

    • Store the mappings of short URLs to long URLs in a database (e.g. MySQL, Redis).

    • Implement a redirect service that takes a short URL, looks up the corresponding long URL in the database, and redirects the u...

  • Answered by AI
Round 5 - One-on-one 

(1 Question)

  • Q1. Non-technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - no reply after giving so many rounds.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Coding Test 

Mainly 4 Questions
1-2 MCQ
3: Create a class deriving from IReptile and return an object of HatchEgg which has Hatch Method. Hatch Method should return same IReptile object.
4) Sorting IDs in dictionary

Round 2 - Technical 

(2 Questions)

  • Q1. The Interviewer was Very Rude and he doesn't care about the Requirements of Hiring a candidate. he was constantly asking about Other Companies Architectures and The things you did in them. instead of havin...
  • Q2. SOLID, Interfaces , Boxing/Unboxing

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay away from this company. very toxic
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Find longest palindromic substring in a given string.
  • Ans. 

    Use dynamic programming to find the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes.

    • Store the length of the longest palindrome found so far.

    • Return the substring based on the start and end indices of the longest palindrome.

  • Answered by AI
  • Q2. How to serialize and deserialise a tree
  • Ans. 

    To serialize and deserialize a tree, use a recursive approach to traverse the tree and store the data in a suitable format.

    • Use pre-order traversal to serialize the tree by storing the node values in a list or string.

    • For deserialization, reconstruct the tree by recursively building nodes from the serialized data.

    • Consider using JSON or XML format for serialization to easily store and retrieve tree structure.

  • Answered by AI
  • Q3. Find if a given regex (containing ., * and lower case english chars) matches a given string.
  • Ans. 

    Use regex library to match given regex with string.

    • Use a regex library like re in Python to match the given regex with the string.

    • Check if the regex matches the string using the library functions.

    • Handle cases where the regex contains special characters like . and * appropriately.

  • Answered by AI
  • Q4. Explain about throttling and implement throttle function.
  • Ans. 

    Throttling is a technique used to control the rate of requests sent to a server.

    • Throttling helps prevent server overload by limiting the number of requests processed at a time.

    • Implementing a throttle function involves setting a maximum request rate and delaying excess requests.

    • Example: Implementing a throttle function in a web application to limit the number of API calls made to a third-party service.

    • Example: Throttlin...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Find squares of elements in a sorted array and return the sorted response.
  • Ans. 

    Sort the squares of elements in a sorted array and return the sorted response.

    • Iterate through the array and square each element.

    • Store the squared values in a new array.

    • Sort the new array and return it.

  • Answered by AI
  • Q2. Write a short promise example and implement your own promise
  • Ans. 

    A promise is a commitment to do something in the future, typically used for asynchronous operations in JavaScript.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They represent a value that may be available now, in the future, or never.

    • Promises have three states: pending, fulfilled, or rejected.

    • Example: new Promise((resolve, reject) => { setTimeout(() => resolve('Done!'), 1000); });

  • Answered by AI
  • Q3. Explain event loop, what are different types of queues in event loop
  • Ans. 

    Event loop is a mechanism that allows for asynchronous execution of code by managing the order of events in a single thread.

    • Event loop continuously checks the call stack for any functions that need to be executed, and processes them in a non-blocking manner.

    • Different types of queues in event loop include microtask queue (Promise callbacks), macrotask queue (setTimeout, setInterval callbacks), and animation frame queue

  • Answered by AI
  • Q4. What is virtual DOM and why its faster
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM, used to improve performance by minimizing direct manipulation of the real DOM.

    • Virtual DOM is a concept used in frameworks like React to optimize rendering performance.

    • Changes are first made to the virtual DOM, which is then compared to the real DOM to identify the minimal updates needed.

    • This approach reduces the number of actual DOM manipulations, resulting in faster...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ServiceNow Senior Software Engineer interview:
  • React.Js
  • Javascript
  • DSA

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Reverse the linked list.
Round 2 - Technical 

(1 Question)

  • Q1. Internel working of Hashmap
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected
Round 1 - Coding Test 

DSA round leetcode style question

Round 2 - Technical 

(1 Question)

  • Q1. Design + Coding round for rate limiter

Interview Preparation Tips

Interview preparation tips for other job seekers - Final round - System Design
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was a basic logical and mental ability test

Round 2 - Coding Test 

There were 3 coding questions. 2 were DS based and 1 was api based.

Round 3 - One-on-one 

(1 Question)

  • Q1. Basic managerial interview questions
Round 4 - Technical 

(3 Questions)

  • Q1. API calling and data processing
  • Q2. C# related questions
  • Q3. Questions related to cloud and CI/CD

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

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

₹3 L/yr - ₹8.6 L/yr

Procurement Analyst
141 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Associate Technical Leader
96 salaries
unlock blur

₹5 L/yr - ₹13 L/yr

Softwaretest Engineer
92 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.0
Compare

Accenture

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