Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Jash Engineering QA Engineer Interview Questions and Answers

Updated 25 Oct 2023

Jash Engineering QA Engineer Interview Experiences

1 interview found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Oct 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all Resume tips
Round 2 - One-on-one 

(5 Questions)

  • Q1. Questions related to material of ss
  • Q2. Welding related questions
  • Q3. Painting, casting and fabrication
  • Q4. Questions related to last job
  • Q5. In last round questions will be on salary and perks

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(8 Questions)

  • Q1. Difference between abstract and interface. Create an object for an abstract class.
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and non-abstract methods along with abstract methods.

    • Interfaces can only have abstract methods and constants, no constructors or fields.

    • An abstract class can provide a default implementation for some methods, while an interface cannot.

    • An abstract class can be exten...

  • Answered by AI
  • Q2. Difference between findelement and findelements
  • Ans. 

    findelement returns the first matching element on the page, findelements returns a list of all matching elements.

    • findelement returns a single WebElement, findelements returns a list of WebElements

    • findelement throws NoSuchElementException if no element is found, findelements returns an empty list

    • Example: driver.findElement(By.id("exampleId")) vs driver.findElements(By.className("exampleClass"))

  • Answered by AI
  • Q3. Test scenarios for facebook login page
  • Ans. 

    Test scenarios for Facebook login page

    • Verify login with valid credentials

    • Verify login with invalid credentials

    • Verify login with empty username and password fields

    • Verify login with incorrect password

    • Verify login with incorrect username

    • Verify login with special characters in username and password

    • Verify login with locked account

    • Verify login with expired password

    • Verify login with CAPS LOCK on

    • Verify login with multiple logi

  • Answered by AI
  • Q4. Difference between regression and integration testing
  • Ans. 

    Regression testing ensures that new code changes do not adversely affect existing functionality, while integration testing checks if different modules work together correctly.

    • Regression testing focuses on retesting existing functionality after code changes

    • Integration testing checks if different modules work together as expected

    • Regression testing is usually automated to save time and effort

    • Integration testing may involv...

  • Answered by AI
  • Q5. Program to remove white spaces from string without any inbuilt function and explain
  • Ans. 

    Program to remove white spaces from string without any inbuilt function

    • Iterate through each character in the string

    • Create a new string and add non-white space characters to it

    • Return the new string without white spaces

  • Answered by AI
  • Q6. How to validate the checkbox is checked
  • Ans. 

    To validate if a checkbox is checked, use Selenium WebDriver to locate the checkbox element and then use the isSelected() method to check if it is checked.

    • Locate the checkbox element using Selenium WebDriver

    • Use the isSelected() method to check if the checkbox is checked

    • Assert the result to validate if the checkbox is checked

  • Answered by AI
  • Q7. How you can validate the button present on the UI is actually blue in colour
  • Ans. 

    To validate the button color, inspect the CSS properties or use a color picker tool.

    • Inspect the CSS properties of the button element to check the color value

    • Use a color picker tool to sample the color of the button on the UI

    • Compare the sampled color with the expected blue color value

  • Answered by AI
  • Q8. How you can validate the data with any value is present in the table in selenium
  • Ans. 

    You can validate data presence in a table using Selenium by locating the table element and then searching for the desired value.

    • Locate the table element using Selenium WebDriver

    • Iterate through the rows and columns of the table to find the desired value

    • Use assertions to validate if the value is present in the table

  • Answered by AI
Round 2 - Behavioral 

(5 Questions)

  • Q1. Can we overload/override function having same signatures but have different return types in java!
  • Ans. 

    No, in Java you cannot overload/override functions based on return types.

    • In Java, method overloading is based on the number and type of parameters, not the return type.

    • Method overriding is based on the method signature, which includes the method name, parameter types, and order, but not the return type.

    • Attempting to overload or override a method based solely on return type will result in a compilation error.

  • Answered by AI
  • Q2. Difference between put and patch
  • Ans. 

    PUT is used to update or replace an entire resource, while PATCH is used to update or modify a part of a resource.

    • PUT is idempotent, meaning multiple identical requests will have the same effect as a single request.

    • PATCH is not necessarily idempotent, as multiple identical requests may have different effects.

    • PUT requires the client to send the entire updated resource, while PATCH only requires the client to send the sp...

  • Answered by AI
  • Q3. How you can print numbers from one to 1000 without using any loop
  • Ans. 

    Use recursion to print numbers from 1 to 1000 without using loops

    • Create a recursive function that takes a number as input

    • Print the number and call the function with the next number until 1000 is reached

  • Answered by AI
  • Q4. About the project you've worked on
  • Q5. What are the majors have in this you have faced while performing testinge

Skills evaluated in this interview

Round 1 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all GD tips
Round 2 - Technical 

(1 Question)

  • Q1. Per cubic metre concrete weight
  • Ans. 

    The weight of concrete per cubic metre varies depending on the mix and density.

    • The weight of normal concrete is around 2400 kg/m³

    • Lightweight concrete can weigh as little as 1600 kg/m³

    • Heavyweight concrete can weigh up to 3800 kg/m³

    • The weight of concrete can also be affected by the aggregates used

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't panic.if your talent god always with you

I applied via Walk-in and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of civil engineering

Interview Preparation Tips

Interview preparation tips for other job seekers - go with confidence and negotiate for salary
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is real dom and virtual dom in react
  • Ans. 

    Real DOM is the actual representation of the HTML structure, while Virtual DOM is a lightweight copy used for efficient updates.

    • Real DOM is slower as it directly manipulates the HTML structure.

    • Virtual DOM is faster as it updates the lightweight copy and then syncs with the real DOM.

    • React uses the Virtual DOM to minimize unnecessary re-rendering of components.

    • Virtual DOM allows for efficient batch updates, improving per...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

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

There were 6 questions to be solved. 3 average and 3 tough questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. Concepts ask in interview Java Threads Exception Collections Spring boot annotations Git
Round 3 - HR 

(1 Question)

  • Q1. A general conversations, regarding my experience, project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on java concepts.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Write unit testing for adding two nimbers
  • Ans. 

    Unit testing for adding two numbers

    • Create a test case with two numbers and expected sum

    • Call the function that adds two numbers

    • Assert that the result matches the expected sum

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Explain challenge you faced in your last project
Round 3 - HR 

(1 Question)

  • Q1. Salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on fundamentals and previous projects

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is pressure vessel
  • Ans. 

    A pressure vessel is a container designed to hold gases or liquids at a pressure substantially different from the ambient pressure.

    • Pressure vessels are used in various industries such as oil and gas, chemical, pharmaceutical, and food processing.

    • They are designed to withstand high pressures and are typically cylindrical or spherical in shape.

    • Examples include boilers, storage tanks, and compressed air tanks.

  • Answered by AI
  • Q2. How to design shell
  • Ans. 

    Designing a shell involves considering factors like material, shape, size, and functionality.

    • Consider the material of the shell - metal, plastic, or composite

    • Determine the shape of the shell based on the intended use - cylindrical, spherical, conical, etc.

    • Decide on the size of the shell to accommodate the contents it will hold

    • Design the shell with the necessary functionality in mind - openings, closures, ventilation, e

  • Answered by AI

Skills evaluated in this interview

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

Round 1 - Technical 

(1 Question)

  • Q1. Maintenance phylosophy
  • Ans. Depends on equipment running hour, criticality, availability and standby.
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Thermax Limited Senior Engineer interview:
  • Boe
  • Energy manager
Interview preparation tips for other job seekers - Be confidential and technically strong.

Interview Questionnaire 

6 Questions

  • Q1. Drum level transmitter
  • Q2. Boiler interlocking
  • Q3. Vibration sensors
  • Q4. Turbine parameters and interlocking
  • Q5. DCS tag assigning process
  • Ans. 

    DCS tag assigning process involves assigning unique names to process variables for monitoring and control.

    • DCS tag assigning process is crucial for efficient process control and monitoring.

    • Each tag represents a process variable and is assigned a unique name for easy identification.

    • Tags can be assigned manually or automatically based on the process requirements.

    • Tag naming conventions should be consistent and follow indus...

  • Answered by AI
  • Q6. Smart positioners like Simens Sipart 02

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident don't nervous

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Jash Engineering Interview FAQs

How many rounds are there in Jash Engineering QA Engineer interview?
Jash Engineering interview process usually has 2 rounds. The most common rounds in the Jash Engineering interview process are Resume Shortlist and One-on-one Round.
What are the top questions asked in Jash Engineering QA Engineer interview?

Some of the top questions asked at the Jash Engineering QA Engineer interview -

  1. In last round questions will be on salary and pe...read more
  2. Questions related to material of...read more
  3. Painting, casting and fabricat...read more

Recently Viewed

SALARIES

ZeMoSo Technologies

INTERVIEWS

Cavisson Systems

No Interviews

INTERVIEWS

Deqode

No Interviews

INTERVIEWS

ZeMoSo Technologies

No Interviews

JOBS

ZeMoSo Technologies

No Jobs

JOBS

ZeMoSo Technologies

No Jobs

INTERVIEWS

Nielsen

No Interviews

SALARIES

Jash Engineering

INTERVIEWS

Wissen Technology

No Interviews

SALARIES

ZeMoSo Technologies

Tell us how to improve this page.

Jash Engineering QA Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Thermax Limited Interview Questions
4.1
 • 250 Interviews
Forbes Marshall Interview Questions
4.1
 • 41 Interviews
GAMMON INDIA Interview Questions
3.8
 • 29 Interviews
Ksb Pumps Interview Questions
3.9
 • 27 Interviews
C.R.I. Pumps Interview Questions
3.8
 • 27 Interviews
Sulzer Interview Questions
3.9
 • 27 Interviews
SPML Infra Interview Questions
3.8
 • 16 Interviews
View all
Jash Engineering QA Engineer Salary
based on 4 salaries
₹3.9 L/yr - ₹5.7 L/yr
16% less than the average QA Engineer Salary in India
View more details
Assistant Manager
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Manager
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Design Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Design Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Jash Engineering with

Thermax Limited

4.1
Compare

Forbes Marshall

4.1
Compare

Kirloskar Brothers

3.8
Compare

Ksb Pumps

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