Upload Button Icon Add office photos

Cybage

Compare button icon Compare button icon Compare

Filter interviews by

Cybage Interview Questions, Process, and Tips

Updated 27 Feb 2025

Top Cybage Interview Questions and Answers

View all 167 questions

Cybage Interview Experiences

Popular Designations

192 interviews found

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

1 hr clock, calender, train

Round 2 - Technical 

(2 Questions)

  • Q1. What is REST? Explain Post
  • Ans. 

    REST stands for Representational State Transfer, a software architectural style for designing networked applications.

    • REST is based on the idea of treating server objects as resources that can be created, updated, and deleted using standard HTTP methods.

    • It uses a stateless communication protocol, meaning each request from a client to a server must contain all the information necessary to understand the request.

    • RESTful A...

  • Answered by AI
  • Q2. Method overriding and method overloading

Skills evaluated in this interview

Top Cybage Software Engineer Interview Questions and Answers

Q1. Count Ways To Reach The N-th StairsYou have been given a number of stairs. Initially, you are at the 0th stair, and you need to reach the Nth stair. Each time you can either climb one step or two steps. You are supposed to return the number... read more
View answer (5)

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 experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Skill releated questions
  • Q2. Scenario related questions
Round 2 - Technical 

(2 Questions)

  • Q1. Questions were related to Oops concept
  • Q2. Scenario based questions
Round 3 - HR 

(2 Questions)

  • Q1. Professional background
  • Q2. Family background

Senior System Analyst Interview Questions asked at other Companies

Q1. Do you write SQL Queries, or comfortable with it?
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Normal question aptitude like probability, scenario based questions, english grammar questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Ds question , html, css, javascript, react js question

Top Cybage Software Developer Interview Questions and Answers

Q1. 2.What is OOP explain.
View answer (1)

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 (38)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Explain what is LINQ?
  • Ans. 

    LINQ (Language Integrated Query) is a feature in C# that allows for querying data from different data sources using a uniform syntax.

    • LINQ allows for querying data from collections, databases, XML, and more.

    • It provides a set of standard query operators like Where, Select, OrderBy, etc.

    • LINQ queries are written in a declarative syntax similar to SQL.

    • Example: var result = from num in numbers where num % 2 == 0 select num;

  • Answered by AI
  • Q2. What is Diamond structure problem and how can it be resolved
  • Ans. 

    Diamond structure problem occurs when a class inherits from two classes that have a common base class.

    • Diamond structure problem is a common issue in multiple inheritance where a class inherits from two classes that have a common base class.

    • This can lead to ambiguity in the inheritance hierarchy and can cause issues with method overriding and variable access.

    • One way to resolve the diamond structure problem is by using v...

  • Answered by AI
  • Q3. Different types of joins in SQL
  • Ans. 

    Different types of joins in SQL include inner join, left join, right join, and full outer join.

    • Inner join: Returns rows when there is a match in both tables

    • Left join: Returns all rows from the left table and the matched rows from the right table

    • Right join: Returns all rows from the right table and the matched rows from the left table

    • Full outer join: Returns rows when there is a match in either table

  • Answered by AI
  • Q4. Design patterns

Skills evaluated in this interview

Top Cybage Software Engineer Interview Questions and Answers

Q1. Count Ways To Reach The N-th StairsYou have been given a number of stairs. Initially, you are at the 0th stair, and you need to reach the Nth stair. Each time you can either climb one step or two steps. You are supposed to return the number... read more
View answer (5)

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)

Cybage interview questions for popular designations

 Software Engineer

 (57)

 Senior Software Engineer

 (22)

 QA Engineer

 (16)

 Software Developer

 (15)

 Senior QA Engineer

 (5)

 Technical Support Executive

 (5)

 Softwaretest Engineer

 (3)

 Technical Support Engineer

 (3)

PHP Developer Interview Questions & Answers

user image Abhay Krishnan Gupta

posted on 23 Jul 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Good test process keep trying you will get the job

Round 2 - Technical 

(2 Questions)

  • Q1. Good question asked testing
  • Q2. Good question asked teating

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep trying one day you will get the job

PHP Developer Interview Questions asked at other Companies

Q1. How can we report errors in the log file while working on a core PHP project?
View answer (3)

Get interview-ready with Top Cybage Interview Questions

Web Developer Interview Questions & Answers

user image Anonymous

posted on 27 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are directives and create a custom directive
  • Ans. 

    Directives in web development are markers on a DOM element that tell AngularJS to attach a specified behavior to that DOM element or even transform the DOM element and its children.

    • Directives are used to create reusable components in AngularJS.

    • Custom directives can be created by using the 'directive' function in AngularJS.

    • Custom directives can be used to add new behavior or functionality to HTML elements.

    • Example: Creat...

  • Answered by AI
  • Q2. How to share data between components
  • Ans. 

    Data can be shared between components in web development using props, state management libraries like Redux, context API, event bus, and local storage.

    • Use props to pass data from parent to child components

    • Utilize state management libraries like Redux to store and share data across components

    • Leverage context API to share data without having to pass props through every level of the component tree

    • Implement an event bus to...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What were the challenges faced during last employment and how did you overcome?

Skills evaluated in this interview

Web Developer Interview Questions asked at other Companies

Q1. Check Indices With Given Difference Problem Statement You are provided with an integer array ARR of size N along with two integers A and B. Your task is to determine if there exist two distinct indices in the array such that the absolute di... read more
View answer (1)

Jobs at Cybage

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

(1 Question)

  • Q1. What is cdac and
  • Ans. 

    CDAC stands for Centre for Development of Advanced Computing. It is an organization that specializes in research and development in the field of IT.

    • CDAC is a premier R&D organization under the Ministry of Electronics and Information Technology, Government of India.

    • It offers various courses and training programs in advanced computing technologies.

    • CDAC is known for its work in areas such as high-performance computing...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What are your qualifications
  • Ans. 

    I have a Bachelor's degree in Computer Science, ISTQB certification, and 3 years of experience in software testing.

    • Bachelor's degree in Computer Science

    • ISTQB certification

    • 3 years of experience in software testing

  • Answered by AI

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)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is Angular?
  • Ans. 

    Angular is a popular open-source web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a component-based architecture.

  • Answered by AI

Skills evaluated in this interview

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)

Software Engineer Interview Questions & Answers

user image Aashay Rajesh Kadu

posted on 2 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. What are OOPS Concepts ?
  • Ans. 

    OOPS Concepts are fundamental principles of Object-Oriented Programming, including Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex imple...

  • Answered by AI
  • Q2. Explain collection framework.
  • Ans. 

    Collection framework in Java provides a set of interfaces and classes to store and manipulate groups of objects.

    • Provides interfaces like List, Set, and Map for different types of collections

    • Classes like ArrayList, HashSet, and HashMap implement these interfaces

    • Allows easy manipulation and iteration over collections

    • Provides algorithms like sorting and searching for collections

    • Introduced in Java 1.2

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Talk for 5 mins on any given topic.
  • Ans. 

    Discussing the impact of artificial intelligence on society

    • Introduction to artificial intelligence and its applications

    • Positive impacts of AI on society such as improved healthcare and efficiency

    • Negative impacts of AI like job displacement and privacy concerns

    • Ethical considerations in AI development and usage

    • Future implications of AI on society

  • Answered by AI
  • Q2. Your views on changes brought up by COVID.
  • Ans. 

    COVID has accelerated digital transformation in software engineering, leading to remote work, increased focus on cybersecurity, and adoption of cloud technologies.

    • Remote work becoming the norm, leading to increased reliance on collaboration tools like Zoom and Slack

    • Greater emphasis on cybersecurity to protect sensitive data as more work is done online

    • Increased adoption of cloud technologies for scalability and flexibil...

  • Answered by AI

Skills evaluated in this interview

Top Cybage Software Engineer Interview Questions and Answers

Q1. Count Ways To Reach The N-th StairsYou have been given a number of stairs. Initially, you are at the 0th stair, and you need to reach the Nth stair. Each time you can either climb one step or two steps. You are supposed to return the number... read more
View answer (5)

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)

QA Engineer Interview Questions & Answers

user image mayur bongane

posted on 3 Nov 2024

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

(2 Questions)

  • Q1. Related to SDLC
  • Q2. Agile methodologies

Top Cybage QA Engineer Interview Questions and Answers

Q1. 1.oops concept 2.what is deffered defect 3.priority and severity of defect 4.tc or test scenarios for order placement 5.sdlc ,stlc 6.geeatest of all no program 6
View answer (1)

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)

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, Java and Python.
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
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 Interview Process

based on 144 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
EPAM Systems Interview Questions
3.7
 • 537 Interviews
View all

Cybage Reviews and Ratings

based on 1.9k 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 1.9k Reviews and Ratings
Cybage is hiring For Technical Architects

Pune

12-15 Yrs

₹ 23.4-23.9 LPA

Java Full Stack Lead

Pune

7-12 Yrs

Not Disclosed

Explore more jobs
Software Engineer
3.2k salaries
unlock blur

₹3.1 L/yr - ₹12.5 L/yr

Senior Software Engineer
2k salaries
unlock blur

₹5.9 L/yr - ₹19.8 L/yr

QA Engineer
1.1k salaries
unlock blur

₹2.4 L/yr - ₹11.5 L/yr

Senior QA Engineer
756 salaries
unlock blur

₹6 L/yr - ₹14.5 L/yr

System Analyst
738 salaries
unlock blur

₹9.6 L/yr - ₹25 L/yr

Explore more salaries
Compare Cybage with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

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