Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Quest Global Team. If you also belong to the team, you can get access from here

Quest Global Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 2.2k Reviews

Filter interviews by

Quest Global Senior Software Engineer 1 Interview Questions and Answers

Updated 9 Dec 2024

Quest Global Senior Software Engineer 1 Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Node.js questions were asked
  • Q2. Questions about the projects which i have worked

Interview questions from similar companies

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

(1 Question)

  • Q1. Binary search question
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Technical coding coding test

Round 2 - Technical 

(2 Questions)

  • Q1. OOPs spring jsis kss
  • Q2. Oo idid jdid sjiss js
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is Dependency Injection?
  • Q2. How does angular components communicate with each other?
  • Q3. How can you optimize a stored procedure in MSSQL?
  • Q4. What is Kestrel in .net Core?

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your stack well, prepare basic as well as intermediate questions.
If you dont know a specific topic, dont bluff, just say so.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It contain 40 question which is very easy

Round 2 - Coding Test 

It contain 3 coding question

Round 3 - One-on-one 

(5 Questions)

  • Q1. Introduction About Your Self and About Project
  • Q2. Two dsa question of leetcode
  • Q3. Basics Concept on dsa
  • Q4. From which platform you do coding
  • Q5. Simple Simple Question

Interview Preparation Tips

Topics to prepare for Nagarro Associate Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Very good company
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was an aptitute round and 2 coding questions was there

Round 2 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. We had discussion on projects than mentioned in my resume
  • Q3. Then he moved to DSA question in which he told to how you will insert node in doubly linked list ,I answered all correctly he appreciated me also but after 5 min one person came and told you can go . I was...

Interview Preparation Tips

Interview preparation tips for other job seekers - try to give interview as early as possible prepare basic dsa and projects
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic C# coding Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions related to Angular
  • Q2. Question related to ASP.NET CORE
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. 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
  • Q2. How to handle exception in java
  • Ans. 

    In Java, exceptions can be handled using try-catch blocks to catch and handle specific exceptions.

    • Use try-catch blocks to catch exceptions and handle them gracefully

    • Use multiple catch blocks to handle different types of exceptions

    • Use finally block to execute code regardless of whether an exception is thrown or not

    • Throw custom exceptions using throw keyword

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. In Java8, different between flatmap and map
  • Ans. 

    map transforms each element in a stream, while flatMap transforms each element into multiple elements

    • map applies a function to each element in a stream and returns a new stream of the results

    • flatMap applies a function that returns a stream for each element in the original stream, then flattens the streams into a single stream

    • Example: map - stream.map(x -> x * x), flatMap - stream.flatMap(str -> Arrays.stream(str.split(

  • Answered by AI
  • Q2. How to handle the ConcureentModificationException
  • Ans. 

    ConcurrentModificationException occurs when a collection is modified while iterating over it.

    • Use Iterator to iterate over the collection instead of foreach loop.

    • If modification is necessary, use Iterator's remove() method instead of collection's remove() method.

    • Consider using synchronized collections or ConcurrentHashMap to avoid ConcurrentModificationException.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

Basically communication and sql 12 question and progaming mcq 12q and 2 coding question

Round 2 - Technical 

(8 Questions)

  • Q1. Tell me about your self
  • Q2. Project explanition
  • Q3. What is inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits attributes and methods from another class.

    • Allows a class to inherit properties and behaviors from another class

    • Promotes code reusability and reduces redundancy

    • Derived class can add its own unique attributes and methods

    • Example: Class 'Car' can inherit from class 'Vehicle' and gain attributes like 'color' and methods like 'drive'

  • Answered by AI
  • Q4. Code in inheritance
  • Ans. 

    Inheritance in object-oriented programming allows a class to inherit properties and behaviors from another class.

    • Inheritance allows for code reusability and promotes a hierarchical structure in classes.

    • Subclasses can access and modify the properties and methods of their parent class.

    • Example: class Animal { ... } class Dog extends Animal { ... }

    • Example: class Shape { ... } class Circle extends Shape { ... }

  • Answered by AI
  • Q5. Code reverse a string
  • Ans. 

    Reverse a string using array manipulation

    • Create an array of characters from the input string

    • Iterate through the array in reverse order and append each character to a new string

    • Return the reversed string

  • Answered by AI
  • Q6. Sql query for seleting a particular column from a table and give the employer count
  • Ans. 

    Use SQL query to select a particular column from a table and get the count of entries.

    • Use SELECT statement to specify the column you want to retrieve.

    • Use COUNT() function to get the count of entries in that column.

    • Combine both in a single query to achieve the desired result.

  • Answered by AI
  • Q7. Apptitute question a sales man sells a item for 20% discount from its original price for some time and he want to sell the remaing item for original price what he needs to do??
  • Q8. A clock tick 8 times on 8'o clock the time taken between 1st tick and last tick is 35 sec what is the time taken for starting tick and end tick at 11'o colck
  • Ans. 

    The time taken for the clock to tick from 8'o clock to 11'o clock is 105 seconds.

    • Each tick represents 1/8th of an hour (45 minutes) on the clock.

    • From 8'o clock to 11'o clock, there are 3 hours, so the total time taken is 3 * 45 = 135 minutes = 135 * 60 = 8100 seconds.

    • The time taken for the clock to tick from 8'o clock to 11'o clock is 8100 - 35 = 8065 seconds.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for everything don't answer more and don't answer less, if you ans more you will get more question and get rejected and if you ans less you will get rejected too..

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Java programs related to strings
  • Q2. Collections question in java

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice well on java programs

Quest Global Interview FAQs

How many rounds are there in Quest Global Senior Software Engineer 1 interview?
Quest Global interview process usually has 1 rounds. The most common rounds in the Quest Global interview process are Technical.
What are the top questions asked in Quest Global Senior Software Engineer 1 interview?

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

  1. Questions about the projects which i have wor...read more
  2. Node.js questions were as...read more

Tell us how to improve this page.

Quest Global Senior Software Engineer 1 Salary
based on 11 salaries
₹6.8 L/yr - ₹16 L/yr
38% less than the average Senior Software Engineer 1 Salary in India
View more details
Senior Software Engineer
2.4k salaries
unlock blur

₹4.7 L/yr - ₹20 L/yr

Senior Engineer
1.7k salaries
unlock blur

₹4.8 L/yr - ₹17.7 L/yr

Software Engineer
1.7k salaries
unlock blur

₹2.8 L/yr - ₹9.5 L/yr

Lead Engineer
1.6k salaries
unlock blur

₹7.6 L/yr - ₹24 L/yr

Design Engineer
622 salaries
unlock blur

₹2.4 L/yr - ₹10.2 L/yr

Explore more salaries
Compare Quest Global with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview