Upload Button Icon Add office photos
Engaged Employer

i

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

ValueLabs Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 1.7k Reviews

Filter interviews by

ValueLabs Sdet Engineer Interview Questions and Answers

Updated 14 May 2023

ValueLabs Sdet Engineer Interview Experiences

1 interview found

Sdet Engineer Interview Questions & Answers

user image vijay govindu

posted on 14 May 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at CVR College of Engineering, Hyderabad and was interviewed before May 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Questions on operating system and automata related
  • Q2. Questions on data structures and algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA is more important for any employee

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. Multiple questions on Linux , how to get a process id, how to kill a process, what is difference between process and thread, what is the difference between concurrent and parallel process etc.
  • Q2. Few scenario based questions around linux systems, how will you trouble shoot if client not able to connect to servers running an appilcation.
  • Q3. Testing related questions, what is diff between Performance and Scale testing, where to use which one
Round 2 - Technical 

(2 Questions)

  • Q1. Coding questions basics, related to file handling, parsing files, etc.
  • Q2. Linux based questions - scenarios where multiple clients trying to write to same file, how till integrity of file be maintained and how will server manager the data does not get corrupted.

Sde1 Interview Questions & Answers

Cyient user image Anonymous

posted on 7 Jan 2025

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

(1 Question)

  • Q1. What is your expected salary?

Interview Preparation Tips

Interview preparation tips for other job seekers - Inform her of a smaller amount.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Array sorting for a given input.
  • Ans. 

    Array sorting for a given input involves arranging elements in a specific order.

    • Use built-in sorting functions like sort() in programming languages such as Java, Python, or JavaScript.

    • Consider the sorting algorithm complexity for large arrays.

    • Ensure the sorting is done based on the specific requirements like alphabetical order or numerical order.

  • Answered by AI
  • Q2. Rotation of array to right by 2 position
  • Ans. 

    Rotate array to right by 2 positions

    • Create a new array with the same length as the original array

    • Copy elements from original array starting from index (length - 2) to the new array

    • Copy elements from original array starting from index 0 to (length - 3) to the new array

    • Return the new array as the rotated array

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Ask about java streams and lambda function?
  • Q2. Questions from scenario based testing

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

3 hour test aptitue test

Round 2 - Coding Test 

C aptitude questions and problem solving solution.. Coding test 2 hour

Round 3 - Technical 

(1 Question)

  • Q1. Technical interview 1 hr

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for aptitude test
Round 1 - Technical 

(2 Questions)

  • Q1. Basic fundamentals were asked for each cs subject
  • Q2. What is cloud and api Some basic codes were also there

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep kalm and focus on basics not very hard question will be asked only basics

I was interviewed in May 2022.

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 - Technical 

(2 Questions)

  • Q1. There are three rounds. 1) technical discussion 2) Managerial Round 3) Client round questions level started from basic and it went into advance level
  • Q2. 1)some basic questions on selenium and some scenario questions 2) some basic questions on python

Interview Preparation Tips

Interview preparation tips for other job seekers - Please go through once your resume before your technical interview
worked on basic concepts and some coding skills

SDE-2 Interview Questions & Answers

Mphasis user image Anonymous

posted on 17 Dec 2021

I was interviewed in Aug 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Technical Interview round that lasted for about 45 minutes. Questions were based on Java, Java design Patterns and OOPS Concepts.

  • Q1. What are static methods in interfaces?
  • Ans. 

    Static methods are useful for designing utility methods since they contain method implementation that is owned by the interface and invoked using the interface name. They cannot be overridden.

  • Answered Anonymously
  • Q2. Why was a new version of Java (Java 8) needed in the first place?
  • Ans. 

    There are two primary reasons for this:
    1. Due to significant developments in hardware, Java now needs to make better use of multi-core CPUs.
    2. Make new Functional Programming (FP) features available to users.

  • Answered Anonymously
  • Q3. In how many ways can you create a singleton pattern in Java?
  • Ans. 

    There are two ways of creating a Singleton pattern.
    1. Early Instantiation : It is responsible for the creation of instance at load time.
    2. Lazy Instantiation : It is responsible for the creation of instance when required.

  • Answered Anonymously
Round 2 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round that lasted for about 45 minutes. Questions were based on Spring boot and Microservices Concepts.

  • Q1. What is the difference between the Bridge Pattern and the Adapter Pattern in Java?
  • Ans. 

    The motive of the Adapter pattern is to make interfaces of one or more classes to look similar. The Bridge pattern is designed to isolate a class's interface from its implementation so we can vary or substitute the implementation without changing the client code.

  • Answered Anonymously
  • Q2. What is the difference between @RestController and @Controller in Spring Boot?
  • Ans. 

    @Controller Map of the model object to view or template and make it human readable but @RestController simply returns the object and object data is directly written in HTTP response as JSON or XML.

  • Answered Anonymously
  • Q3. What is the difference between Spring and Spring Boot?
  • Ans. 

    1. Spring framework is a java EE framework that is used to build applications. Spring Boot framework is mainly used to develop REST API’s
    2. The primary feature of the Spring framework is dependency injection. The main feature of the Spring Boot is Autoconfiguration. 
    3. The goal pf Spring is to make Java EE (Enterprise Edition) development easier, allowing developers to be more productive. Spring Boot provides the ...

  • Answered Anonymously
  • Q4. What is the difference between Monolithic and Microservices Architecture?
  • Ans. 

    Monolithic Architecture: It is "like a big container" where all the software components of an application are bundled together tightly. It is usually built as one large system and is one code-base. 
    Microservice Architecture: It involves structuring an application in the form of a cluster of small, autonomous services modeled around a business domain. The functional modules can be deployed independently, are scalab...

  • Answered Anonymously
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

This was a typical HR round with some standard Behavioral questions

  • Q1. Why should we hire you?
  • Ans. 

    Tip 1 : The cross questioning can go intense some time, think before you speak.
    Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.
    Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round, like what are the projects currently the company is investing, which team you are mentoring. How all is the...

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMphasis interview preparation:Topics to prepare for the interview - Java, Spring Boot Framework, Data Structures, Algorithms, System Design, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via campus placement at Jabalpur Engineering College, Jabalpur and was interviewed before Jan 2022. There were 3 interview rounds.

Round 1 - Coding Test 

2 codes and some technical MCQs

Round 2 - Technical 

(2 Questions)

  • Q1. Write program of Pascal Tree
  • Ans. 

    Pascal Tree is a binary tree where each node represents a row of Pascal's Triangle.

    • Create a binary tree with root node as 1

    • For each level, create left child as previous level's value and right child as previous level's value + parent value

    • Repeat until desired number of levels is reached

  • Answered by AI
  • Q2. Python language questions
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself, relocation and other general HR round questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare any one coding language and dsa well, having some knowledge of OS will be good

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I was interviewed before Feb 2023.

Round 1 - Aptitude Test 

Basic apti ques grammer and all

Round 2 - Technical 

(1 Question)

  • Q1. Java, spring, html

ValueLabs Interview FAQs

How many rounds are there in ValueLabs Sdet Engineer interview?
ValueLabs interview process usually has 2 rounds. The most common rounds in the ValueLabs interview process are Resume Shortlist and One-on-one Round.
How to prepare for ValueLabs Sdet 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 ValueLabs. The most common topics and skills that interviewers at ValueLabs expect are Automation Testing, Selenium Testing, C#, Cypress and Playwright.
What are the top questions asked in ValueLabs Sdet Engineer interview?

Some of the top questions asked at the ValueLabs Sdet Engineer interview -

  1. Questions on operating system and automata rela...read more
  2. Questions on data structures and algorit...read more

Tell us how to improve this page.

ValueLabs Sdet Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 801 Interviews
EPAM Systems Interview Questions
3.8
 • 534 Interviews
View all
ValueLabs Sdet Engineer Salary
based on 8 salaries
₹8.1 L/yr - ₹20.4 L/yr
15% less than the average Sdet Engineer Salary in India
View more details
Senior Software Engineer
2.2k salaries
unlock blur

₹4.6 L/yr - ₹25 L/yr

Software Engineer
820 salaries
unlock blur

₹7.1 L/yr - ₹14 L/yr

Analyst
543 salaries
unlock blur

₹8.5 L/yr - ₹32 L/yr

Technical Lead
412 salaries
unlock blur

₹12 L/yr - ₹42 L/yr

System Analyst
384 salaries
unlock blur

₹8.3 L/yr - ₹30 L/yr

Explore more salaries
Compare ValueLabs 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