Upload Button Icon Add office photos

Filter interviews by

Marquis Technologies Senior Test Engineer Interview Questions and Answers

Updated 14 Apr 2023

Marquis Technologies Senior Test Engineer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Apr 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 - HR 

(1 Question)

  • Q1. What is your name.
Round 3 - Technical 

(3 Questions)

  • Q1. LTE techniqual knowldege, College Project, techniqual skills
  • Q2. VoLTE, IMS, EPSFB, CSFB, SRVCC, VoNR
  • Q3. Hydrophonic fodder machine
Round 4 - Behavioral 

(1 Question)

  • Q1. Are you willing travel overseas

Interview Preparation Tips

Interview preparation tips for other job seekers - Work only their according to your agreements.

Interview questions from similar companies

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

I appeared for an interview before Mar 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about a time you had to learn a new skill quickly?
  • Ans. 

    I quickly learned automation testing tools to enhance our testing process and improve efficiency in a tight deadline project.

    • Identified the need for automation in our testing process due to repetitive manual tasks.

    • Researched and selected Selenium as the most suitable tool for our web application.

    • Dedicated extra hours after work to complete online courses and tutorials on Selenium.

    • Collaborated with a colleague who had e...

  • Answered by AI
  • Q2. How do you priorities multiple task?
  • Ans. 

    I prioritize tasks by assessing urgency, impact, and deadlines, ensuring efficient workflow and timely delivery of quality results.

    • Assess urgency: Identify tasks that are time-sensitive, such as critical bug fixes that could impact release schedules.

    • Evaluate impact: Focus on tasks that have the highest impact on project goals, like testing core functionalities over minor features.

    • Use a prioritization matrix: Categorize...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be proactive, persistent, and continuously learn to improve, stay adaptable, and open to new opportunities in your job search.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024.

Round 1 - HR 

(3 Questions)

  • Q1. Can you walk us through your experience in software testing and quality assurance?
  • Ans. 

    Experienced Test Engineer with a strong background in software testing, automation, and quality assurance methodologies.

    • Over 5 years of experience in manual and automated testing across various applications.

    • Proficient in using testing tools like Selenium, JIRA, and TestRail for test management and automation.

    • Led a team in implementing a CI/CD pipeline that reduced deployment time by 30%.

    • Conducted performance testing us...

  • Answered by AI
  • Q2. How do you handle tight deadlines and prioritize tasks in a fast-paced testing environment?
  • Ans. 

    I prioritize tasks by assessing urgency, impact, and resources, ensuring quality testing even under tight deadlines.

    • Assess the project requirements and deadlines to identify critical tasks.

    • Use a prioritization matrix to categorize tasks based on urgency and importance.

    • Communicate with team members to understand dependencies and allocate resources effectively.

    • Implement test automation for repetitive tasks to save time a...

  • Answered by AI
  • Q3. Have you ever faced a conflict with a developer over a reported bug? How did you resolve it?
  • Ans. 

    I encountered a conflict with a developer over a bug, which I resolved through clear communication and collaboration.

    • I reported a bug that the developer believed was not an issue, citing a misunderstanding of the requirements.

    • I scheduled a meeting to discuss the bug in detail, presenting evidence from test cases and user scenarios.

    • During the discussion, I listened to the developer's perspective and acknowledged their c...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Use Keywords – Many companies use ATS (Applicant Tracking Systems), so include industry-specific terms.
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 Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Question related banking domain
  • Q2. Question related manual testing
Round 2 - HR 

(2 Questions)

  • Q1. Personal experience
  • Q2. Salary discussion
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude questions were asked

Round 2 - Coding Test 

It had two questions on binary strings

I appeared for an interview in Dec 2021.

Interview Questionnaire 

2 Questions

  • Q1. Deeply regarding manual testing
  • Q2. Write test cases
  • Ans. 

    Test cases for a login page

    • Verify successful login with valid credentials

    • Verify error message is displayed for invalid credentials

    • Verify password is hidden while typing

    • Verify 'forgot password' link redirects to correct page

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well on test cases

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What are Joins in SQL? Briefly explain difference between all types of joins
  • Ans. 

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

    • 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 all rows from both tables, with NULL values for non-matching rows

    • Cross join retur

  • Answered by AI
  • Q2. Find a sub array with a given sum
  • Ans. 

    Given an array of integers, find a contiguous subarray with a given sum.

    • Use a sliding window approach to iterate through the array and keep track of the current sum.

    • If the current sum exceeds the given sum, move the window's left endpoint forward.

    • If the current sum is less than the given sum, move the window's right endpoint forward.

    • If the current sum equals the given sum, return the subarray.

    • Time complexity: O(n), Spa

  • Answered by AI
  • Q3. Questions related to Projects mentioned in CV

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview advice would be to remain honest throughout the interview. The interviewer checks the problem solving abilities by your approach of solving it. Ask if there are any doubts.

Skills evaluated in this interview

I appeared for an interview before Apr 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions on DSA and DBMS mainly.

  • Q1. 

    Maximum Sum Subarray Problem Statement

    Given an array ARR consisting of N integers, determine the sum of the subarray with the maximum sum, including the possibility of an empty subarray.

    A subarray is a...

  • Ans. 

    Find the sum of the subarray with the maximum sum in a given array.

    • Iterate through the array and keep track of the current sum and maximum sum.

    • Update the maximum sum if the current sum becomes greater.

    • Handle cases where the array has all negative numbers or empty subarray.

    • Example: For input [-2, 1, -3, 4, -1], the maximum sum subarray is [4] with sum 4.

  • Answered by AI
  • Q2. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for efficient prime number identification

    • Optimize by only checking numbers up to square root of N for divisibility

  • Answered by AI
  • Q3. What are Joins in the context of databases?
  • Ans. 

    Joins in databases are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column.

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right ta...

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPABigStep Technologies interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, DBMS, SQL, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before May 2021. There were 5 interview rounds.

Round 1 - Coding Test 

Hackerrank Test

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to NodeJS and Javascript Basics
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions based on past experience
Round 4 - HR 

(1 Question)

  • Q1. Company Culture related
Round 5 - Behavioral 

(1 Question)

  • Q1. Expectations and Processes

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the basics. Medium level interview questions. All the best.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The aptitude test was of moderate level.

Round 2 - Coding Test 

It checked on the concepts of oops

Round 3 - HR 

(1 Question)

  • Q1. How will you deal with tight delivery time.
  • Ans. 

    I will prioritize tasks, communicate effectively with team members, and utilize time management techniques to meet deadlines.

    • Prioritize tasks based on importance and urgency

    • Break down tasks into smaller manageable chunks

    • Communicate effectively with team members to coordinate efforts

    • Utilize time management techniques such as Pomodoro technique or Agile methodologies

    • Identify and eliminate any potential roadblocks or bott...

  • Answered by AI

Marquis Technologies Interview FAQs

How many rounds are there in Marquis Technologies Senior Test Engineer interview?
Marquis Technologies interview process usually has 4 rounds. The most common rounds in the Marquis Technologies interview process are Resume Shortlist, HR and Technical.
How to prepare for Marquis Technologies Senior Test Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Marquis Technologies. The most common topics and skills that interviewers at Marquis Technologies expect are Debugging, ISO 9001, Log Analysis, RRC and SIDE.
What are the top questions asked in Marquis Technologies Senior Test Engineer interview?

Some of the top questions asked at the Marquis Technologies Senior Test Engineer interview -

  1. LTE techniqual knowldege, College Project, techniqual ski...read more
  2. VoLTE, IMS, EPSFB, CSFB, SRVCC, V...read more
  3. Hydrophonic fodder machin...read more

Tell us how to improve this page.

Marquis Technologies Senior Test Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 140 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
Quantsapp Interview Questions
2.8
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 30 Interviews
View all
Marquis Technologies Senior Test Engineer Salary
based on 50 salaries
₹4.9 L/yr - ₹14.2 L/yr
19% less than the average Senior Test Engineer Salary in India
View more details

Marquis Technologies Senior Test Engineer Reviews and Ratings

based on 13 reviews

3.5/5

Rating in categories

2.2

Skill development

3.2

Work-life balance

2.8

Salary

3.6

Job security

2.3

Company culture

3.1

Promotions

2.8

Work satisfaction

Explore 13 Reviews and Ratings
Test Engineer
332 salaries
unlock blur

₹1.9 L/yr - ₹9.5 L/yr

Senior Test Engineer
50 salaries
unlock blur

₹4.9 L/yr - ₹14.1 L/yr

Mobile Test Engineer
23 salaries
unlock blur

₹2 L/yr - ₹7.1 L/yr

Softwaretest Engineer
22 salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Test Lead
16 salaries
unlock blur

₹9.2 L/yr - ₹18 L/yr

Explore more salaries
Compare Marquis Technologies with

HCL Infosystems

3.9
Compare

Cogniter Technologies

3.5
Compare

IVTL Infoview Technologies

3.6
Compare

Apmosys Technologies

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