Upload Button Icon Add office photos
Engaged Employer

i

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

Mastek Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Mastek Senior QA Engineer Interview Questions and Answers

Updated 12 Aug 2024

Mastek Senior QA Engineer Interview Experiences

1 interview found

Senior QA Engineer Interview Questions & Answers

user image Kiran Kumar S S

posted on 12 Aug 2024

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

(1 Question)

  • Q1. SQl XML Pivot Joins

Interview questions from similar companies

I appeared for an interview in Sep 2017.

Interview Questionnaire 

4 Questions

  • Q1. Technical interview take by client technical person actually they are hiring for another client so they took total 3 technical round and final will HR round
  • Q2. Asking about life cycle of Dot net mvc contols entity frame work and SQL queries
  • Q3. Problem based on oops and SQL queries outputs
  • Q4. Basic questions about my self ,salary discussion basic formalities form I have to fill up

Interview Preparation Tips

Round: Test
Experience: There were around 15 objective question that includes mvc, c#.net and SQL server. It was very simple question like different types of filters,Acton results in mvc. Basic oops concept and dot net web page regarding

Round: Resume Shortlist
Experience: After completing test round another was technical round discussed maily for mvc and SQL server questions. Around 30 mint discussion. After qualify this round another round will start from client technical staff.

General Tips: It was for 2-3 year experience person very simple to crack but focus on you which profile you are looking for study interview questions from net
Skills: Dot net mve oops concept jQuery and SQL server

I appeared for an interview in Sep 2017.

Interview Questionnaire 

3 Questions

  • Q1. What is deadlock
  • Ans. 

    Deadlock is a situation where two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Deadlock occurs when two or more processes are stuck in a circular wait, where each process is waiting for a resource held by another process.

    • Four necessary conditions for deadlock are mutual exclusion, hold and wait, no preemption, and circular wait.

    • Example: Process A holds resource X a...

  • Answered by AI
  • Q2. Which technology you know and worked
  • Ans. 

    I have experience with various technologies including Java, Python, HTML/CSS, JavaScript, and SQL.

    • Java

    • Python

    • HTML/CSS

    • JavaScript

    • SQL

  • Answered by AI
  • Q3. Why you are looking for change and what is your notice period
  • Ans. 

    I am looking for a change to explore new opportunities and challenges. My notice period is 30 days.

    • Seeking new opportunities and challenges

    • Want to learn and grow in a different environment

    • Exploring better career prospects

    • Seeking a company with a better work-life balance

    • Notice period is 30 days

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 25 objective ques from Java and 25 from English
Tips: should prepare with Java Technology
Duration: 1 hour
Total Questions: 50

Round: Technical Interview
Experience: describe clearly
Tips: should prepared

Round: Technical Interview
Experience: do you know about jsf
Tips: yes, I worked

Round: Technical + HR Interview
Experience: this is my dream company actually, and notice is 15 to 20 days.
Tips: be confident

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Joins in SQL
  • Ans. 

    Joins are used in SQL to combine data from two or more tables based on a related column.

    • Types of joins include inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables.

    • Left join returns all rows from the left table and matching rows from the right table.

    • Right join returns all rows from the right table and matching rows from the left table.

    • Full outer join returns ...

  • Answered by AI
  • Q2. Web applications, mobile applications, Hybrid applications

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up the basics of Java and Mysql

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. They specifically didn’t asked any questions by looking at my strong resume but just asked me if to come Hyderabad for training of a month

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are good in technical knowledge then it would be easy for you to get opportunity here at client site you will learn a lot as mostly you will be at your own, companies technical support is not very good so mostly you are on your own

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

Interview Questionnaire 

1 Question

  • Q1. Questions on SDLC & STLC , system testing, regression testing, diff between functional and non functional testing, Smoke testing, Adhoc testing. Some simple SQL questions .

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to answer each amd every question correctly.

I applied via Campus Placement and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Concat two linked lists in alternative way
  • Ans. 

    Concatenate two linked lists alternatively

    • Create a new linked list

    • Traverse both linked lists simultaneously

    • Alternate between adding nodes from each list to the new list

    • If one list is longer than the other, add the remaining nodes to the end of the new list

  • Answered by AI
  • Q2. Java and oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Java and a certain of algo n ds

Skills evaluated in this interview

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

Interview Questionnaire 

2 Questions

  • Q1. More questions on which topic
  • Q2. Focus on c#, MVC and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well technically and scenario based questions also prepared.

I applied via LinkedIn and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Can we use this keyword inside static method?
  • Ans. 

    No, this keyword cannot be used inside a static method.

    • The 'this' keyword refers to the current instance of the class, but static methods do not have an instance.

    • Static methods can only access static variables and methods.

    • To access non-static variables or methods, an object of the class must be created first.

  • Answered by AI
  • Q2. What is CTE?
  • Ans. 

    CTE stands for Common Table Expression, a temporary named result set that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

    • CTE is defined using the WITH keyword.

    • It can be used to simplify complex queries.

    • It can also improve query performance.

    • CTE can be recursive, allowing a query to reference itself.

    • Example: WITH sales AS (SELECT * FROM sales_data) SELECT * FROM sales WHERE amount > 1000;

  • Answered by AI
  • Q3. Partialviews in mvc.
  • Ans. 

    Partialviews are reusable views in MVC that can be embedded in other views.

    • Partialviews help in reducing code duplication and improving maintainability.

    • They can be used to display common UI elements like headers, footers, etc.

    • Partialviews can also be used to render complex UI components like forms, tables, etc.

    • They can be passed data from the parent view using a model or ViewData.

    • Partialviews are rendered using the Htm

  • Answered by AI
  • Q4. TempData in mvc.
  • Ans. 

    TempData is a dictionary object used to store data temporarily between controller actions.

    • TempData is used to pass data between controller actions.

    • It is used to store data temporarily until the next request is made.

    • TempData is useful when redirecting to another action and you need to pass data along.

    • It can be used to display success or error messages to the user.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Pritty basic, extremly easy interview.
2 round technical and then HR.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. OOPs concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself.

Mastek Interview FAQs

How many rounds are there in Mastek Senior QA Engineer interview?
Mastek interview process usually has 1 rounds. The most common rounds in the Mastek interview process are Technical.

Tell us how to improve this page.

Mastek Senior QA Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 336 Interviews
NeoSOFT Interview Questions
3.6
 • 263 Interviews
3i Infotech Interview Questions
3.4
 • 143 Interviews
Microland Interview Questions
3.4
 • 128 Interviews
Sify Technologies Interview Questions
3.8
 • 123 Interviews
Maveric Systems Interview Questions
3.5
 • 115 Interviews
Sonata Software Interview Questions
3.4
 • 114 Interviews
View all
Mastek Senior QA Engineer Salary
based on 5 salaries
₹6 L/yr - ₹14.8 L/yr
22% less than the average Senior QA Engineer Salary in India
View more details

Mastek Senior QA Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

3.0

Salary

5.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
556 salaries
unlock blur

₹6.2 L/yr - ₹24 L/yr

Software Engineer
400 salaries
unlock blur

₹3 L/yr - ₹7.5 L/yr

Associate Consultant
291 salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Software Specialist
265 salaries
unlock blur

₹7.9 L/yr - ₹30 L/yr

Consultant 1
192 salaries
unlock blur

₹3.4 L/yr - ₹9.6 L/yr

Explore more salaries
Compare Mastek with

ITC Infotech

3.6
Compare

3i Infotech

3.4
Compare

Sify Technologies

3.8
Compare

Microland

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