Upload Button Icon Add office photos

VVDN Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

VVDN Technologies Qa Automation Testing Engineer Interview Questions, Process, and Tips

Updated 5 Feb 2025

VVDN Technologies Qa Automation Testing Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - Technical 

(14 Questions)

  • Q1. Tell me about Yourself
  • Q2. What is ARP? How it will work? Can we able to delete the ARP entry? And What is the command? How long the ARP entry will be there in table? What is ARP Poisoning?
  • Ans. 

    ARP stands for Address Resolution Protocol. It is used to map IP addresses to MAC addresses on a local network.

    • ARP is used to resolve IP addresses to MAC addresses on a local network.

    • ARP works by broadcasting a request for the MAC address of a specific IP address on the network.

    • Yes, ARP entries can be deleted using the 'arp -d' command.

    • ARP entries have a timeout period, typically around 2 minutes, after which they are ...

  • Answered by AI
  • Q3. What is DHCP? Explain in Detail?
  • Ans. 

    DHCP stands for Dynamic Host Configuration Protocol, used to automatically assign IP addresses to devices on a network.

    • DHCP is a network protocol that allows a server to automatically assign IP addresses to devices on a network.

    • It helps in reducing the manual effort required to configure IP addresses for each device.

    • DHCP servers maintain a pool of IP addresses and lease them to devices for a specific period of time.

    • Dev...

  • Answered by AI
  • Q4. What is TCP/UDP and how it will work?
  • Ans. 

    TCP (Transmission Control Protocol) and UDP (User Datagram Protocol) are two different protocols used for data transmission over networks.

    • TCP is a connection-oriented protocol that ensures reliable and ordered delivery of data packets.

    • UDP is a connectionless protocol that does not guarantee delivery or order of packets.

    • TCP uses handshaking to establish a connection between sender and receiver before data transfer.

    • UDP i...

  • Answered by AI
  • Q5. What is VLAN a d how it will work? Explain with scenario
  • Ans. 

    VLAN stands for Virtual Local Area Network, used to logically segment a network into multiple virtual networks.

    • VLANs help in improving network security by isolating traffic between different departments or groups.

    • They can also help in optimizing network performance by reducing broadcast traffic.

    • VLANs are configured at the switch level and allow devices in different VLANs to communicate with each other based on routing ...

  • Answered by AI
  • Q6. What is STP and how it will work?
  • Ans. 

    STP stands for Software Test Plan. It is a document that outlines the testing strategy, objectives, resources, and schedule for a software testing project.

    • STP defines the scope, approach, resources, and schedule of testing activities.

    • It helps in identifying the test environment, test deliverables, and test execution schedule.

    • STP also includes the roles and responsibilities of the testing team members.

    • It serves as a roa...

  • Answered by AI
  • Q7. How to check network connectivity speed? And how will you debug? How can you increase the frames size and how to capture the frames?
  • Ans. 

    To check network connectivity speed, use tools like speedtest.net. Debug by checking for network congestion or hardware issues. Increase frame size by adjusting MTU. Capture frames using tools like Wireshark.

    • Use tools like speedtest.net to check network connectivity speed

    • Debug by checking for network congestion, hardware issues, or misconfigured settings

    • Increase frame size by adjusting Maximum Transmission Unit (MTU)

    • Ca...

  • Answered by AI
  • Q8. Explain me Layer2 and Layer3 in detail
  • Ans. 

    Layer2 and Layer3 are network layers in the OSI model, responsible for data transmission and routing.

    • Layer2 (Data Link Layer) operates at the MAC address level, handling physical addressing and error detection.

    • Layer3 (Network Layer) operates at the IP address level, handling routing and logical addressing.

    • Layer2 switches operate at Layer2, while routers operate at Layer3.

    • Examples of Layer2 protocols include Ethernet an...

  • Answered by AI
  • Q9. What is ICMP and how it will work? How ping works?
  • Ans. 

    ICMP stands for Internet Control Message Protocol. It is used for network troubleshooting and diagnostic purposes.

    • ICMP is a protocol used by network devices to communicate error messages or operational information.

    • Ping is a tool that uses ICMP to send echo requests to a target host and waits for an echo reply.

    • Ping works by sending an ICMP echo request packet to the target host, which then responds with an echo reply if...

  • Answered by AI
  • Q10. What is the difference between RIP and OSPF? Explain me OSPF?
  • Ans. 

    RIP is a distance vector routing protocol while OSPF is a link-state routing protocol. OSPF uses Dijkstra algorithm for routing.

    • RIP stands for Routing Information Protocol and OSPF stands for Open Shortest Path First.

    • RIP uses hop count as the metric for path selection while OSPF uses cost.

    • OSPF is more scalable and efficient than RIP as it converges faster and supports VLSM.

    • OSPF uses areas to divide the network into sma...

  • Answered by AI
  • Q11. What is the difference between Cisco switch and other company switches? What is the difference between cisco switch and white box switch?
  • Ans. 

    Cisco switches are known for their reliability, advanced features, and high price point compared to other company switches.

    • Cisco switches are known for their high quality and reliability.

    • Cisco switches offer advanced features such as VLAN support, QoS, and security options.

    • Cisco switches are typically more expensive than switches from other companies.

    • White box switches are generic, off-the-shelf switches that are not b...

  • Answered by AI
  • Q12. What is SONIC cards?
  • Ans. 

    SONIC cards are a type of prepaid card used for making purchases at SONIC Drive-In restaurants.

    • Prepaid cards used at SONIC Drive-In restaurants

    • Can be used to pay for food and drinks

    • Can be reloaded with funds as needed

  • Answered by AI
  • Q13. Python program. Input: lst = [12,83,0,17,0,71] Output = [12,83,17,71,0,0] Answer: lst=[12, 83,0,17,0,71] ls=[] l=[] for i in lst: if i! = 0: ls.append(i) else: l.append(i) ...
  • Ans. 

    Python program to move all zeros to the end of a list while maintaining the order of non-zero elements.

    • Iterate through the input list and separate non-zero elements into one list and zeros into another list.

    • Concatenate the non-zero list with the zero list to get the desired output.

    • Print the final list with zeros at the end.

  • Answered by AI
  • Q14. Print the below mentioned pattern: * * * * * * * * * * * * * * *
  • Ans. 

    Print a pattern of stars in a pyramid shape.

    • Use nested loops to print spaces and stars in the desired pattern.

    • Start with one star at the top and increase the number of stars in each row.

    • Adjust the spacing to create the pyramid shape.

  • Answered by AI

Interview questions from similar companies

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

It was Average.......,....

Round 2 - Coding Test 

Medium level of difficulties

Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a QA Automation Testing Engineer with 5 years of experience in creating and executing test cases for software applications.

    • 5 years of experience in QA Automation Testing

    • Proficient in creating and executing test cases

    • Strong knowledge of automation tools like Selenium and JUnit

    • Experience in testing web and mobile applications

    • Familiar with Agile methodology

  • Answered by AI
  • Q2. Tell me about your family
  • Q3. How was your day

I was interviewed before Oct 2021.

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 

(2 Questions)

  • Q1. Prject architecture and your role
  • Q2. Automation Frameworks related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Please inform clearly to candidates about the interview process
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Question of test automation framework
  • Q2. Coding problems on Arrays, Strings
  • Q3. Basic questions on selenium
  • Q4. Git commands. What is git stash used for?
  • Ans. 

    Git stash is used to temporarily store changes that are not ready to be committed.

    • Git stash is used to save changes that are not ready to be committed, allowing you to switch branches or work on something else.

    • It is useful when you want to temporarily store changes without committing them.

    • You can later apply the stashed changes back to your working directory.

    • Example: git stash save 'work in progress'

    • Example: git stash

  • Answered by AI
  • Q5. How to handle conflicts in git
  • Ans. 

    Conflicts in git can be handled by resolving them through merging, rebasing, or using tools like git mergetool.

    • Communicate with team members to understand changes causing conflicts

    • Resolve conflicts by manually editing files or using git mergetool

    • Use git rebase to reapply changes on top of another branch

    • Merge conflicting branches after resolving conflicts

  • Answered by AI
  • Q6. Questions on Data Provider, TestNG annotations

Skills evaluated in this interview

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Difference between hash map and hash table
  • Ans. 

    HashMap is non-synchronized and allows null values and keys, while HashTable is synchronized and does not allow null values or keys.

    • HashMap is non-synchronized and not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values and keys, while HashTable does not allow null values or keys.

    • HashMap is generally preferred over HashTable for non-thread-safe operations due to better performance.

  • Answered by AI
  • Q2. What is final finally finalize
  • Ans. 

    final, finally, and finalize are keywords in Java used for different purposes.

    • final is a keyword used to declare constants, prevent method overriding, and prevent inheritance.

    • finally is a block of code that is always executed, whether an exception is thrown or not.

    • finalize is a method used for cleanup operations before an object is garbage collected.

  • Answered by AI
  • Q3. What is idempotent in API
  • Ans. 

    Idempotent in API means that making the same request multiple times has the same effect as making it once.

    • Idempotent operations produce the same result regardless of how many times they are called.

    • GET and PUT requests are typically idempotent, while POST requests are not.

    • For example, sending a PUT request to update a resource should have the same result whether it is sent once or multiple times.

  • Answered by AI
  • Q4. Pillars of JAVA and explain with example
  • Ans. 

    The pillars of JAVA are Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability of a method to do different things based on the ob...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Self introductions and java coding round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Python concept related prpgrams
  • Q2. Multithreaded related questions
Round 1 - Technical 

(2 Questions)

  • Q1. Describe Singleton design pattern.
  • Ans. 

    Singleton design pattern restricts the instantiation of a class to a single instance and provides a global point of access to it.

    • Ensures only one instance of a class exists

    • Provides a global point of access to the instance

    • Uses a private constructor to prevent external instantiation

    • Commonly used in logging, database connections, and configuration settings

  • Answered by AI
  • Q2. Explain the framework
  • Ans. 

    A framework is a set of guidelines, rules, and best practices used to develop software applications.

    • A framework provides a structure for organizing code and helps to ensure consistency across the application.

    • It can include libraries, tools, and templates to simplify development.

    • Examples of popular frameworks include React, Angular, and Django.

    • Frameworks can be used for both manual and automated testing.

    • They can also be...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Was asked almost everything that was on the resume.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Automation frameworks

I applied via Recruitment Consulltant and was interviewed in Mar 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic General questions .
Round 3 - Technical 

(1 Question)

  • Q1. Basic technical questions
Round 4 - HR 

(1 Question)

  • Q1. Basic technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - They will ask the basic technical questions. And some general questions.
Contribute & help others!
anonymous
You can choose to be anonymous

VVDN Technologies Interview FAQs

How many rounds are there in VVDN Technologies Qa Automation Testing Engineer interview?
VVDN Technologies interview process usually has 1 rounds. The most common rounds in the VVDN Technologies interview process are Technical.
What are the top questions asked in VVDN Technologies Qa Automation Testing Engineer interview?

Some of the top questions asked at the VVDN Technologies Qa Automation Testing Engineer interview -

  1. What is ARP? How it will work? Can we able to delete the ARP entry? And What is...read more
  2. How to check network connectivity speed? And how will you debug? How can you in...read more
  3. Python program. Input: lst = [12,83,0,17,0,71] Output = [12,83,17,71,0,0] Answ...read more

Recently Viewed

INTERVIEWS

Koch Business Solutions

No Interviews

INTERVIEWS

HTC Global Services

No Interviews

INTERVIEWS

Acxiom Consulting

No Interviews

CAMPUS PLACEMENT

Berhampur University

INTERVIEWS

Acxiom Consulting

No Interviews

INTERVIEWS

Koch Business Solutions

No Interviews

INTERVIEWS

Reliable Technosystems India

No Interviews

INTERVIEWS

Acxiom Consulting

No Interviews

INTERVIEWS

MSG Global Solutions

No Interviews

INTERVIEWS

Koch Business Solutions

No Interviews

Tell us how to improve this page.

VVDN Technologies Qa Automation Testing Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
VVDN Technologies Qa Automation Testing Engineer Salary
based on 9 salaries
₹4.1 L/yr - ₹7.5 L/yr
25% less than the average Qa Automation Testing Engineer Salary in India
View more details
Junior Engineer
1.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Engineer
714 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
369 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
329 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Embedded Software Engineer
311 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare VVDN Technologies with

Sasken

3.8
Compare

Happiest Minds Technologies

3.7
Compare

L&T Technology Services

3.3
Compare

LTIMindtree

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent