Upload Button Icon Add office photos

Cybage

Compare button icon Compare button icon Compare

Filter interviews by

Cybage Senior Software Engineer 1 Interview Questions and Answers

Updated 9 Feb 2024

Cybage Senior Software Engineer 1 Interview Experiences

2 interviews found

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

(1 Question)

  • Q1. What is hoisting ? what is difference between inline , inline-block element?
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope.

    • Hoisting allows you to use functions and variables before they are declared.

    • Variables declared with var keyword are hoisted to the top of their scope, but not their assignment.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Inline elements flow in the do...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What is your salary expectation? Why cybage?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of java script and React JS

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1. What is online, block element 2. React lifecycle method 3. This , call ,apply and bind method

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on the basics

Senior Software Engineer 1 Interview Questions Asked at Other Companies

Q1. Architecture Design for an e2e system that takes input from user ... read more
Q2. What is CRFS? The experience around working with it.
Q3. What is difference between Python and Node.JS?
Q4. What is the difference between SQL and NoSQL?
Q5. Convert a String into sub-strings based on the number of given ro ... read more

Interview questions from similar companies

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

(2 Questions)

  • Q1. Core java concepts concepts , multithreading, spring boot,jpa ,MySQL ,api
  • Q2. Collection framework , java8, coding Questions 2 nd largest number find
Round 2 - HR 

(1 Question)

  • Q1. Only salary discussed

Interview Preparation Tips

Interview preparation tips for other job seekers - Good overall good good work balance
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops concept in java
  • Ans. 

    Oops concept in Java refers to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides the implementation d...

  • Answered by AI
  • Q2. Same basic questions in spring

Skills evaluated in this interview

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

Good and informative test taken in integrated

Round 2 - Coding Test 

Amazinf coding in java and kther langaugaes as

Round 3 - HR 

(2 Questions)

  • Q1. How are you ?
  • Ans. 

    I am doing well, thank you for asking.

    • I am feeling good both physically and mentally.

    • I have been enjoying my work and personal life.

    • Overall, I am in a positive state of mind.

  • Answered by AI
  • Q2. Why do you want ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the different sizes available for a virtual warehouse in Snowflake, and which sizes are currently being utilized in your current project?
  • Q2. What are stored procedures in Snowflake, and how did you utilize them?
Round 2 - Technical 

(2 Questions)

  • Q1. How did you verify the data after transferring it from one database to another?
  • Q2. What are the different types of duplicate checks that can be performed using SQL queries?
Round 3 - HR 

(2 Questions)

  • Q1. Are you open to relocating to Hyderabad?
  • Q2. What information do you have about ValueLabs?

Interview Preparation Tips

Topics to prepare for ValueLabs Senior Software Engineer interview:
  • Snowflake
  • SQL
  • Python
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Basic.net core question answer
  • Q2. SQL server question answer
Round 2 - Technical 

(2 Questions)

  • Q1. Angular basic question answer
  • Q2. Entity framework question answer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

One coding test happen

Round 2 - Technical 

(2 Questions)

  • Q1. Java questions, spring boot framework questions
  • Q2. DSA using stream api
  • Ans. 

    Using stream API for Data Structures and Algorithms

    • Stream API in Java can be used to perform operations on collections like filtering, mapping, reducing, etc.

    • It can be used for implementing various data structures and algorithms efficiently.

    • For example, you can use stream API to find the sum of all elements in an array or filter out even numbers from a list.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Java questions and spring boot questions
  • Q2. One program using stream api
  • Ans. 

    Using stream API to filter a list of numbers and find the sum of even numbers

    • Use Stream.filter() to filter out even numbers

    • Use Stream.mapToInt() to convert stream to IntStream

    • Use IntStream.sum() to find the sum of even numbers

  • Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. What are closures
  • Ans. 

    Closures are functions that have access to variables from their containing scope even after the scope has closed.

    • Closures allow functions to access variables from their outer function even after the outer function has finished executing.

    • They are commonly used in event handlers, callbacks, and asynchronous programming.

    • Closures help in maintaining state in functional programming.

  • Answered by AI
  • Q2. What is virtual DOM
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM used for efficient updates in web development.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing actual DOM manipulations.

    • When changes are made to the virtual DOM, a comparison is done with the actual DOM to determine the minimal updates needed.

    • This approach reduces the number of costly DOM operations, resulting in faster rende

  • Answered by AI
  • Q3. What are the data types in JS
  • Ans. 

    Data types in JavaScript include number, string, boolean, object, function, undefined, and null.

    • Number - represents numeric data, e.g. 10, 3.14

    • String - represents textual data, e.g. 'hello', '123'

    • Boolean - represents true or false values, e.g. true, false

    • Object - represents complex data structures, e.g. { key: 'value' }

    • Function - represents executable code, e.g. function() { }

    • Undefined - represents a variable that has ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Write react code for counter
  • Ans. 

    React code for a simple counter

    • Create a functional component for the counter

    • Use useState hook to manage the count state

    • Render the count value and buttons to increment and decrement the count

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - it was good

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I was interviewed before Mar 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Mostly asked c questions
  • Q2. Project related questions
Round 2 - Technical 

(1 Question)

  • Q1. Project related questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Cybage Interview FAQs

How many rounds are there in Cybage Senior Software Engineer 1 interview?
Cybage interview process usually has 1-2 rounds. The most common rounds in the Cybage interview process are Technical and HR.
What are the top questions asked in Cybage Senior Software Engineer 1 interview?

Some of the top questions asked at the Cybage Senior Software Engineer 1 interview -

  1. What is hoisting ? what is difference between inline , inline-block eleme...read more
  2. 1. What is online, block element 2. React lifecycle method 3. This , call ,appl...read more

Tell us how to improve this page.

Cybage Senior Software Engineer 1 Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Cybage Senior Software Engineer 1 Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
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