Upload Button Icon Add office photos
Engaged Employer

i

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

LambdaTest Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

LambdaTest Project Engineer Interview Questions and Answers

Updated 26 Apr 2023

LambdaTest Project Engineer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Apr 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Front and back end coding with synopsis

Round 2 - Assignment 

Problem solving skills

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Self intruduction
  • Q2. Project exaplaination
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How to print numbers 1-100 using two go routines sequentially
  • Ans. 

    Use two go routines to print numbers 1-100 sequentially

    • Create two go routines, one for printing odd numbers and one for printing even numbers

    • Use channels to synchronize the two go routines and ensure sequential printing

    • Start the odd number go routine first, then start the even number go routine

  • Answered by AI
  • Q2. How to write generator functions using go language
  • Ans. 

    Generator functions in Go language allow for efficient iteration over a sequence of values.

    • Use the 'yield' keyword to return values one at a time from the generator function.

    • Generator functions are defined with a 'func' keyword followed by the function name and 'chan' keyword.

    • Example: func myGenerator() chan int { }

    • Use a 'for' loop to iterate over the values returned by the generator function.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Why do we use sync.Cond and sync.once
  • Ans. 

    sync.Cond is used for signaling between goroutines and sync.Once is used for running initialization code only once.

    • sync.Cond is used for goroutines to wait for or signal each other when a certain condition is met

    • sync.Once is used to ensure a function is only executed once, typically used for initialization tasks

    • Example: Using sync.Cond to coordinate multiple goroutines accessing a shared resource

    • Example: Using sync.Onc...

  • Answered by AI
  • Q2. Understanding about reflect package
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 4 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Technology related question on basics if API
Round 3 - Technical 

(1 Question)

  • Q1. Manager level discussion - Technologies and Frameworks
  • Ans. Framework Structure overview and Technologies usage over the experience
  • Answered Anonymously
Round 4 - Technical 

(2 Questions)

  • Q1. Client Interview - Technologies and Frameworks
  • Q2. Framework explanation and Technologies usage
  • Ans. 

    Frameworks are tools that provide structure and guidelines for developing software applications. Technologies are the specific tools and languages used in development.

    • Frameworks like Angular, React, and Spring provide pre-built components and architecture for web development.

    • Technologies like HTML, CSS, JavaScript, Java, and SQL are commonly used in software development.

    • Choosing the right framework and technologies dep...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cigniti Technologies Senior Engineer interview:
  • QA Testing
  • Automation Testing
  • API

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical round
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - As for the salary as per the market norms atleast 18 lpa if having more than 5 years of experience

I applied via Naukri.com and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. All about functional testing
  • Q2. All about basic SQL, and testing methodologies
Round 2 - One-on-one 

(1 Question)

  • Q1. Manager round. al about the management queries,
Round 3 - HR 

(1 Question)

  • Q1. Behavoural and CTC discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Cigini is good organization for the new learners, if you want to learn cigniti is best plotform to work.

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mainly about framework and protractor details.

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 rounds of technical interview. One HR interview. Processing was very nice and fast. I got the offer within a week. Client interview round was very nice. If you have indepth knowledge and understanding then you definitely crack the interview.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Coding Test 

Array code to sort array in descending order

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

(1 Question)

  • Q1. Which should prefer flow or trigger
  • Ans. 

    It depends on the specific requirements and use case.

    • Use flows for declarative automation and to automate standard processes.

    • Use triggers for more complex automation and to perform custom logic.

    • Flows are easier to build and maintain, while triggers offer more flexibility and control.

    • Consider the complexity of the automation, the need for custom logic, and the scalability of the solution.

  • Answered by AI

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: PAPER DURATION: 3 hours
NO. OF QUESTIONS: 2 (20 marks each)
MAXIMUM MARKS: 20*2 = 40 marksQUESTION 1:
JSON Prettier:-Write a program which takes JSON as input and gives prettified JSONYou need to read JSON from STDIN. Input gives one line of uglified JSON.Output should be formatted JSON. Check the standard output link.Use 2 white spaces (not‘\t’) for one indentation.SAMPLE INPUT:{“group” : {list : [1,2,3]}, “list” : [“a”,”b”,”c”]}SAMPLE OUTPUT:{“group” : {List : [1,2,3]},“list” : [“a”,”b”,”c”]}EXPLANATION: Input will be uglifiedjson in one line and output will be prettified format of that. QUESTION 2:XML parse plus series computationEvaluate an expression given in XML format. Keys will be Expr- contains the entire expression. Elem – contains the digit, sum, Prod- contains two or more keys whose evaluation needs to be summed or multiplied respectively. Sub will contain 2 keys or more, where the second key onwards will have to be subtracted from the first one. Div- will contain 2 keys in which first key will need to be divided by second. SAMPLE INPUT:4673 SAMPLE OUTPUT:
20EXPLANATION:Input will be xml file through standard input. End of xml file marked by .
Duration: 180 minutes
Total Questions: 2

College Name: NA
Contribute & help others!
anonymous
You can choose to be anonymous

LambdaTest Interview FAQs

How many rounds are there in LambdaTest Project Engineer interview?
LambdaTest interview process usually has 3 rounds. The most common rounds in the LambdaTest interview process are Resume Shortlist, Coding Test and Assignment.

Recently Viewed

JOBS

Vyapar

No Jobs

INTERVIEWS

Prime Focus Technologies

No Interviews

REVIEWS

Vyapar

No Reviews

INTERVIEWS

LambdaTest

No Interviews

REVIEWS

Vyapar

No Reviews

INTERVIEWS

Moolya Software Testing

No Interviews

SALARIES

Vyapar

REVIEWS

Vyapar

No Reviews

LIST OF COMPANIES

Vyapar

Overview

INTERVIEWS

Cigniti Technologies

No Interviews

Tell us how to improve this page.

LambdaTest Project Engineer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

Indium Software Interview Questions
4.0
 • 162 Interviews
Vyapar Interview Questions
3.4
 • 53 Interviews
BrowserStack Interview Questions
3.6
 • 48 Interviews
Classplus Interview Questions
3.4
 • 28 Interviews
Fleetx.io Interview Questions
3.7
 • 28 Interviews
Springworks Interview Questions
4.6
 • 23 Interviews
View all
Member Technical Staff
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Solution Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Member of Technical Staff
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare LambdaTest with

BrowserStack

3.6
Compare

QASource

3.2
Compare

SmartBear

3.4
Compare

Sauce Labs

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