Upload Button Icon Add office photos

Filter interviews by

Perfect Digital Media Resources Software Testing Trainer Interview Questions and Answers

Updated 23 Apr 2024

Perfect Digital Media Resources Software Testing Trainer Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Test scenarios writing 

(2 Questions)

  • Q1. They give one application and write the test scenarios and test cases for that application
  • Q2. Write a walk through software testing??
  • Ans. 

    A walk through software testing involves step-by-step examination of the software to identify defects and ensure quality.

    • Start by reviewing the requirements and creating test cases based on them.

    • Execute the test cases to identify defects in the software.

    • Report and track the defects found during testing.

    • Retest the defects after they have been fixed to ensure they are resolved.

    • Conduct regression testing to ensure that ne

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions about framework
  • Q2. Basic Selenium and Java questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions about all topics on CV
  • Q2. Managerial Questions
Round 3 - HR 

(2 Questions)

  • Q1. Why am I choosing Cognizant
  • Q2. Salary discussion and policies
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between sdlc and stlc
  • Ans. 

    SDLC is Software Development Life Cycle which focuses on development of software, while STLC is Software Testing Life Cycle which focuses on testing of software.

    • SDLC is the process of developing software from planning to deployment, while STLC is the process of testing software from test planning to test closure.

    • SDLC includes phases like requirements gathering, design, coding, testing, and deployment, while STLC includ...

  • Answered by AI
  • Q2. Bug life cycle? Defect triage

Interview Preparation Tips

Topics to prepare for Deloitte Test Engineer interview:
  • Basic concepts
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - One-on-one 

(7 Questions)

  • Q1. Project and techstack related dscussion and questions.
  • Q2. Remove duplicates and print the string using java. To be written on paper
  • Q3. Character count in string. To be written on paper
  • Ans. 

    Count the number of characters in a given string.

    • Iterate through each character in the string and increment a counter for each character.

    • Return the final count of characters in the string.

  • Answered by AI
  • Q4. General Selenium, TestNG, Cucumber BDD questions.
  • Q5. API Testing Questions like status codes, parameters we pass in postman.
  • Q6. Write Basic RestAssured code on paper.
  • Ans. 

    Basic RestAssured code for API testing

    • Import necessary RestAssured libraries

    • Set base URI for the API

    • Send a GET request to the API endpoint

    • Validate response status code and body

  • Answered by AI
  • Q7. Switch values in two variables without third variable.
  • Ans. 

    Use bitwise XOR operation to switch values in two variables without a third variable.

    • Use bitwise XOR operation to switch values in two variables without a third variable.

    • Example: a = 5, b = 7. After switching, a = 7, b = 5.

    • a = a XOR b

    • b = a XOR b

    • a = a XOR b

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Jeneral knowledge questions

Round 2 - Technical 

(3 Questions)

  • Q1. What is datatype
  • Ans. 

    Datatype is a classification of data which tells the compiler or interpreter how the programmer intends to use the data.

    • Datatypes specify the type of data that a variable can hold.

    • Examples of datatypes include integers, floating-point numbers, characters, and strings.

    • In programming languages like Java, C++, and Python, datatypes are used to define variables and functions.

  • Answered by AI
  • Q2. Date Types different types
  • Ans. 

    Date types refer to different ways dates can be represented in software.

    • Date

    • Time

    • DateTime

    • Timestamp

    • Interval

  • Answered by AI
  • Q3. Statement of DDL, DML, DQL.
  • Ans. 

    DDL stands for Data Definition Language, DML stands for Data Manipulation Language, and DQL stands for Data Query Language.

    • DDL is used to define the structure of database objects like tables, indexes, etc. Example: CREATE TABLE.

    • DML is used to manipulate data in the database like inserting, updating, deleting records. Example: INSERT INTO.

    • DQL is used to retrieve data from the database using queries. Example: SELECT * FR

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Thank you giving me this opportunity. My name is nagurbi.i have coplited my degree Bsc computers in chakradhar degree college in macherla. My father name is Dastagiri and mother name is mastanbi.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
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 - One-on-one 

(5 Questions)

  • Q1. What is selinum package or compenents?
  • Ans. 

    Selenium is a package of tools and libraries for automating web browsers.

    • Selenium WebDriver: allows you to control a web browser from your preferred programming language

    • Selenium IDE: a record and playback tool for creating automated tests

    • Selenium Grid: allows you to run tests on different machines in parallel

    • Selenium RC (Remote Control): a deprecated tool for automating web browsers

  • Answered by AI
  • Q2. Program locator in selinum
  • Ans. 

    Program locator in Selenium is used to locate web elements on a webpage for testing purposes.

    • Use methods like findElement() or findElements() to locate elements by ID, class name, name, tag name, xpath, etc.

    • Use locators like ID, class name, name, tag name, xpath, CSS selector, etc. to identify elements uniquely.

    • Ensure the locators are robust and reliable to avoid flakiness in tests.

    • Consider using relative locators in S...

  • Answered by AI
  • Q3. What is testNG?
  • Ans. 

    TestNG is a testing framework inspired by JUnit and NUnit, designed for simplifying a broad range of testing needs.

    • TestNG allows for easy configuration of test cases using annotations.

    • It supports parallel execution of test methods.

    • TestNG provides features like grouping, parameterization, and dependency testing.

    • It generates detailed test reports and supports data-driven testing.

    • TestNG integrates seamlessly with build to

  • Answered by AI
  • Q4. Define QA and QC
  • Ans. 

    QA focuses on preventing defects in the process, while QC focuses on identifying defects in the product.

    • QA stands for Quality Assurance and is process-oriented

    • QC stands for Quality Control and is product-oriented

    • QA involves activities like process audits, reviews, and standards development

    • QC involves activities like testing, inspections, and reviews of the final product

    • Example: QA ensures that the development process f...

  • Answered by AI
  • Q5. Difference between soft assertion and hard assertion?
  • Ans. 

    Soft assertion allows the test to continue after a failure, while hard assertion stops the test immediately.

    • Soft assertion is used when you want to continue executing the test even after a failure, while hard assertion stops the test execution immediately upon failure.

    • Soft assertions are typically used for non-critical verifications, while hard assertions are used for critical verifications.

    • Soft assertions are implemen...

  • Answered by AI

Skills evaluated in this interview

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

(5 Questions)

  • Q1. Basic Question
  • Q2. Expected Salary regarding Question
  • Q3. Family Background
  • Q4. Hobbies That you explore in future
  • Q5. Location which you want to commote
  • Ans. 

    I am willing to commute to any location within a 30-minute drive from my home.

    • Prefer locations within a 30-minute drive

    • Open to considering locations further away if necessary

    • Prioritize convenience and accessibility

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Regarding IFRS17 details it was all about it.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(3 Questions)

  • Q1. 1. What are the Roles and Responsibilities in current organisation.
  • Ans. 

    As a Senior QA Engineer, my roles and responsibilities include leading the testing efforts, creating test plans and strategies, executing test cases, identifying and reporting bugs, collaborating with cross-functional teams, and ensuring the quality of the software.

    • Leading the testing efforts

    • Creating test plans and strategies

    • Executing test cases

    • Identifying and reporting bugs

    • Collaborating with cross-functional teams

    • Ensu

  • Answered by AI
  • Q2. . What's the QA process following in current organisation.
  • Ans. 

    Our QA process involves continuous testing throughout the development cycle.

    • We start with creating test plans and test cases based on requirements.

    • We perform functional, regression, and performance testing.

    • We use both manual and automated testing methods.

    • We report and track defects using a bug tracking tool.

    • We collaborate with developers to resolve issues and retest fixes.

    • We conduct user acceptance testing before relea...

  • Answered by AI
  • Q3. Difference between Regression and Sanity testing with current application examples
  • Ans. 

    Regression testing ensures existing functionality still works after changes. Sanity testing checks critical functionality.

    • Regression testing is done after changes to ensure existing functionality still works

    • Sanity testing is done to check critical functionality after minor changes

    • Regression testing is comprehensive while sanity testing is narrow in scope

    • Example of regression testing: testing all existing features after...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your basics and process following in current organisation

Skills evaluated in this interview

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

I applied via Indeed and was interviewed before Aug 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 tips
Round 2 - Technical 

(3 Questions)

  • Q1. Explain year project
  • Ans. 

    My year project involved designing and implementing automated test scripts for a web application.

    • Researched testing tools and frameworks

    • Developed test cases based on requirements

    • Executed test scripts and reported bugs

    • Collaborated with developers to resolve issues

  • Answered by AI
  • Q2. Explain mini projects
  • Ans. 

    Mini projects are small-scale projects that allow individuals to apply their skills and knowledge in a practical setting.

    • Mini projects are typically shorter in duration and have a specific goal or outcome.

    • They provide an opportunity for hands-on learning and experimentation.

    • Mini projects can be used to showcase skills and experience to potential employers.

    • Examples of mini projects include building a simple web applicat...

  • Answered by AI
  • Q3. Extra curricular activities

Perfect Digital Media Resources Interview FAQs

What are the top questions asked in Perfect Digital Media Resources Software Testing Trainer interview?

Some of the top questions asked at the Perfect Digital Media Resources Software Testing Trainer interview -

  1. Write a walk through software testin...read more
  2. They give one application and write the test scenarios and test cases for that ...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Perfect Digital Media Resources interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Info Edge Interview Questions
4.0
 • 314 Interviews
Jio Platforms Interview Questions
3.5
 • 191 Interviews
Times Internet Interview Questions
3.6
 • 61 Interviews
Aptara Interview Questions
3.3
 • 61 Interviews
HT Media Interview Questions
3.3
 • 48 Interviews
Network 18 Interview Questions
3.4
 • 25 Interviews
MPS Limited Interview Questions
3.7
 • 19 Interviews
View all
Software Developer
7 salaries
unlock blur

₹2.6 L/yr - ₹4 L/yr

Graphic Designer
7 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Language Editor
6 salaries
unlock blur

₹1.2 L/yr - ₹5.3 L/yr

Project Manager
5 salaries
unlock blur

₹3.2 L/yr - ₹11.7 L/yr

Technical Editor
5 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

Explore more salaries
Compare Perfect Digital Media Resources with

Times Internet

3.6
Compare

Info Edge

4.0
Compare

Network 18

3.4
Compare

Jagran Prakashan

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview