Upload Button Icon Add office photos

Filter interviews by

Vantiva Sdet Automation Test Engineer Interview Questions and Answers

Updated 26 Feb 2024

Vantiva Sdet Automation Test Engineer Interview Experiences

1 interview found

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

I applied via Job Portal and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. REST API related questions
  • Q2. Screen sharing and coding
  • Q3. One logical reasoning question
  • Q4. What is difference between PUT and POST
  • Ans. 

    PUT is used to update or replace an existing resource, while POST is used to create a new resource.

    • PUT is idempotent, meaning multiple identical requests will have the same effect as a single request

    • POST is not idempotent, meaning multiple identical requests may have different effects

    • PUT requires the client to specify the URI of the resource to update, while POST does not

    • PUT is typically used for updating existing reso...

  • Answered by AI
  • Q5. Only Three to four questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - First round JAVA coding and problem solving

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2022. 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 tips
Round 2 - Coding Test 

Basic Easy Level LeetCode Questions.

Round 3 - Coding Test 

Medium Level Questions from LeetCode along with questions on String and one scenario based DS question.

Round 4 - One-on-one 

(1 Question)

  • Q1. Manager Round where he asked me about my past experience and some basic day to day tasks
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Q1 - Delete all entries of a given number from a linked list.
Q2 - Find inorder traversal of a BST (with and without recursion).

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

I applied via Walk-in and was interviewed in Apr 2023. There were 5 interview rounds.

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

30 questions in 25 minutes including Quant and Logical questions

Round 3 - Coding Test 

2 coding ques in 30 min

Round 4 - Technical 

(2 Questions)

  • Q1. Online Tech interview asking ques from resume and coding based
  • Q2. Print reverse of a string
  • Ans. 

    Reverse a string using array of characters

    • Convert the string to an array of characters

    • Use a loop to iterate through the array in reverse order

    • Append each character to a new string to form the reversed string

  • Answered by AI
Round 5 - One-on-one 

(1 Question)

  • Q1. HR round asking basic hr question

Interview Preparation Tips

Topics to prepare for Nokia Networks Sdet Lead interview:
  • OOPS
  • Computer Networking
Interview preparation tips for other job seekers - Go through your resume well

Sdet Interview Questions & Answers

Nvidia user image Anonymous

posted on 27 May 2024

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

I applied via Campus Placement and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

C, C++, OS, aptitute test, OS concepts

Round 2 - Technical 

(3 Questions)

  • Q1. C, C++ data structures
  • Q2. Concept of pointers,double pointers
  • Ans. 

    Pointers are variables that store memory addresses of other variables. Double pointers store memory addresses of pointers.

    • Pointers are used to access and manipulate memory addresses of variables.

    • Double pointers are used to store memory addresses of pointers themselves, allowing for indirect access to variables.

    • Example: char *ptr; int **dptr;

  • Answered by AI
  • Q3. Lists, data structures, coding mcqs
Round 3 - HR 

(1 Question)

  • Q1. Are you planning to do Masters?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Array based problems
  • Q2. Reverse integer
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

DSA and Python based questions

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

They ask us 40 mcqs and 2 coding questions. Mcqs are from networking,OS,DS,Ada and also have questions of general aptitude like direction,blood relation. Coding question are not easy both the questions are from Graph.

Round 3 - Technical 

(2 Questions)

  • Q1. Subnetting, Supernetting,IPv4,Linkedlist,
  • Q2. Find unique character from a string and optimize it
  • Ans. 

    Find unique character from a string and optimize it

    • Use a hash table to store the frequency of each character in the string

    • Iterate through the hash table to find the character with frequency 1

    • If there are multiple characters with frequency 1, return the first one

    • Optimization: Stop iterating through the hash table once a character with frequency 1 is found

  • Answered by AI
Round 4 - Case Study 

They give me a scenario like you have to go from place A to place B then what should You consider.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Data Structure and Ada. After coding student must have knowledge of Operating Systems and Networking

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Basic Easy Level LeetCode Questions.

Round 3 - Coding Test 

Medium Level Questions from LeetCode along with questions on String and one scenario based DS question.

Round 4 - One-on-one 

(1 Question)

  • Q1. Manager Round where he asked me about my past experience and some basic day to day tasks
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 

(1 Question)

  • Q1. How to reverse the link list? find all possible sub sequences in a given array
  • Ans. 

    Reverse a linked list and find all possible subsequences in a given array.

    • To reverse a linked list, iterate through the list and change the next pointers of each node to the previous node.

    • To find all possible subsequences in an array, use recursion and generate all possible combinations of elements.

    • For example, given the array [1, 2, 3], the possible subsequences are [], [1], [2], [3], [1, 2], [1, 3], [2, 3], [1, 2, 3]

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - solve must do geekforgeeks question , try doing interviewbit

Skills evaluated in this interview

Vantiva Interview FAQs

How many rounds are there in Vantiva Sdet Automation Test Engineer interview?
Vantiva interview process usually has 1 rounds. The most common rounds in the Vantiva interview process are Technical.
What are the top questions asked in Vantiva Sdet Automation Test Engineer interview?

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

  1. what is difference between PUT and P...read more
  2. Only Three to four questions were as...read more
  3. Screen sharing and cod...read more

Tell us how to improve this page.

Senior Software Engineer
18 salaries
unlock blur

₹11 L/yr - ₹23.1 L/yr

Staff Software Engineer
14 salaries
unlock blur

₹19 L/yr - ₹30 L/yr

Software Engineer
13 salaries
unlock blur

₹10 L/yr - ₹12.6 L/yr

Test Engineer Staff
12 salaries
unlock blur

₹19 L/yr - ₹36.8 L/yr

Principal Software Engineer
9 salaries
unlock blur

₹33 L/yr - ₹49 L/yr

Explore more salaries
Compare Vantiva with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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