Upload Button Icon Add office photos

Filter interviews by

MaaxtreeM Software Tester Interview Questions, Process, and Tips for Experienced

Updated 19 Nov 2020

MaaxtreeM Software Tester Interview Experiences for Experienced

1 interview found

I applied via LinkedIn and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. What is the difference between Alfa testing and beta testing
  • Ans. 

    Alfa testing is done by the developers before releasing the software to the testers. Beta testing is done by the end-users after the software is released.

    • Alfa testing is done in a controlled environment, whereas beta testing is done in a real-world environment.

    • Alfa testing is done by the developers, whereas beta testing is done by the end-users.

    • Alfa testing is done before the software is released, whereas beta testing ...

  • Answered by AI
  • Q2. What is the difference between system testing and integration testing
  • Ans. 

    System testing verifies the entire system as a whole, while integration testing verifies the interaction between different components.

    • System testing checks the system's compliance with requirements and specifications

    • Integration testing checks the interaction between different modules or components

    • System testing is done after integration testing

    • System testing is a black box testing technique

    • Integration testing is a whit...

  • Answered by AI
  • Q3. How to get the selected drop down list value
  • Ans. 

    To get the selected drop down list value, use the getSelectedValue() method.

    • Use the getSelectedValue() method to get the selected value from the drop down list.

    • Identify the drop down list element using its ID or name.

    • Call the getSelectedValue() method on the identified element.

    • Store the returned value in a variable for further use.

  • Answered by AI
  • Q4. Where you use list in selenium
  • Ans. 

    Lists are used in Selenium to store and manipulate web elements.

    • To store a group of web elements

    • To iterate through a list of web elements

    • To select multiple options from a dropdown

    • To verify the order of elements on a page

  • Answered by AI
  • Q5. How write xpath based on preceding xpath like...
  • Ans. 

    Answer on how to write xpath based on preceding xpath.

    • Use the 'preceding' axis in the xpath expression.

    • The 'preceding' axis selects all nodes that come before the current node in the document.

    • Combine the 'preceding' axis with other axes or predicates to create a more specific xpath expression.

    • Example: //div[@class='container']//preceding::input[@type='text']

  • Answered by AI
  • Q6. How to switch one window to other
  • Ans. 

    To switch one window to another, use the window handles and switch to the desired window.

    • Get the current window handle using driver.getWindowHandle()

    • Get all window handles using driver.getWindowHandles()

    • Switch to the desired window using driver.switchTo().window(handle)

    • Example: String currentHandle = driver.getWindowHandle(); Set<String> handles = driver.getWindowHandles(); for (String handle : handles) { if (!ha...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple questions they asked

Skills evaluated in this interview

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Swap two number with and without temporary variable
  • Ans. 

    Swap two numbers with and without temporary variable

    • Without temporary variable: Use addition and subtraction

    • With temporary variable: Use a third variable to store the value of one of the numbers

    • Example without temporary variable: a=5, b=7; a=a+b; b=a-b; a=a-b;

    • Example with temporary variable: a=5, b=7; temp=a; a=b; b=temp;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be afraid. It companies take interview to select you. And if you are selected in this company you are not lucky enough so try hard.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What is second level cache?How to implement second level cache?How to optimize sql query?what are solid principles?
  • Ans. 

    Second level cache is a caching mechanism used to improve performance by storing frequently accessed data in memory.

    • Second level cache is implemented at the application level and can be configured using frameworks like Hibernate.

    • To optimize SQL queries, one can use indexes, avoid using SELECT *, and use JOINs instead of subqueries.

    • SOLID principles are a set of design principles for writing maintainable and scalable cod...

  • Answered by AI
  • Q2. Mostly FAQ but somewhat in depth?
  • Q3. How to deploy application in aws?
  • Ans. 

    To deploy an application in AWS, you need to create an EC2 instance, configure security groups, install necessary software, and upload your application code.

    • Create an EC2 instance in the desired region and select the appropriate instance type

    • Configure security groups to allow traffic to and from the instance

    • Install necessary software and dependencies on the instance

    • Upload your application code to the instance

    • Start the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic faq but in depth,Interview level is easy to medium.They will ask only theory .No practical algorithm test.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic communication skills were tested. Sone techical questn too. Versant test is mandatory

Interview Preparation Tips

Interview preparation tips for other job seekers - Please never go for these third party vendors. They misguide you regarding profile . I went for this third party vendor named savantis solution and it really misguided me

I applied via Company Website and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is my longterm and short-term goals.
  • Ans. My short-term is to become an expert in solving queries And long term is to become valuable employee in an organisation and managing a team, also helping new recruits to learn the work.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent and friendly-nature interview

I applied via Campus Placement and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. THERE WERE 4 ROUNDS.1-APTITUDE 2-PSEUDO TEST 2-TECHNICAL INTERVIEW 4-HR ROUND
  • Q2. 1ST ROUND WAS VERY SIMPLE 2ND WAS LITTLE COMPLEX 3RD&4TH ROUND WAS VERY SIMPLE

Interview Preparation Tips

Interview preparation tips for other job seekers - PREPARE BASIC PROGRAMMING CONCEPTS AND APTITUDE

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Where do we use BigInteger in java ?
  • Ans. 

    BigInteger is used for mathematical operations involving very large integers in Java.

    • BigInteger is used when the range of values supported by primitive data types like int and long is not sufficient.

    • It is commonly used in cryptography and security applications.

    • It provides methods for arithmetic, bitwise, and logical operations on large integers.

    • Example: calculating factorial of a large number, generating large prime nu

  • Answered by AI
  • Q2. Merge Sort Algo code in java
  • Ans. 

    Merge Sort Algo code in java

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

    • Time complexity: O(n log n)

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Genpact Software Engineer interview:
  • Core Java
  • DSA
Interview preparation tips for other job seekers - Not a very good interview experience. I was asked 2-3 questions only. Not satisfied with interview process.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. In and out of project. How bucketing concept works. Data localisation in Hadoop. Persistence in spark.

Interview Preparation Tips

Interview preparation tips for other job seekers - Project should be explained well and basic concepts should be cleared.

Interview Questionnaire 

2 Questions

  • Q1. No question asked
  • Q2. They call and said we will give 10k only

Interview Preparation Tips

Interview preparation tips for other job seekers - In pandamic i gave my interview so this would be reason that they didnt ask much question
Because of lockdown

Interview Questionnaire 

1 Question

  • Q1. Java collection

Interview Preparation Tips

Interview preparation tips for other job seekers - In hackathon , there is no interview round.

MaaxtreeM Interview FAQs

What are the top questions asked in MaaxtreeM Software Tester interview for experienced candidates?

Some of the top questions asked at the MaaxtreeM Software Tester interview for experienced candidates -

  1. What is the difference between system testing and integration test...read more
  2. What is the difference between Alfa testing and beta test...read more
  3. How write xpath based on preceding xpath like...read more

Tell us how to improve this page.

MaaxtreeM Software Tester Salary
based on 13 salaries
₹3 L/yr - ₹6 L/yr
9% less than the average Software Tester Salary in India
View more details

MaaxtreeM Software Tester Reviews and Ratings

based on 2 reviews

1.7/5

Rating in categories

1.0

Skill development

1.7

Work-life balance

2.7

Salary

1.7

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 2 Reviews and Ratings
SQL Developer
24 salaries
unlock blur

₹2.3 L/yr - ₹5 L/yr

Softwaretest Engineer
20 salaries
unlock blur

₹1.2 L/yr - ₹7.4 L/yr

Software Tester
13 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Software Developer
9 salaries
unlock blur

₹1.7 L/yr - ₹7.6 L/yr

DOT NET Developer
8 salaries
unlock blur

₹3.1 L/yr - ₹7.6 L/yr

Explore more salaries
Compare MaaxtreeM with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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