Upload Button Icon Add office photos

Filter interviews by

Molars Technologies Junior Tester Interview Questions and Answers

Updated 14 Nov 2022

Molars Technologies Junior Tester Interview Experiences

1 interview found

Junior Tester Interview Questions & Answers

user image Anonymous

posted on 14 Nov 2022

I applied via Walk-in and was interviewed in May 2022. There were 3 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 

Some basic coads and questions

Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion,some personal questions
  • Q2. Work mode, family details,

Interview Preparation Tips

Interview preparation tips for other job seekers - Proper communication skills
Daily practice is a key of success

Interview questions from similar companies

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

I applied via Job Portal and was interviewed before Jul 2022. There were 3 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 - Aptitude Test 

Ther have conducted reasoning and logical questions.

Round 3 - Technical 

(3 Questions)

  • Q1. They have asked python technical questions and MYSQL commands
  • Q2. Difference between tuple and list and coding
  • Ans. 

    Tuple is immutable, ordered collection while list is mutable, ordered collection in Python.

    • Tuple is created using parentheses () while list is created using square brackets []

    • Tuple elements cannot be changed once assigned while list elements can be modified

    • Tuple is faster than list for iteration and accessing elements

    • Example: tuple = (1, 2, 3) and list = [1, 2, 3]

  • Answered by AI
  • Q3. They have asked b.tech final project explanation

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. Briefing about yourself
  • Q2. Explain Defect life cycle
  • Ans. 

    Defect life cycle is the process of identifying, reporting, fixing, retesting, and closing defects in software development.

    • Defect identification: Defects are identified through testing or user feedback.

    • Defect reporting: Defects are reported in a defect tracking tool with details like steps to reproduce, severity, and priority.

    • Defect fixing: Developers fix the reported defects based on the information provided.

    • Defect re...

  • Answered by AI
  • Q3. Difference between black box and white box testing
  • Ans. 

    Black box testing focuses on functionality without knowledge of internal code, while white box testing examines internal code structure.

    • Black box testing tests the functionality of a system without knowledge of its internal code

    • White box testing tests the internal code structure and logic of a system

    • Black box testing is more focused on end-user perspective

    • White box testing is more focused on developer perspective

    • Exampl...

  • Answered by AI
  • Q4. Difference between hard assert and soft assert
  • Ans. 

    Hard assert stops the execution of the test case if it fails, while soft assert continues the execution and logs the failure.

    • Hard assert is used when the failure of a particular step makes the further steps irrelevant.

    • Soft assert is used when you want to continue with the test case execution even if some steps fail.

    • Hard assert is implemented using 'assert' keyword in testing frameworks like TestNG or JUnit.

    • Soft assert ...

  • Answered by AI
  • Q5. What are the various annotations in selenium webdriver
  • Ans. 

    Annotations in Selenium WebDriver are used to provide additional information about the test methods.

    • Annotations help in organizing and managing test cases

    • Some common annotations in Selenium WebDriver are @Test, @BeforeTest, @AfterTest, @BeforeClass, @AfterClass, @BeforeMethod, @AfterMethod

    • Annotations are used to define the sequence of execution of test methods

  • Answered by AI
  • Q6. There are n no. Of links having the text selenium. Write the syntax to count the text selenium from all the links
  • Ans. 

    Use XPath to count the number of links with the text 'selenium'

    • Use XPath to locate all the links containing the text 'selenium'

    • Count the number of links found using the XPath expression

  • Answered by AI
  • Q7. There is a table of students having column status with either pass or fail. Write the syntax to show the output as some 60 pass and 40 fail.
  • Ans. 

    Use SQL query to display 60 pass and 40 fail from a table of students.

    • Use SELECT statement with COUNT function to count the number of pass and fail statuses.

    • Use WHERE clause to filter out pass and fail statuses.

    • Use GROUP BY clause to group the statuses together.

    • Use CASE statement to display the count of pass and fail statuses.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Explain project architecture?
  • Ans. 

    Project architecture refers to the overall structure of a software project, including components, modules, and their interactions.

    • Project architecture defines how different components of a software project are organized and interact with each other.

    • It includes the high-level design of the system, such as the database structure, data flow, and integration points.

    • Project architecture also involves decisions on technologi...

  • Answered by AI
  • Q2. Explain challenges you faced in etl testing?
  • Ans. 

    Challenges in ETL testing include data quality issues, complex transformations, and handling large volumes of data.

    • Data quality issues such as missing or incorrect data can impact testing results

    • Complex transformations can be difficult to validate and may lead to errors in the ETL process

    • Handling large volumes of data can slow down testing processes and require efficient testing strategies

  • Answered by AI
  • Q3. What are roles and responsibilities?
  • Ans. 

    Roles and responsibilities refer to the tasks and duties assigned to an individual within a specific job or position.

    • Roles define the position or job title of an individual within an organization.

    • Responsibilities outline the specific tasks, duties, and expectations associated with that role.

    • Roles and responsibilities help clarify expectations, define boundaries, and ensure accountability.

    • Examples include testing data e...

  • Answered by AI
  • Q4. How to find duplicate values in python?
  • Ans. 

    Use a dictionary to find duplicate values in an array of strings in Python.

    • Create an empty dictionary to store the count of each string in the array.

    • Iterate through the array and for each string, check if it exists in the dictionary. If it does, increment the count. If not, add it to the dictionary with a count of 1.

    • After iterating through the array, check the dictionary for any strings with a count greater than 1. The

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - ETL Concepts, Datawarehouse concepts and Python also must required

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Technology (NIT), Warangal and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions with 28 aptitude question in 1 hrs .

Round 2 - Technical 

(1 Question)

  • Q1. Data Structure,Java questions and basics of the sql
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test were not competitive. They ask average questions.

Round 2 - Group Discussion 

In group discussion they ask testing and product based related questions.but iam a developer so it's difficult to handle.

Interview Preparation Tips

Topics to prepare for Amazon Senior Test Engineer interview:
  • Java
  • HTML
  • CSS
  • Javascript
  • Selinium
  • SQL
Interview preparation tips for other job seekers - Now a days most of the companies requires good communication skills. If struggle at during the interview, we can manage with good English communication because the interviewer got some hope from you.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Assignment 

Assignment is very easy to understand the person

Round 3 - Technical 

(4 Questions)

  • Q1. What is sanity testing
  • Ans. 

    Sanity testing is a quick and shallow testing to ensure that the application is stable enough for further testing.

    • It is a subset of regression testing

    • It is performed after a new build or changes to the code

    • It checks for major functionalities and critical features

    • It is not exhaustive and does not cover all possible test cases

    • It helps to save time and effort by identifying major issues early on

  • Answered by AI
  • Q2. What is smoke testing
  • Ans. 

    Smoke testing is a preliminary testing technique to check if the critical functionalities of the software are working fine.

    • It is a quick and shallow testing technique

    • It is performed to ensure that the build is stable enough for further testing

    • It is usually performed after every build

    • It helps in identifying critical defects early in the testing cycle

    • Example: Testing the login functionality of a website after a new build

  • Answered by AI
  • Q3. What are the functions of testing
  • Ans. 

    The functions of testing are to identify defects, improve quality, and ensure the software meets requirements.

    • Identify defects and errors in the software

    • Improve the quality of the software

    • Ensure the software meets the specified requirements

    • Validate and verify the software functionality

    • Reduce the risk of software failure

    • Provide feedback to developers for improvement

    • Ensure compliance with industry standards and regulatio

  • Answered by AI
  • Q4. What is difference between somke and sanity testing
  • Ans. 

    Smoke testing is a quick and shallow test to check if the basic functionalities of the software are working. Sanity testing is a more thorough test to check if the major functionalities of the software are working after a change.

    • Smoke testing is done to check if the software is stable enough for further testing

    • Sanity testing is done to check if the changes made to the software have not affected the major functionalitie...

  • Answered by AI
Round 4 - Aptitude Test 

Apitude testing is the person is fitted or not the job

Interview Preparation Tips

Interview preparation tips for other job seekers - asak a essay questions for freshers
Higher more freshers

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Feb 2022. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Discuss about future skill and taking responsibility for senior/upper management positions
  • Q2. Discuss about basic knowledge on your skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont try to be oversmart, explain and answer whatever knowledge you have. Share the answer wisely and confidence.

I applied via Naukri.com and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Selenium automation and test NG

Interview Preparation Tips

Interview preparation tips for other job seekers - Asked just basics of automation

Interview Questionnaire 

6 Questions

  • Q1. 1.Difference between unique key and primary key.
  • Ans. 

    Unique key allows null values while primary key does not.

    • Primary key is a unique identifier for a record in a table.

    • Unique key allows null values but primary key does not.

    • A table can have only one primary key but multiple unique keys.

    • Example: Employee ID can be a primary key while email can be a unique key.

  • Answered by AI
  • Q2. 2.Difference between Union and union all,drop and Truncate,star schema and snowflake schema,Dimension table and fact table.
  • Ans. 

    Union combines the result sets of two or more SELECT statements, while Union All combines all rows from two or more SELECT statements.

    • Union removes duplicate rows, while Union All does not.

    • Union requires the number and order of columns in all SELECT statements to be the same, while Union All does not have this requirement.

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column1 FROM

  • Answered by AI
  • Q3. Which type of Validation you will do at Landing and staging area.
  • Ans. 

    At landing and staging area, I will perform data validation to ensure accuracy and completeness of data.

    • Validate data against source system

    • Check for missing or duplicate data

    • Verify data types and formats

    • Ensure data integrity and consistency

    • Perform data profiling and data quality checks

  • Answered by AI
  • Q4. 1.Find last 5 records. 2. find unique records.
  • Ans. 

    To find the last 5 records, use the ORDER BY clause with a descending order and limit the result to 5. To find unique records, use the DISTINCT keyword.

    • To find the last 5 records, use the ORDER BY clause with a descending order and limit the result to 5.

    • Example: SELECT * FROM table_name ORDER BY column_name DESC LIMIT 5

    • To find unique records, use the DISTINCT keyword.

    • Example: SELECT DISTINCT column_name FROM table_name

  • Answered by AI
  • Q5. What is self Join,types of joins.what is CDC and how we will use it in ETL testing
  • Ans. 

    Self join is joining a table with itself. Types of joins are inner, outer, left and right. CDC is change data capture used for tracking data changes.

    • Self join is used when we need to join a table with itself to retrieve data.

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

    • CDC is used to track data changes in the source system and apply those changes to the target system.

    • CDC can be used in ETL testing to verify tha...

  • Answered by AI
  • Q6. Type of scd.
  • Ans. 

    SCD stands for Slowly Changing Dimensions. There are three types of SCD: Type 1, Type 2, and Type 3.

    • Type 1: Overwrites old data with new data.

    • Type 2: Creates a new record for new data and keeps the old record for historical data.

    • Type 3: Creates a new column for new data and keeps the old column for historical data.

  • Answered by AI

Skills evaluated in this interview

Molars Technologies Interview FAQs

How many rounds are there in Molars Technologies Junior Tester interview?
Molars Technologies interview process usually has 3 rounds. The most common rounds in the Molars Technologies interview process are Resume Shortlist, Coding Test and HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all
Softwaretest Engineer
59 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Data Analyst
37 salaries
unlock blur

₹4.5 L/yr - ₹7.4 L/yr

AR Caller
20 salaries
unlock blur

₹2.4 L/yr - ₹4.2 L/yr

Power BI Developer
11 salaries
unlock blur

₹4 L/yr - ₹5.5 L/yr

Devops Engineer
9 salaries
unlock blur

₹3.5 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Molars Technologies with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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