AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Cybage

Compare button icon Compare button icon Compare
3.8

based on 2.1k Reviews

Play video Play video Video summary
  • About
  • Reviews
    2.1k
  • Salaries
    16.8k
  • Interviews
    200
  • Jobs
    15
  • Benefits
    300
  • Photos
    4
  • Posts
    2

Filter interviews by

Cybage Interview Questions and Answers

Updated 19 May 2025
Popular Designations

185 Interview questions

An Automation Test Engineer was asked 1mo ago
Q. Write a Java program to print the Fibonacci series from the given number.
Ans. 

This Java program generates the Fibonacci series starting from a given number, showcasing iterative and recursive approaches.

  • Fibonacci Series Definition: The Fibonacci series is a sequence where each number is the sum of the two preceding ones, starting from 0 and 1.

  • Input Handling: The program should accept a starting number from which to generate the Fibonacci series.

  • Iterative Approach: Use a loop to calculate an...

View all Automation Test Engineer interview questions
An Automation Test Engineer was asked 1mo ago
Q. How do you handle flaky test cases in Playwright?
Ans. 

Flaky tests in Playwright can be managed through retries, proper synchronization, and consistent test environments.

  • Implement retries: Use Playwright's built-in retry mechanism to rerun flaky tests automatically.

  • Improve synchronization: Ensure elements are fully loaded before interacting with them using methods like 'waitForSelector'.

  • Use stable selectors: Avoid using dynamic selectors that may change; prefer stable...

View all Automation Test Engineer interview questions
An Automation Test Engineer was asked 1mo ago
Q. Write a program in Java to remove the duplicates from the string.
Ans. 

This Java program removes duplicate characters from a string, preserving the order of first occurrences.

  • Using a Set: Utilize a HashSet to track seen characters and build a new string with unique characters. Example: 'hello' becomes 'helo'.

  • StringBuilder: Use StringBuilder to efficiently construct the result string as you iterate through the original string.

  • Character Check: For each character in the string, check if...

View all Automation Test Engineer interview questions
An Automation Test Engineer was asked 1mo ago
Q. Explain why Playwright is better than Selenium.
Ans. 

Playwright offers modern features and capabilities that enhance automation testing compared to Selenium.

  • Multi-Browser Support: Playwright supports multiple browsers (Chromium, Firefox, WebKit) with a single API, simplifying cross-browser testing.

  • Auto-Waiting: Playwright automatically waits for elements to be ready before performing actions, reducing flakiness in tests.

  • Headless Mode: Playwright runs tests in headle...

View all Automation Test Engineer interview questions
An Automation Test Engineer was asked 1mo ago
Q. Explain object-oriented programming in Java with examples.
Ans. 

Object-oriented programming in Java focuses on using objects to design applications, promoting code reusability and modularity.

  • Encapsulation: Bundling data (attributes) and methods (functions) that operate on the data into a single unit or class. Example: class Car { private String color; public void setColor(String c) { color = c; } }

  • Inheritance: Mechanism where one class can inherit fields and methods from anoth...

View all Automation Test Engineer interview questions
An Automation Test Engineer was asked 1mo ago
Q. Explain the agile ceremonies in detail.
Ans. 

Agile ceremonies are structured meetings that facilitate collaboration, planning, and review in Agile software development.

  • Sprint Planning: A meeting where the team discusses what work will be done in the upcoming sprint, setting goals and defining tasks. For example, a team may decide to implement new features based on user feedback.

  • Daily Stand-up: A short daily meeting (usually 15 minutes) where team members sha...

View all Automation Test Engineer interview questions
An Automation Test Engineer was asked 1mo ago
Q. Explain the process of development, raising a PR, and completing a PR in detail, from raising the PR to its completion.
Ans. 

The PR process involves creating, reviewing, and merging code changes to ensure quality and collaboration in software development.

  • Creating a Pull Request (PR): A developer initiates a PR after completing a feature or bug fix, providing a description of changes made.

  • Code Review: Team members review the PR for code quality, adherence to standards, and potential issues, often leaving comments for improvements.

  • Continu...

View all Automation Test Engineer interview questions
Are these interview questions helpful?
An Automation Test Engineer was asked 1mo ago
Q. How do you automate user stories when test cases are not available?
Ans. 

Automating stories without test cases involves understanding requirements, exploratory testing, and creating new test cases.

  • Understand Requirements: Thoroughly review user stories and acceptance criteria to grasp the functionality and expected outcomes.

  • Exploratory Testing: Perform exploratory testing to identify critical paths and edge cases, documenting findings to create test cases.

  • Create Test Cases: Based on th...

View all Automation Test Engineer interview questions
A Software Developer was asked 3mo ago
Q. What are the differences between var, let, and const in JavaScript?
Ans. 

var, let, and const are used to declare variables in JavaScript with different scopes and mutability.

  • var is function-scoped and can be redeclared and updated

  • let is block-scoped and can be updated but not redeclared

  • const is block-scoped and cannot be updated or redeclared

View all Software Developer interview questions
A Software Developer was asked 3mo ago
Q. How can you remove duplicate numbers from an array?
Ans. 

Use a Set to remove duplicate numbers from an array of strings.

  • Create a Set from the array to automatically remove duplicates

  • Convert the Set back to an array if needed

View all Software Developer interview questions
1 2 3 4 5 6 7

Cybage Interview Experiences

200 interviews found

Automation Test Engineer Interview Questions & Answers

user image Nayan Wankhade

posted on 25 Apr 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Explain why playwright is better than Selenium
  • Ans. 

    Playwright offers modern features and capabilities that enhance automation testing compared to Selenium.

    • Multi-Browser Support: Playwright supports multiple browsers (Chromium, Firefox, WebKit) with a single API, simplifying cross-browser testing.

    • Auto-Waiting: Playwright automatically waits for elements to be ready before performing actions, reducing flakiness in tests.

    • Headless Mode: Playwright runs tests in headless mo...

  • Answered by AI
    Add your answer
  • Q2. Write a program in Java to remove the duplicates from the string.
  • Ans. 

    This Java program removes duplicate characters from a string, preserving the order of first occurrences.

    • Using a Set: Utilize a HashSet to track seen characters and build a new string with unique characters. Example: 'hello' becomes 'helo'.

    • StringBuilder: Use StringBuilder to efficiently construct the result string as you iterate through the original string.

    • Character Check: For each character in the string, check if it i...

  • Answered by AI
    Add your answer
  • Q3. Write a java program to print the Fibonacci series from the given number
  • Ans. 

    This Java program generates the Fibonacci series starting from a given number, showcasing iterative and recursive approaches.

    • Fibonacci Series Definition: The Fibonacci series is a sequence where each number is the sum of the two preceding ones, starting from 0 and 1.

    • Input Handling: The program should accept a starting number from which to generate the Fibonacci series.

    • Iterative Approach: Use a loop to calculate and pri...

  • Answered by AI
    Add your answer
  • Q4. How do you handle flaky test cases in playwright
  • Ans. 

    Flaky tests in Playwright can be managed through retries, proper synchronization, and consistent test environments.

    • Implement retries: Use Playwright's built-in retry mechanism to rerun flaky tests automatically.

    • Improve synchronization: Ensure elements are fully loaded before interacting with them using methods like 'waitForSelector'.

    • Use stable selectors: Avoid using dynamic selectors that may change; prefer stable attr...

  • Answered by AI
    Add your answer
  • Q5. Explain the object oriented programming in Java with all the points and example
  • Ans. 

    Object-oriented programming in Java focuses on using objects to design applications, promoting code reusability and modularity.

    • Encapsulation: Bundling data (attributes) and methods (functions) that operate on the data into a single unit or class. Example: class Car { private String color; public void setColor(String c) { color = c; } }

    • Inheritance: Mechanism where one class can inherit fields and methods from another cl...

  • Answered by AI
    Add your answer
  • Q6. What is multiple inheritance and why it is not supported in Java how interfaces support multiple inheritance in Java explain with example
  • Ans. 

    Multiple inheritance allows a class to inherit from multiple classes, but Java avoids it to prevent complexity and ambiguity.

    • Definition: Multiple inheritance is when a class can inherit features from more than one parent class.

    • Java's Approach: Java does not support multiple inheritance with classes to avoid the 'Diamond Problem', where ambiguity arises in method resolution.

    • Interfaces: Java allows multiple inheritance t...

  • Answered by AI
    Add your answer
  • Q7. Explain what are the agile ceremonies in detail
  • Ans. 

    Agile ceremonies are structured meetings that facilitate collaboration, planning, and review in Agile software development.

    • Sprint Planning: A meeting where the team discusses what work will be done in the upcoming sprint, setting goals and defining tasks. For example, a team may decide to implement new features based on user feedback.

    • Daily Stand-up: A short daily meeting (usually 15 minutes) where team members share wh...

  • Answered by AI
    Add your answer
  • Q8. How do you automate the stories when you don't have the test cases
  • Ans. 

    Automating stories without test cases involves understanding requirements, exploratory testing, and creating new test cases.

    • Understand Requirements: Thoroughly review user stories and acceptance criteria to grasp the functionality and expected outcomes.

    • Exploratory Testing: Perform exploratory testing to identify critical paths and edge cases, documenting findings to create test cases.

    • Create Test Cases: Based on the und...

  • Answered by AI
    Add your answer
  • Q9. What is the process of development and raising the PR and completion of PR explain the whole process in detail from raising the PR to completion of PR
  • Ans. 

    The PR process involves creating, reviewing, and merging code changes to ensure quality and collaboration in software development.

    • Creating a Pull Request (PR): A developer initiates a PR after completing a feature or bug fix, providing a description of changes made.

    • Code Review: Team members review the PR for code quality, adherence to standards, and potential issues, often leaving comments for improvements.

    • Continuous I...

  • Answered by AI
    Add your answer
  • Q10. What is the branching strategy which is used in your project
  • Add your answer

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 27 Feb 2025

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

(2 Questions)

  • Q1. How can you remove duplicate numbers from an array?
  • Ans. 

    Use a Set to remove duplicate numbers from an array of strings.

    • Create a Set from the array to automatically remove duplicates

    • Convert the Set back to an array if needed

  • Answered by AI
    Add your answer
  • Q2. What are the differences between var, let, and const in JavaScript?
  • Ans. 

    var, let, and const are used to declare variables in JavaScript with different scopes and mutability.

    • var is function-scoped and can be redeclared and updated

    • let is block-scoped and can be updated but not redeclared

    • const is block-scoped and cannot be updated or redeclared

  • Answered by AI
    Add your answer

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 27 Nov 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. DIscussed on mIcroservice arch with AWS
  • Add your answer
  • Q2. Question related to spring boot annotations
  • Add your answer
  • Q3. Questions related to design pattern
  • Add your answer
Round 2 - Technical 

(3 Questions)

  • Q1. Question related to previous project.
  • Add your answer
  • Q2. Some questions of MySQL
  • Add your answer
  • Q3. Multithreading related questions,
  • Add your answer

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (3)
Anonymous

Senior Software Engineer Interview Questions & Answers

user image Datta Devror DD

posted on 31 Jul 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. Spring boot, AWS, and Spring Security
  • Add your answer
  • Q2. JUnit, Not basic all Asked Advanced questions.
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Spring Boot all annotations, Linux,
  • Add your answer
  • Q2. Deployment related questions
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Discussed Salary
  • Add your answer
Round 4 - One-on-one 

(1 Question)

  • Q1. I have not attend becasu of HR reject me
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - I am extremely frustrated with my recent experience interview for a senior software position at Cybage Software. the process started off well, with successful completion of both technical interviews and HR discussions. during which I was given a provisional offer. However, just when I thought things were moving forward, the recruiter abruptly informed me that there were no current requirements matching, which was disrespectful. It left me feeling misled and undervalued as a candidate. The lack of transparent communication and the absence of a clear explanation for why my application was effectively nullified are unacceptable. I would advise others of inconsistencies in their hiring process. This experience had been a significant disappointment.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (3)
Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Oct 2024

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

(3 Questions)

  • Q1. What is Dependency Injection
  • Ans. 

    Dependency Injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Allows for easier testing by mocking dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

  • Answered by AI
    Add your answer
  • Q2. What are the routings in MVC
  • Ans. 

    Routings in MVC define how the application responds to client requests.

    • Routings map URLs to controller actions in MVC framework

    • Routes are defined in RouteConfig.cs file in ASP.NET MVC

    • Routes can include parameters and constraints

    • Example: routes.MapRoute('Default', '{controller}/{action}/{id}', new { controller = 'Home', action = 'Index', id = UrlParameter.Optional })

  • Answered by AI
    Add your answer
  • Q3. What is garbage collection
  • Ans. 

    Garbage collection is an automatic memory management process used in programming languages to reclaim memory occupied by objects that are no longer in use.

    • Garbage collection automatically identifies and deletes objects in memory that are no longer needed by the program.

    • It helps prevent memory leaks and improves the efficiency of memory usage.

    • Examples of programming languages that use garbage collection include Java, C#...

  • Answered by AI
    Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. How to secure WEB API in .net?
  • Ans. 

    Secure WEB API in .NET by using authentication, authorization, HTTPS, and input validation.

    • Use authentication mechanisms like JWT tokens or OAuth for secure access.

    • Implement authorization to control which users have access to specific resources.

    • Enable HTTPS to encrypt data transmitted between client and server.

    • Implement input validation to prevent injection attacks like SQL injection or cross-site scripting.

  • Answered by AI
    Add your answer
  • Q2. Stored procedure vs functions
  • Ans. 

    Stored procedures are precompiled SQL queries stored in the database, while functions are reusable blocks of code that return a value.

    • Stored procedures are used for performing specific tasks or operations in the database.

    • Functions are used to encapsulate logic and can be called from within SQL queries or other functions.

    • Stored procedures can have input and output parameters, while functions always return a value.

    • Stored...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (3)
Anonymous

Dot Net Fullstack Developer Interview Questions & Answers

user image Anonymous

posted on 19 May 2025

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. What are delegates?
  • Add your answer
  • Q2. Explain overloading and overriding with example?
  • Add your answer
  • Q3. What is use of appsettings.json
  • Add your answer
  • Q4. What is middleware?
  • Add your answer
  • Q5. How to make custom middleware?
  • Add your answer
  • Q6. What are the SOLID principles in software development?
  • Add your answer
  • Q7. Explain MVC architecture?
  • Add your answer
  • Q8. What are services
  • Add your answer
  • Q9. What is the difference between a task and a thread?
  • Add your answer
  • Q10. What is the lifecycle of a React component?
  • Add your answer
  • Q11. What are hooks in React, and how do they work?
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good, but I did not receive any feedback from them.

Dot Net Fullstack Developer Interview Questions asked at other Companies

Q1. What languages does the .NET framework support?
View answer (3)
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 16 Dec 2024

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

(2 Questions)

  • Q1. What are oops concepts
  • Ans. 

    OOP concepts are fundamental principles that guide object-oriented programming, enhancing code organization and reusability.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

    • Inheritance: Mechanism where a new class derives properties and behavior from an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

    • Polymorphism: Ability to present the same interf...

  • Answered by AI
    Add your answer
  • Q2. Some questions on collection framework
  • Add your answer

Software Engineer Interview Questions asked at other Companies

Q1. Four people need to cross a bridge at night with only one torch that can only illuminate two people at a time. Person A takes 1 minute, B takes 2 minutes, C takes 7 minutes, and D takes 10 minutes to cross. When two people cross together, t... read more
View answer (270)
Anonymous

Technical Support Executive Interview Questions & Answers

user image Anonymous

posted on 17 Jul 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Why do you want to join cybage
  • Add your answer
  • Q2. Tell me about yourself
  • Add your answer
  • Q3. What is inbound and out bound call
  • Ans. 

    Inbound calls are received by the company from customers, while outbound calls are made by the company to customers.

    • Inbound calls are initiated by customers seeking assistance or information.

    • Outbound calls are initiated by the company for sales, marketing, or follow-up purposes.

    • Inbound calls are typically toll-free for customers, while outbound calls may incur charges.

    • Examples: Inbound call - Customer calling a technic...

  • Answered by AI
    Add your answer
  • Q4. Where do you see yourself in 5 year
  • Add your answer
  • Q5. What is the reason you left your last company
  • Add your answer

Technical Support Executive Interview Questions asked at other Companies

Q1. Describe your approach to logical troubleshooting. For example, if your mobile WiFi is not connecting, what steps would you take to diagnose and resolve the issue?
View answer (1)
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Jan 2025

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

(2 Questions)

  • Q1. Java concept and details
  • Add your answer
  • Q2. Spring boot basic concepts
  • Add your answer

Software Engineer Interview Questions asked at other Companies

Q1. Four people need to cross a bridge at night with only one torch that can only illuminate two people at a time. Person A takes 1 minute, B takes 2 minutes, C takes 7 minutes, and D takes 10 minutes to cross. When two people cross together, t... read more
View answer (270)
Anonymous

Cloud Architect Lead Interview Questions & Answers

user image Exam Topics

posted on 27 Jul 2024

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

(2 Questions)

  • Q1. What do you mean by serverless
  • Ans. 

    Serverless refers to a cloud computing model where the cloud provider manages the infrastructure and automatically allocates resources as needed.

    • Serverless computing allows developers to focus on writing code without worrying about managing servers or infrastructure.

    • Resources are dynamically allocated and scaled based on demand, leading to cost efficiency.

    • Examples of serverless platforms include AWS Lambda, Azure Funct...

  • Answered by AI
    Add your answer
  • Q2. How Azure Function Works
  • Ans. 

    Azure Functions is a serverless compute service that allows you to run event-triggered code without managing infrastructure.

    • Azure Functions allows you to write small pieces of code that run in response to events.

    • It supports multiple programming languages like C#, JavaScript, Python, etc.

    • Functions can be triggered by various events like HTTP requests, timers, queues, etc.

    • Azure Functions automatically scales based on dem...

  • Answered by AI
    Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. What is Microservices
  • Ans. 

    Microservices are a software development technique where applications are composed of small, independent services that communicate with each other.

    • Microservices break down applications into smaller, loosely coupled services

    • Each service is responsible for a specific function and can be developed, deployed, and scaled independently

    • Communication between services is typically done through APIs

    • Examples of companies using mi...

  • Answered by AI
    Add your answer
  • Q2. How microservices are different from Monolithic
  • Ans. 

    Microservices are smaller, independent services that work together, while Monolithic is a single, large application.

    • Microservices are smaller, independent services that can be developed, deployed, and scaled independently.

    • Monolithic architecture is a single, large application where all components are tightly coupled.

    • Microservices promote flexibility, scalability, and fault isolation.

    • Monolithic applications are easier t...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Cloud Architect Lead Interview Questions asked at other Companies

Q1. How do you assess servers using Azure Migrate with a private endpoint?
View answer (1)
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
timepasstiwari
·
A Digital Markter
Nailed the interview, still rejected
Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
Got a question about Cybage?
Ask anonymously on communities.
More about working at Cybage
  • HQ - Pune, Maharashtra, India
  • IT Services & Consulting
  • 5k-10k Employees (India)

Cybage Interview FAQs

How many rounds are there in Cybage interview?
Cybage interview process usually has 2-3 rounds. The most common rounds in the Cybage interview process are Technical, HR and One-on-one Round.
How to prepare for Cybage 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 Cybage. The most common topics and skills that interviewers at Cybage expect are Javascript, SQL, HTML, Python and Java.
What are the top questions asked in Cybage interview?

Some of the top questions asked at the Cybage interview -

  1. Write program to count frequencyOfChars(String inputStr) ex. abbcddda a:2 b...read more
  2. How to recover data from hdd if hdd is affected from virus...read more
  3. Introduce yourself How to handle username and password popup in selenium? Expla...read more
What are the most common questions asked in Cybage HR round?

The most common HR questions asked in Cybage interview are -

  1. What are your strengths and weakness...read more
  2. What is your family backgrou...read more
  3. What are your salary expectatio...read more
How long is the Cybage interview process?

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

Tell us how to improve this page.

Cybage Interviews By Designations

  • Cybage Software Engineer Interview Questions
  • Cybage Senior Software Engineer Interview Questions
  • Cybage QA Engineer Interview Questions
  • Cybage Software Developer Interview Questions
  • Cybage Technical Support Executive Interview Questions
  • Cybage Senior QA Engineer Interview Questions
  • Cybage Technical Support Engineer Interview Questions
  • Cybage Softwaretest Engineer Interview Questions
  • Show more
  • Cybage System Analyst Interview Questions
  • Cybage Business Analyst Interview Questions

Interview Questions for Popular Designations

  • Software Engineer Interview Questions
  • Senior Software Engineer Interview Questions
  • QA Engineer Interview Questions
  • Software Developer Interview Questions
  • Senior QA Engineer Interview Questions
  • Technical Support Executive Interview Questions
  • Technical Support Engineer Interview Questions
  • Java Developer Interview Questions
  • Show more
  • Sales Officer Interview Questions
  • HR Executive Interview Questions

Overall Interview Experience Rating

4/5

based on 155 interview experiences

Difficulty level

Easy 34%
Moderate 59%
Hard 7%

Duration

Less than 2 weeks 79%
2-4 weeks 17%
4-6 weeks 3%
6-8 weeks 1%
View more

Explore Interview Questions and Answers for Top Skills at Cybage

Web Development Interview Questions & Answers
250 Questions
Java Interview Questions & Answers
250 Questions
Data Structures Interview Questions & Answers
250 Questions
Spring Boot Interview Questions & Answers
50 Questions

Interview Questions from Similar Companies

Mphasis
Mphasis Interview Questions
3.3
 • 843 Interviews
Persistent Systems
Persistent Systems Interview Questions
3.6
 • 638 Interviews
Coforge
Coforge Interview Questions
3.3
 • 582 Interviews
L&T Technology Services
L&T Technology Services Interview Questions
3.3
 • 570 Interviews
eClerx
eClerx Interview Questions
3.2
 • 570 Interviews
EPAM Systems
EPAM Systems Interview Questions
3.7
 • 568 Interviews
Synechron
Synechron Interview Questions
3.5
 • 374 Interviews
ITC Infotech
ITC Infotech Interview Questions
3.6
 • 366 Interviews
Tata Elxsi
Tata Elxsi Interview Questions
3.7
 • 316 Interviews
Cyient
Cyient Interview Questions
3.7
 • 306 Interviews
View all

Cybage Reviews and Ratings

based on 2.1k reviews

3.8/5

Rating in categories

3.5

Skill development

3.9

Work-life balance

3.4

Salary

3.9

Job security

3.8

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 2.1k Reviews and Ratings
Jobs at Cybage
Cybage
Senior Network Engineer

Pune

5-10 Yrs

Not Disclosed

Cybage
Devops Architect

Pune

10-12 Yrs

Not Disclosed

Cybage
System Analyst

Pune

7-12 Yrs

₹ 10-24.56148 LPA

Explore more jobs
Cybage Salaries in India
Software Engineer
3.3k salaries
unlock blur

₹2.4 L/yr - ₹13 L/yr

Senior Software Engineer
2.1k salaries
unlock blur

₹8.2 L/yr - ₹20.6 L/yr

QA Engineer
1k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Senior QA Engineer
793 salaries
unlock blur

₹6.2 L/yr - ₹15 L/yr

System Analyst
765 salaries
unlock blur

₹9.6 L/yr - ₹25.7 L/yr

Explore more salaries
Compare Cybage with
Mphasis

Mphasis

3.3
Compare
L&T Technology Services

L&T Technology Services

3.3
Compare
Coforge

Coforge

3.3
Compare
eClerx

eClerx

3.2
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Cybage Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter