Upload Button Icon Add office photos
Premium Employer

i

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

GEP Worldwide Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 993 Reviews

Filter interviews by

GEP Worldwide Sdet Engineer Interview Questions and Answers

Updated 28 Jun 2024

GEP Worldwide Sdet Engineer Interview Experiences

1 interview found

Sdet Engineer Interview Questions & Answers

user image Anonymous

posted on 28 Jun 2024

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

I applied via Referral and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Reverse of string and largest number in an array

Round 2 - Technical 

(2 Questions)

  • Q1. Java oops concepts, strings, arrays
  • Q2. Selenium xpaths, concepts and some other technical stuff

Interview questions from similar companies

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

(2 Questions)

  • Q1. Automation framework related questions
  • Q2. Java coding on strings

Sdet Interview Questions & Answers

Altimetrik user image Varsha Jyotiana

posted on 13 Jan 2025

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

(1 Question)

  • Q1. Questions based on java collections
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 Sep 2024. There was 1 interview round.

Round 1 - Coding Test 

Java Coding Test dsa program and all that

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

Reasoning techinical and coding based ques

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about exceptions
  • Q2. Asked about api chaining

Sdet Interview Questions & Answers

Incedo user image Vijay Prakash MJ

posted on 26 Apr 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Simple xpath without using Index reverse strings with words separately
  • Ans. 

    Reverse strings with words separately using simple xpath without using index

    • Use XPath function to split the string into words

    • Reverse each word individually using XPath function

    • Concatenate the reversed words back together

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Programming language well

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Django in depth questions
  • Q2. Django ORM related questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Automate calendar
  • Q2. OOps concept in java
  • Ans. 

    Object-oriented programming concepts in Java focus on classes, objects, inheritance, encapsulation, and polymorphism.

    • Classes are blueprints for objects

    • Objects are instances of classes

    • Inheritance allows a class to inherit properties and behaviors from another class

    • Encapsulation hides the internal state of an object and only exposes necessary functionalities

    • Polymorphism allows objects to be treated as instances of their

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Recerse string using java

Round 3 - Technical 

(1 Question)

  • Q1. Tell me all oops features
  • Ans. 

    Object-oriented programming features include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability for a class to inherit properties and behavior from another class.

    • Polymorphism: Ability for objects of different classes to respond to the same message in different ways.

    • Abstraction: Hiding the complex imp...

  • Answered by AI

I was interviewed in Feb 2022.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Easy

In this round, there are a total of 16 questions and the time given was 90 mins.

3 Coding questions – Easy, Medium, and Hard.
13 MCQs based on outputs, Computer fundamentals, Aptitude.

  • Q1. 

    N Queens Problem Statement

    You are provided with an integer 'N'. For an 'N' x 'N' chessboard, determine how to position 'N' queens such that no queen can attack another queen on the chessboard.

    Explanati...

  • Ans. Backtracking
    1. Instead of checking all the places on the chessboard, we can use backtracking and place queen row-wise or column-wise.
    2. Suppose we place queens row-wise, and we start with the very first row. Place the queen and move to the next row until either there is a solution or there are no viable cells left.
    3. As we backtrack, check to place the queen in the different columns of the same row.
    4. When we can place a queen at ...
  • Answered Anonymously
  • Q2. 

    Pair Sum Problem Statement

    Given an integer array ARR of size N and an integer S, your goal is to return a list of all pairs of elements such that the sum of elements of each pair equals S.

    Example:

    Inp...
  • Ans. Brute Force
    • Initialize a list to store our results.
    • For each element in the array 'ARR[i]', check if ('ARR[i]' + ‘ARR[j]’), equals to given sum or not, where ‘i’ < ‘j’ < ‘N’.
    • If the condition matches, add the pair('ARR[i]', ‘ARR[j]’) to the list. Sort the list of pairs as per the given output format and return this list.
    Space Complexity: O(1)Explanation:

    O(1).

     

    Constant extra space is required.

    Time Complexity: O...
  • Answered Anonymously
  • Q3. 

    Minimum Number of Platforms Needed Problem Statement

    You are given the arrival and departure times of N trains at a railway station for a particular day. Your task is to determine the minimum number of pl...

  • Ans. Space Complexity: O(1)Explanation: Time Complexity: O(1)Explanation:
  • Answered Anonymously
Round 2 - Coding Test 

Round duration - 120 minutes
Round difficulty - Easy

This round is an interesting experience to brainstorm, problem-solve and pair alongside a ThoughtWorks Developer that allows you to demonstrate hands-on coding, design, OOP, and solution skills on the code which you have submitted.The problem statement will be shared with you 20 minutes before the start time of the interview

Interview Preparation Tips

Eligibility criteriaNAThought Works interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare system design
Tip 2 : Practice coding questions
Tip 3 : Prepare and search previous interviews

Application resume tips for other job seekers

Tip 1 : Have atleast 3 great project
Tip 2 : Write only what you know and prepare well

Final outcome of the interviewRejected

Skills evaluated in this interview

GEP Worldwide Interview FAQs

How many rounds are there in GEP Worldwide Sdet Engineer interview?
GEP Worldwide interview process usually has 2 rounds. The most common rounds in the GEP Worldwide interview process are Technical and Coding Test.
What are the top questions asked in GEP Worldwide Sdet Engineer interview?

Some of the top questions asked at the GEP Worldwide Sdet Engineer interview -

  1. Selenium xpaths, concepts and some other technical st...read more
  2. Java oops concepts, strings, arr...read more

Tell us how to improve this page.

GEP Worldwide 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
Accenture Interview Questions
3.9
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Software Engineer
563 salaries
unlock blur

₹3.5 L/yr - ₹14.5 L/yr

Senior Consultant
363 salaries
unlock blur

₹11 L/yr - ₹28 L/yr

Process Associate
361 salaries
unlock blur

₹1.7 L/yr - ₹3.5 L/yr

Senior Sourcing Analyst
314 salaries
unlock blur

₹5 L/yr - ₹10.2 L/yr

Sourcing Analyst
297 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

Explore more salaries
Compare GEP Worldwide with

Accenture

3.9
Compare

IBM

4.0
Compare

Infosys

3.6
Compare

TCS

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