Upload Button Icon Add office photos
Engaged Employer

i

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

AVASOFT Verified Tick

Compare button icon Compare button icon Compare
3.0

based on 240 Reviews

Filter interviews by

AVASOFT Test Engineer Interview Questions and Answers

Updated 26 Oct 2024

AVASOFT Test Engineer Interview Experiences

1 interview found

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Group Discussion 

General topics like Artificial Intelligence positive or negative impacts

Round 2 - Technical 

(1 Question)

  • Q1. Everything from resume
Round 3 - HR 

(1 Question)

  • Q1. General questions

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. SIP Call flow with headers
  • Ans. 

    SIP call flow involves signaling and media exchange between SIP devices with headers containing important information.

    • SIP INVITE message is sent to initiate a call

    • SIP 1xx responses indicate call progress

    • SIP 2xx response confirms call establishment

    • SIP ACK message acknowledges call setup

    • SIP BYE message terminates the call

  • Answered by AI
  • Q2. SIP mandatory headers
Round 2 - Technical 

(2 Questions)

  • Q1. SERVICE ROUTE,PATH AND RECORD ROUTE HEADER
  • Q2. K8's Deployment
  • Ans. 

    K8's Deployment refers to the deployment of applications on Kubernetes clusters.

    • Kubernetes (K8s) is an open-source container orchestration platform used for automating deployment, scaling, and management of containerized applications.

    • K8s Deployment involves defining the desired state of the application, creating deployment configurations, and managing the deployment process.

    • Deployment resources in K8s include Pods, Rep...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Mainly sql qns are asked to write

Round 2 - Technical 

(1 Question)

  • Q1. Java basic questions and sql
Round 3 - HR 

(1 Question)

  • Q1. To test our communication skills
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is oops ?
  • Ans. 

    Object-oriented programming paradigm that focuses on objects and classes for code organization and reusability.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (object)

    • Inheritance: ability of a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for different data types

    • Abstraction: hiding the complex implementation details an

  • Answered by AI
  • Q2. Method overloading and overriding

I applied via Recruitment Consultant and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Write defect report
  • Ans. 

    Defect report for login page

    • Steps to reproduce the issue

    • Expected behavior

    • Actual behavior

    • Severity level

    • Screenshot or video evidence

  • Answered by AI
  • Q2. Sql query on joints
  • Q3. Difference between sdlc and stlc
  • Ans. 

    SDLC is a software development process while STLC is a software testing process.

    • SDLC stands for Software Development Life Cycle and involves the entire process of software development from planning to deployment.

    • STLC stands for Software Testing Life Cycle and involves the process of testing the software to ensure it meets the requirements and is free of defects.

    • SDLC is focused on the development of the software while S...

  • Answered by AI
  • Q4. Differentiate retesting and regression testing
  • Ans. 

    Retesting is testing the same functionality again after fixing defects while regression testing is testing the unchanged functionality to ensure it still works after changes.

    • Retesting is done to ensure that the defects found in the previous test cycle have been fixed

    • Regression testing is done to ensure that the unchanged functionality still works after changes have been made

    • Retesting is done after fixing defects while ...

  • Answered by AI
  • Q5. Static and dynamic testing

Interview Preparation Tips

Interview preparation tips for other job seekers - They give only 2.4lpa for manual tester,you will get to know banking domain well but no automation testing is done there

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Aug 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 

Pattern program, array segregation prograk

Round 3 - One-on-one 

(3 Questions)

  • Q1. Selenium wait, oops concept
  • Q2. Collection in java
  • Ans. 

    Collection in Java is a framework that provides an architecture to store and manipulate a group of objects.

    • Collections are used to store, retrieve, manipulate, and communicate aggregate data.

    • Common collection types include List, Set, Map, and Queue.

    • Example: List names = new ArrayList<>(); names.add("Alice"); names.add("Bob");

    • Example: Set numbers = new HashSet<>(); numbers.add(1); numbers.add(2);

Answered by AI
  • Q3. TestNg question
  • Round 4 - HR 

    (1 Question)

    • Q1. Salary discussion

    Skills evaluated in this interview

    I applied via LinkedIn and was interviewed in Jan 2021. There were 3 interview rounds.

    Interview Questionnaire 

    4 Questions

    • Q1. What is Method Overloading and Overriding?
    • Ans. 

      Method Overloading is creating multiple methods with the same name but different parameters. Method Overriding is creating a new implementation of an existing method in a subclass.

      • Method Overloading is used to provide different ways to call the same method with different parameters.

      • Method Overriding is used to provide a new implementation of an existing method in a subclass.

      • Method Overloading is resolved at compile-tim...

    • Answered by AI
    • Q2. What is an abstract class?
    • Ans. 

      An abstract class is a class that cannot be instantiated and is used as a base class for other classes.

      • An abstract class can have abstract and non-abstract methods.

      • Abstract methods have no implementation and must be implemented by the derived class.

      • Non-abstract methods can have implementation and can be inherited by the derived class.

      • An abstract class can have constructors and fields.

      • An abstract class can be used to de...

    • Answered by AI
    • Q3. What is a static, super, and final keyword?
    • Ans. 

      Static, super, and final are Java keywords used for different purposes.

      • Static keyword is used to create class-level variables and methods.

      • Super keyword is used to call the parent class constructor or method.

      • Final keyword is used to create constants or prevent method or class overriding.

    • Answered by AI
    • Q4. What is a string? How to make "Zycus" string to "Zycus Infotech" in Java?
    • Ans. 

      A string is a sequence of characters. To make 'Zycus' string to 'Zycus Infotech' in Java, concatenate the two strings.

      • Use the '+' operator to concatenate the two strings.

      • Create a new string variable and assign the concatenated value to it.

      • Example: String str1 = 'Zycus'; String str2 = ' Infotech'; String result = str1 + str2;

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - First had an aptitude test which was easy and then had a face-to-face online interview with the recruiter who was very friendly and he asked some basic questions about Java OOPS.

    Skills evaluated in this interview

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

    (2 Questions)

    • Q1. Software Testing
    • Q2. Application based QA questions
    Round 2 - Technical 

    (2 Questions)

    • Q1. Software testing, QA and Resume based questions
    • Q2. Automation and programming related questions

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare well
    Instead of going in depth, focus on a basic and primary questions and be thorough on it
    Know everything mentioned in the resume
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    No response

    I was interviewed in Feb 2024.

    Round 1 - Technical 

    (3 Questions)

    • Q1. EVPN VXLAN BGP peering
    • Q2. Underlay link - ebgp inet-unicast peering is done overlay link - ibgp evpn signalling
    • Q3. GRE vs IPSEC and whats the difference
    • Ans. 

      GRE and IPSEC are both protocols used for secure communication over networks, but they have different purposes and implementations.

      • GRE (Generic Routing Encapsulation) is a tunneling protocol used to encapsulate a wide variety of network layer protocols inside virtual point-to-point links. It does not provide encryption or authentication.

      • IPSEC (Internet Protocol Security) is a suite of protocols used to secure Internet ...

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    Less than 2 weeks
    Result
    -
    Round 1 - Technical 

    (1 Question)

    • Q1. Testing general questions and defects metrics
    Round 2 - Technical 

    (1 Question)

    • Q1. Overall testing concepts and latest trends
    Round 3 - One-on-one 

    (1 Question)

    • Q1. Logical question and situations related questions

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Interview questions were general as per the JD mentioned

    AVASOFT Interview FAQs

    How many rounds are there in AVASOFT Test Engineer interview?
    AVASOFT interview process usually has 3 rounds. The most common rounds in the AVASOFT interview process are Group Discussion, Technical and HR.
    What are the top questions asked in AVASOFT Test Engineer interview?

    Some of the top questions asked at the AVASOFT Test Engineer interview -

    1. Everything from res...read more
    2. general questi...read more

    Tell us how to improve this page.

    AVASOFT Test Engineer Salary
    based on 5 salaries
    ₹3 L/yr - ₹4.5 L/yr
    36% less than the average Test Engineer Salary in India
    View more details

    AVASOFT Test Engineer Reviews and Ratings

    based on 1 review

    4.0/5

    Rating in categories

    4.0

    Skill development

    4.0

    Work-Life balance

    4.0

    Salary & Benefits

    4.0

    Job Security

    4.0

    Company culture

    4.0

    Promotions/Appraisal

    4.0

    Work Satisfaction

    Explore 1 Review and Rating
    Software Engineer
    222 salaries
    unlock blur

    ₹1.8 L/yr - ₹9 L/yr

    Data Engineer
    88 salaries
    unlock blur

    ₹3.5 L/yr - ₹8 L/yr

    Software Developer
    60 salaries
    unlock blur

    ₹2.6 L/yr - ₹10.6 L/yr

    Servicenow Developer
    51 salaries
    unlock blur

    ₹4 L/yr - ₹7 L/yr

    QA Engineer
    47 salaries
    unlock blur

    ₹3 L/yr - ₹8 L/yr

    Explore more salaries
    Compare AVASOFT with

    TCS

    3.7
    Compare

    Infosys

    3.7
    Compare

    Wipro

    3.7
    Compare

    HCLTech

    3.5
    Compare

    Calculate your in-hand salary

    Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
    Did you find this page helpful?
    Yes No
    write
    Share an Interview