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 V&V Engineer Interview Questions and Answers

Updated 11 Jul 2024

Quest Global V&V Engineer Interview Experiences

1 interview found

V&V Engineer Interview Questions & Answers

user image Anonymous

posted on 11 Jul 2024

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

(2 Questions)

  • Q1. What is V&V and explain HSIT.
  • Ans. 

    V&V stands for Verification and Validation. HSIT stands for Hardware-in-the-Loop Simulation and Testing.

    • V&V is the process of ensuring that a product, service, or system meets the requirements and specifications.

    • Verification involves checking that the product is being built right, while validation involves checking that the right product is being built.

    • HSIT is a testing technique that involves testing a system or compo...

  • Answered by AI
  • Q2. What is DO-178B.
  • Ans. 

    DO-178B is a software standard for the certification of airborne systems.

    • DO-178B is a guideline for developing software in airborne systems.

    • It defines the software development process, verification, and validation.

    • Compliance with DO-178B is required for certification of software in avionics.

    • It has different levels of compliance ranging from A to E.

    • Examples of DO-178B compliant software include flight control systems an

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Expected salary
  • Q2. Job location preference

Interview questions from similar companies

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

(2 Questions)

  • Q1. Explain over all experience
  • Q2. Asked question on Core and advance java topic
Round 2 - Technical 

(2 Questions)

  • Q1. Some advance topic of Java
  • Q2. DSA
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Relocation
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. They asked me to write a dockerfile
  • Q2. Minimal questions about linux

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on linux and k8s
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is inheritance
  • Ans. 

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

    • Allows for code reusability by creating a new class based on an existing class

    • Derived class (subclass) inherits properties and behaviors from a base class (superclass)

    • Can have multiple levels of inheritance, creating a hierarchy of classes

    • Example: Animal class can be a base class with Dog and Cat

  • Answered by AI
  • Q2. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q3. Write a code for string reverse
  • Ans. 

    Code to reverse a string using array of characters

    • Iterate through half of the string and swap characters from start and end

    • Use a temporary variable to store the character being swapped

    • Handle edge cases like empty string or single character string

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Questions on streams rest api
Round 2 - One-on-one 

(1 Question)

  • Q1. Managerial discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - I went through 2 rounds of interviews and cleared them only for the HR to tell me that they cannot match my salary expectations. She said she would let me know if anything changes and then ghosted me. Very bad experience. Interviews were easy.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(8 Questions)

  • Q1. What is abstraction and how can we achieve it?
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary features to the outside world.

    • Abstraction allows us to focus on what an object does rather than how it does it

    • Achieved through abstract classes and interfaces in object-oriented programming

    • Example: A car dashboard abstracts the internal workings of the car and provides only essential information to the driver

  • Answered by AI
  • Q2. Difference between hashtable and hashmap
  • Ans. 

    Hashtable is synchronized, while hashmap is not. Hashtable does not allow null keys or values, while hashmap does.

    • Hashtable is synchronized, while hashmap is not

    • Hashtable does not allow null keys or values, while hashmap does

    • Hashtable is a legacy class, while hashmap is a newer class

  • Answered by AI
  • Q3. How get() works insterally in hashmap
  • Ans. 

    The get() method in HashMap retrieves the value associated with a specified key.

    • get() method takes a key as input and returns the value associated with that key in the HashMap.

    • Internally, get() uses the hash code of the key to find the corresponding bucket in the HashMap.

    • If multiple keys have the same hash code, get() uses the equals() method to find the correct key-value pair.

  • Answered by AI
  • Q4. What is normalization?
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization helps in minimizing data redundancy by dividing the database into multiple tables and defining relationships between them.

    • It ensures data integrity by avoiding update anomalies and inconsistencies.

    • There are different normal forms such as 1NF, 2NF, 3NF, BCNF, and 4NF, each with specific rules to fo...

  • Answered by AI
  • Q5. What are constraints?
  • Ans. 

    Constraints are limitations or restrictions placed on a system or process.

    • Constraints define the boundaries within which a system must operate.

    • They can include limitations on resources, time, or functionality.

    • Examples of constraints in software engineering include memory limitations, processing speed, and input/output requirements.

  • Answered by AI
  • Q6. Write a query to get 3rd highest salary from the employee table
  • Ans. 

    Query to retrieve the 3rd highest salary from the employee table

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT clause to retrieve the 3rd highest salary

  • Answered by AI
  • Q7. Write a code to get 2nd last node and its value from the singly linked list.
  • Ans. 

    Traverse the linked list to find the 2nd last node and return its value.

    • Traverse the linked list while keeping track of the current and previous nodes.

    • Once at the end of the list, return the value of the previous node.

  • Answered by AI
  • Q8. You have an array of integer and retrieve the 2 smallest number from it without sorting the array.
  • Ans. 

    Use two variables to keep track of the smallest and second smallest numbers in the array.

    • Iterate through the array and update the variables accordingly.

    • Initialize the variables with the maximum possible integer value to start with.

    • Example: array = [5, 2, 8, 1, 3], smallest = 1, secondSmallest = 2.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Kyndryl Software Engineer interview:
  • java basics
  • Data Structures
  • OOPS
  • SQL
  • SQL Queries
  • Algorithms
Interview preparation tips for other job seekers - Prepare problem sets mostly based on data structure and algorithm.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Linux related questions
  • Q2. Networking related

Interview Preparation Tips

Interview preparation tips for other job seekers - Study in-depth

Software Engineer Interview Questions & Answers

Hewlett Packard Enterprise user image 20Z327 - LAKSHMI PRIYADARSHINI M

posted on 12 Oct 2023

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 7 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Techinal - 30mins,Aptitude - 15mins

Round 3 - Coding Test 

4 coding question in two different language

Round 4 - Technical 

(1 Question)

  • Q1. Concepts and coding for 50 mins
Round 5 - Technical 

(1 Question)

  • Q1. Projects, concepts coding for 50 mins
Round 6 - Technical 

(1 Question)

  • Q1. Sql,logical resoning,projects, technical for 50 mins
Round 7 - HR 

(1 Question)

  • Q1. Normal hr Interview, like salary discussion
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Java, spring framework, hibernate questions
Round 3 - Technical 

(1 Question)

  • Q1. Java, spring boot, design
Round 4 - HR 

(1 Question)

  • Q1. Why are you switching comany ? and Salary Expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared because opportunities are every very and you never know until you get the opportunity.
Round 1 - Group Discussion 

Merit and demerit of Machine learning ?

Round 2 - Aptitude Test 

General Aptitude and reasoning

Round 3 - Technical 

(4 Questions)

  • Q1. Oops concept, DBMS , Data Structure
  • Q2. What is Normalisation?
  • Ans. 

    Normalisation is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • It involves dividing larger tables into smaller ones and defining relationships between them.

    • Normalization helps to eliminate data inconsistencies and anomalies.

    • There are different levels of normalization, such as first normal form (1NF), second normal form (2NF), and so on.

    • Normalization can improve database pe...

  • Answered by AI
  • Q3. What is polimorphism?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • It allows objects of different classes to be treated as if they were objects of the same class.

    • It is achieved through method overriding and method overloading.

    • Example: A shape class can have multiple subclasses like circle, square, etc. and all can be treated as shapes.

    • Example: A method can take an object of a parent class as a parameter and it can accept a

  • Answered by AI
  • Q4. What is Stack and Pre and post Tree formation
  • Ans. 

    Stack is a data structure that follows LIFO. Pre and post tree formation are methods of traversing a tree.

    • Stack is used for backtracking, undoing, and recursion.

    • Pre-order traversal visits the root node first, then left subtree, then right subtree.

    • Post-order traversal visits the left subtree, then right subtree, then root node.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Tell me About company ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics questions of Data Stucture Oops and Dbms

Skills evaluated in this interview

Quest Global Interview FAQs

How many rounds are there in Quest Global V&V Engineer interview?
Quest Global interview process usually has 2 rounds. The most common rounds in the Quest Global interview process are Technical and HR.
How to prepare for Quest Global V&V 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 Quest Global. The most common topics and skills that interviewers at Quest Global expect are Ada, Engineering Services, Testing Tools, Architecture and Assembly Language.
What are the top questions asked in Quest Global V&V Engineer interview?

Some of the top questions asked at the Quest Global V&V Engineer interview -

  1. What is V&V and explain HS...read more
  2. What is DO-17...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
DXC Technology Interview Questions
3.7
 • 803 Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
Nagarro Interview Questions
4.0
 • 766 Interviews
View all
Quest Global V&V Engineer Salary
based on 6 salaries
₹4.6 L/yr - ₹9.5 L/yr
44% less than the average V&V Engineer 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 - ₹18 L/yr

Software Engineer
1.7k salaries
unlock blur

₹2.8 L/yr - ₹9.4 L/yr

Lead Engineer
1.6k salaries
unlock blur

₹7.5 L/yr - ₹25.2 L/yr

Design Engineer
601 salaries
unlock blur

₹2 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.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview