Upload Button Icon Add office photos
Engaged Employer

i

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

GoComet Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

GoComet Sdet Automation Test Engineer Interview Questions and Answers

Updated 9 Dec 2024

GoComet Sdet Automation Test Engineer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Basic logical coding questions

Round 2 - Assignment 

Automation assignment

Round 3 - Cofounder 

(2 Questions)

  • Q1. Skill based questions
  • Q2. Assignment review

Interview questions from similar companies

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

I applied via Instahyre and was interviewed in Sep 2022. There were 5 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 - Assignment 

To design an automation framework with some test cases and upload it over git.

Round 3 - Technical 

(1 Question)

  • Q1. Questions based on assigments, selenium, java oops, api, functional testing and regarding previous projects.
Round 4 - Technical 

(1 Question)

  • Q1. Java programs, Rest assured, selenium, pojo classes, java 8, ui testing, api testing and managerial questions.
Round 5 - HR 

(1 Question)

  • Q1. About your self, salary negotiation, previous projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good in java programming and functional testing.
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 Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

1 coding question based on OOPS concepts

java program for shopping bills contains product name, price, GST on quantity price more than 500 with 5% discount on each item

Round 3 - Technical 

(1 Question)

  • Q1. Oops, java and Selenium

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st round coding > HR technical> HR
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Coding Test 

Coding is based scenario question , we have to write the code in paper. There is 1 hour time to complete the coding test.

Round 3 - Technical 

(1 Question)

  • Q1. I am unable to attend the second round.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Find the second most occurrence of string.
  • Ans. 

    Find the second most occurrence of string in an array of strings.

    • Create a dictionary to store the count of each string in the array

    • Sort the dictionary by count in descending order

    • Return the key of the second element in the sorted dictionary

  • Answered by AI
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Aug 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Before Aptitude Test, There was a telephonic interview round in which they test your communication and ask questions about your education and projects. You just have to show your confidence to pass this round. After that, the aptitude test was quite easy. There are 15 questions all are doable in just 15 to 20 minutes of time span.

Round 2 - Coding Test 

After that, The coding round takes place in which they provide you with a device with an online compiler of your preferred programming language and ask you to solve 4 questions without using any built-in function. The questions are based on Linked Lists, Stacks, Arrays, etc. You have to do it all manually. This round lasts up to 1 hour.

Round 3 - Technical 

(1 Question)

  • Q1. The technical round takes place in which they ask different questions from your coding round, a few concept-based ones, and also a few questions to test your thinking and problem-solving abilities like the...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared very well. Also, do not lose hope if not get selected.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Aptitude Test 

Easy aptitude test containing mathematics and logical questions

Round 2 - Coding Test 

4 leetcode easy to medium level

Round 3 - One-on-one 

(1 Question)

  • Q1. Questions on project and tech stack.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Find the second most occurrence if string in JavaScript
  • Ans. 

    Find the second most occurrence of a string in an array of strings in JavaScript.

    • Create a map to store the count of each string in the array

    • Sort the map by values in descending order to find the most occurrence

    • Return the key of the second element in the sorted map

  • Answered by AI

Skills evaluated in this interview

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 - Coding Test 

Coding test in any language

Round 3 - Group Discussion 

Any topics for the GD

Round 4 - One-on-one 

(4 Questions)

  • Q1. Experience about the java script
  • Q2. My work experience about the java scirpt
  • Q3. Palindrome in any code language
  • Ans. 

    A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Check if the input string is equal to its reverse

    • Ignore spaces and punctuation when checking for palindromes

    • Convert the input string to lowercase for case-insensitive comparison

  • Answered by AI
  • Q4. Other general maths programming questions

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Peak element in array
  • Ans. 

    A peak element in an array is an element that is greater than or equal to its neighbors.

    • Iterate through the array and check if the current element is greater than its neighbors.

    • If the element at index i is greater than or equal to elements at indices i-1 and i+1, it is a peak element.

    • Example: ['1', '3', '2', '4', '1'] has peak elements at index 1 and 3.

  • Answered by AI
  • Q2. 2 dimentional array rotate 90 degree
  • Ans. 

    Rotate a 2D array by 90 degrees clockwise

    • Transpose the array

    • Reverse each row of the transposed array

  • Answered by AI
Round 2 - Group Discussion 

Pollitices current generation

Skills evaluated in this interview

GoComet Interview FAQs

How many rounds are there in GoComet Sdet Automation Test Engineer interview?
GoComet interview process usually has 3 rounds. The most common rounds in the GoComet interview process are Coding Test and Assignment.
What are the top questions asked in GoComet Sdet Automation Test Engineer interview?

Some of the top questions asked at the GoComet Sdet Automation Test Engineer interview -

  1. Skill based questi...read more
  2. Assignment rev...read more

Tell us how to improve this page.

GoComet Sdet Automation Test Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 28 Interviews
Bonami Software Interview Questions
4.1
 • 22 Interviews
Koantek Interview Questions
3.4
 • 17 Interviews
Ivanti Interview Questions
3.5
 • 14 Interviews
WinZO Interview Questions
4.0
 • 14 Interviews
SentientGeeks Interview Questions
4.2
 • 13 Interviews
TestVagrant Interview Questions
3.4
 • 13 Interviews
View all

Fast track your campus placements

View all

GoComet Sdet Automation Test Engineer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

4.5

Job security

5.0

Company culture

4.5

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Customer Success Manager
8 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Inside Sales Executive
8 salaries
unlock blur

₹6 L/yr - ₹8.5 L/yr

Sales Development Representative
7 salaries
unlock blur

₹6.5 L/yr - ₹8.5 L/yr

Software Development Engineer II
7 salaries
unlock blur

₹15 L/yr - ₹17.6 L/yr

Senior Customer Success Manager
7 salaries
unlock blur

₹8.5 L/yr - ₹10.5 L/yr

Explore more salaries
Compare GoComet with

NexTurn

4.1
Compare

Kanerika Software

4.5
Compare

Smarter BIZ Technologies

3.2
Compare

Nxtra Data

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