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.3k Reviews

Filter interviews by

Quest Global Technical Lead Interview Questions and Answers

Updated 8 Nov 2024

Quest Global Technical Lead Interview Experiences

5 interviews found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sql queries join and left join
Round 2 - HR 

(1 Question)

  • Q1. Introduce yourself
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Question on C and C++

Round 2 - Technical 

(1 Question)

  • Q1. Past experience
Round 3 - One-on-one 

(1 Question)

  • Q1. Discussion with manager

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident

Technical Lead Interview Questions Asked at Other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to productio ... read more
asked in Infosys
Q2. Managerial: 1) Explain any one past issue and its mitigation stra ... read more
Q3. Longest Substring Without Repeating Characters Problem Statement ... read more
asked in Wipro
Q4. What automation framework have you worked on?
asked in Cognizant
Q5. 1. Type of documentation for computer system validation. 2.Please ... read more

I applied via Naukri.com and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. General Discussion related to JD with HR Team

Interview Preparation Tips

Topics to prepare for Quest Global Technical Lead interview:
  • Selenium
  • C#
Interview preparation tips for other job seekers - 1) Framework Understanding (BDD , DataDriven framework)
2) OOPS understanding
3)Xpath realted questions
4) Current Project details and Roles and Responsibility
5) Selenium concept
6) programming related questions in any Language(C# , JAVA)
7) Output related Programs

Technical Lead Interview Questions & Answers

user image Anand Kumar

posted on 17 Dec 2020

Interview Questionnaire 

3 Questions

  • Q1. Professional introduction
  • Q2. Project handled and details
  • Q3. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - The company being into engineering services they would look for a balance between your technical and behavioral skills. You need to be very good with the project you have handled in your current/previous organization(s) and the way you present your technical skills will add more to the score. This company also seeks an excellent presentation skill and good communication.

Quest Global interview questions for designations

 Technical Architect

 (1)

 Lead Engineer

 (20)

 Project Lead

 (2)

 Automation Test Lead

 (1)

 Lead Software Engineer

 (1)

 Technical Manager

 (2)

 Team Lead

 (3)

 Lead Mechanical Engineer

 (2)

I was interviewed in Aug 2020.

Interview Questionnaire 

1 Question

  • Q1. Mostly practical questions on what I have worked upon and how I proved to be valuable to the companies I worked with. Theoritical knowledge is of little use.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself. No pretensions to be over smart. Be honest with answers.Show your dedication and enthusiasm towards work with real examples.

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Fake Interview, Didn't expect this from virtusa
  • Q2. FakeInterviews conducted, Didn;t expect this from virtusa
  • Q3. Virtusa Scammers

Interview Preparation Tips

Interview preparation tips for other job seekers - No real interview, fake interview only to understand the Gen AI topics & Projects.
He conducted interview, If you don't know go and learn from Coursera, DeepLearning.ai

Why wasting the time of peoples, Interviewer name : Sudhakar Chigurupati
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions about Interfaces,, Abstract Classes, Multi-Threading, Parallel Programming concepts, SQL Server
Round 2 - Technical 

(1 Question)

  • Q1. Questions about Design Patterns, SOLID Principles, Extension Methods, LINQ, Entity Framework
Round 3 - Behavioral 

(1 Question)

  • Q1. Questions about current project and my roles and responsibilities, my salary structure, my aspirations whether I want to be Architect or just Team Lead.
Round 4 - HR 

(1 Question)

  • Q1. My CTC and ECTC, and asked for negotiation, to which I said yes and accepted the compensation they can offer to me. But still offer letter not released without giving any reason.

Interview Preparation Tips

Interview preparation tips for other job seekers - After clearing all rounds, even then offer letter was not released. No proper reason shared for it. Very unprofessional.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SOA vs Micro Service
  • Ans. 

    SOA focuses on large, monolithic services while Microservices are small, independent services.

    • SOA is a centralized architecture with shared services, while Microservices are decentralized with each service having its own database.

    • SOA is typically implemented using ESB (Enterprise Service Bus), while Microservices communicate via lightweight protocols like HTTP or messaging queues.

    • SOA is more suitable for large enterpri...

  • Answered by AI

Skills evaluated in this interview

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

Round robin base in os schedule

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Is live data is life cycle aware. If it's aware what does ViewModel do?
  • Ans. 

    Yes

    • LiveData is lifecycle aware and can be used to observe changes in data.

    • ViewModel provides a way to store and manage UI-related data across configuration changes.

    • ViewModel can hold LiveData objects to provide data to the UI.

    • LiveData and ViewModel work together to ensure data consistency and prevent memory leaks.

  • Answered by AI
  • Q2. How does viewmodel survive when activity is destroyed on configuration?
  • Ans. 

    The ViewModel survives configuration changes by being retained by the system.

    • ViewModels are designed to survive configuration changes like screen rotations or language changes.

    • When an activity is destroyed and recreated, the ViewModel is not destroyed and retains its data.

    • The ViewModel is associated with the activity's lifecycle and is retained until the activity is finished.

    • The retained ViewModel instance can be acces...

  • Answered by AI
  • Q3. Advantage of mvp over mvc.
  • Ans. 

    MVP offers better separation of concerns and easier unit testing compared to MVC.

    • MVP separates the presentation layer from the business logic, making it easier to maintain and modify the codebase.

    • MVP allows for easier unit testing as the presenter can be tested independently from the view.

    • MVP provides better decoupling between components, enabling easier code reuse and scalability.

    • MVP promotes a clear separation of con...

  • Answered by AI
  • Q4. How does SSL pinning works?
  • Ans. 

    SSL pinning is a security technique that ensures a client only communicates with a server using a pre-defined public key.

    • SSL pinning involves hardcoding the server's public key in the client's code or configuration.

    • During the SSL handshake, the client checks if the server's public key matches the pinned key.

    • If the keys match, the connection is established; otherwise, it is rejected.

    • Pinning prevents man-in-the-middle at

  • Answered by AI
  • Q5. How do you achieve data security when saving data persistanly.
  • Ans. 

    Data security can be achieved through encryption, access controls, backups, and regular security audits.

    • Encrypt sensitive data using strong encryption algorithms.

    • Implement access controls to restrict unauthorized access to the data.

    • Regularly backup the data to prevent data loss.

    • Conduct regular security audits to identify and fix vulnerabilities.

    • Use secure protocols and communication channels for data transfer.

    • Implement...

  • Answered by AI
  • Q6. Where to save encription key?
  • Ans. 

    Encryption keys should be securely stored in a separate key management system.

    • Encryption keys should not be stored alongside the encrypted data.

    • Use a dedicated key management system (KMS) to store and manage encryption keys.

    • Implement strong access controls and authentication mechanisms for the KMS.

    • Consider using hardware security modules (HSMs) for added security.

    • Regularly rotate encryption keys to minimize the impact

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare your current implementation projected thoroughly.

Skills evaluated in this interview

Quest Global Interview FAQs

How many rounds are there in Quest Global Technical Lead interview?
Quest Global interview process usually has 2 rounds. The most common rounds in the Quest Global interview process are One-on-one Round, Technical and Coding Test.
How to prepare for Quest Global Technical Lead 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 C++, Engineering Services, Python, Quest and Linux.
What are the top questions asked in Quest Global Technical Lead interview?

Some of the top questions asked at the Quest Global Technical Lead interview -

  1. Technical questi...read more
  2. Sql queries join and left j...read more

Tell us how to improve this page.

Quest Global Technical Lead Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more
Quest Global Technical Lead Salary
based on 509 salaries
₹8.5 L/yr - ₹32.7 L/yr
5% more than the average Technical Lead Salary in India
View more details

Quest Global Technical Lead Reviews and Ratings

based on 51 reviews

3.6/5

Rating in categories

3.3

Skill development

3.4

Work-life balance

3.2

Salary

3.2

Job security

3.3

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 51 Reviews and Ratings
BLE Stack Technical Lead

Bangalore Rural

10-15 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
2.4k salaries
unlock blur

₹4.7 L/yr - ₹20 L/yr

Software Engineer
1.7k salaries
unlock blur

₹2.8 L/yr - ₹9.2 L/yr

Senior Engineer
1.7k salaries
unlock blur

₹4.8 L/yr - ₹18.3 L/yr

Lead Engineer
1.6k salaries
unlock blur

₹7.5 L/yr - ₹23.5 L/yr

Design Engineer
605 salaries
unlock blur

₹2.4 L/yr - ₹10.2 L/yr

Explore more salaries
Compare Quest Global with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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