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
  • Ans. 

    Creating test scenarios and cases for a sample application to ensure functionality and performance.

    • Identify key functionalities of the application, e.g., user login, data entry.

    • Write test scenarios like 'Verify user can log in with valid credentials'.

    • Develop test cases with steps, expected results, and actual results.

    • Include edge cases, e.g., 'Test login with empty username and password'.

    • Consider performance testing sc...

  • Answered by AI
  • 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

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Perfect Digital Media Resources?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Jun 2021.

Round 1 - Technical 

(1 Question)

  • Q1. What is testing and tell me about type of testing?
  • Ans. 

    Testing is the process of evaluating a system or its component(s) with the intent to find whether it satisfies the specified requirements or not.

    • Types of testing include unit testing, integration testing, system testing, acceptance testing, and regression testing.

    • Unit testing involves testing individual units or components of the software.

    • Integration testing involves testing the interaction between different components...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck if you are family member of hurix.

Skills evaluated in this interview

Software Testing Trainer Interview Questions Asked at Other Companies

asked in Nagravision
Q1. Java program for array reverse Java program for recursion Balance ... read more
asked in Nagravision
Q2. Array max and min Types of selenium locators Where do you use xpa ... read more
asked in Wipro
Q3. What is overloding and overriding
Q4. What is test plan , test strategy
asked in Wipro
Q5. What is a local variable?

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

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concept, programming
  • Q2. JavaScript , HTML5, css/scss
Round 2 - Technical 

(1 Question)

  • Q1. Modern JavaScript concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basics and fundamental concepts
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is a SIEM?
  • Ans. 

    SIEM stands for Security Information and Event Management. It is a software solution that aggregates and analyzes security data from various sources.

    • SIEM collects logs and data from network devices, servers, applications, and more to identify security incidents.

    • It correlates and analyzes this data in real-time to detect threats, monitor security events, and provide alerts.

    • SIEM solutions help organizations to comply wit...

  • Answered by AI
  • Q2. WHat is endpoint security?
  • Ans. 

    Endpoint security refers to the protection of individual devices like computers, smartphones, and tablets from cyber threats.

    • Focuses on securing endpoints like computers, smartphones, and tablets

    • Involves protecting devices from malware, ransomware, and other cyber threats

    • Includes measures like antivirus software, firewalls, and encryption

    • Ensures that only authorized users and devices can access the network

    • Helps prevent...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Aptitude and coding questions both were included

Round 2 - Technical 

(3 Questions)

  • Q1. Patterns ans series questions were asked
  • Q2. Data types in Javascript
  • Ans. 

    Javascript has various data types including string, number, boolean, object, array, null, and undefined.

    • Data types in Javascript include string, number, boolean, object, array, null, and undefined.

    • Strings are sequences of characters enclosed in quotes.

    • Numbers can be integers or floating-point numbers.

    • Booleans represent true or false values.

    • Objects are collections of key-value pairs.

    • Arrays are ordered collections of val...

  • Answered by AI
  • Q3. Difference between let and var
  • Ans. 

    let is block scoped while var is function scoped in JavaScript.

    • let was introduced in ES6 while var has been around since the beginning of JavaScript.

    • Variables declared with let are only accessible within the block they are declared in.

    • Variables declared with var are accessible throughout the function they are declared in.

    • Using let can help prevent variable hoisting issues.

    • let is preferred over var for variable declarat...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Skills evaluated in this interview

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

Interview Questionnaire 

5 Questions

  • Q1. Completely Selenium Testing
  • Q2. All related to Testng
  • Q3. Java Question
  • Q4. Manual testing
  • Q5. Coding of java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in java basics and Selenium concepts
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is closure
  • Ans. 

    A closure is a function that has access to its own scope, the scope in which it was defined, and the global scope.

    • A closure is created when a function is defined inside another function.

    • The inner function has access to the variables and parameters of the outer function, even after the outer function has finished executing.

    • Closures are useful for creating private variables and functions in JavaScript.

    • They can also be us...

  • Answered by AI
  • Q2. What is Encapsulation
  • Ans. 

    Encapsulation is the process of hiding internal details and providing a public interface for accessing and manipulating data.

    • Encapsulation bundles data and methods together into a single unit.

    • It helps in achieving data abstraction and data hiding.

    • By encapsulating data, we can control access to it and prevent unauthorized modifications.

    • Encapsulation promotes code reusability and maintainability.

    • Example: A class in objec...

  • Answered by AI
  • Q3. What is Inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows for code reuse and promotes the concept of hierarchy.

    • The class that is being inherited from is called the superclass or base class.

    • The class that inherits from the superclass is called the subclass or derived class.

    • The subclass can access the public and protected members of the s...

  • Answered by AI
  • Q4. What is Abstraction
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details.

    • Abstraction involves hiding unnecessary details and exposing only relevant information.

    • It allows developers to create models or representations that capture the essential aspects of a system.

    • Abstraction helps in managing complexity, improving code reusability, and enhancing maintainability.

    • For example, in object-oriented programm...

  • Answered by AI
  • Q5. What is Polymorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.

    • Polymorphism is a fundamental concept in object-oriented programming.

    • It enables code reusability and flexibility.

    • Polymorphism can be achieved through method overriding and method overloading.

    • Example: A parent class Animal can have multiple child classes like Dog, Cat, and Bird. They can ...

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. C#,Mvc core,SQL server,vue js,
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Aug 2022.

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 - Technical 

(1 Question)

  • Q1. Basic oops concepts with small programs like how to implement interface like that.
  • Ans. 

    Overview of OOP concepts with a focus on interfaces and their implementation in programming.

    • OOP stands for Object-Oriented Programming, which includes concepts like encapsulation, inheritance, and polymorphism.

    • An interface is a contract that defines methods without implementing them. Classes that implement the interface must provide the method definitions.

    • Example of an interface in Java: `interface Animal { void sound(...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and basic details are discussed

I applied via Naukri.com and was interviewed before Nov 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic .net concepts like oops concept, mvc architecture, mvc filters, we api basics.
Round 2 - Technical 

(1 Question)

  • Q1. Need to share the understandings based on the technology concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Attend the interview with confident and you will crack the interview

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. They give one application and write the test scenarios and test cases for that ...read more
  2. Write a walk through software testin...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Aptara Interview Questions
3.2
 • 67 Interviews
MPS Limited Interview Questions
3.5
 • 28 Interviews
Hurix Systems Interview Questions
3.6
 • 18 Interviews
Content Whale Interview Questions
3.8
 • 13 Interviews
QBS Learning Interview Questions
2.5
 • 6 Interviews
White Globe Interview Questions
2.7
 • 4 Interviews
MediaMonks Interview Questions
3.9
 • 4 Interviews
View all
Software Developer
8 salaries
unlock blur

₹2.6 L/yr - ₹4 L/yr

Language Editor
6 salaries
unlock blur

₹2.3 L/yr - ₹5.3 L/yr

Technical Editor
5 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

Automation Test Engineer
5 salaries
unlock blur

₹3.1 L/yr - ₹3.2 L/yr

Project Administrator
5 salaries
unlock blur

₹1.1 L/yr - ₹3 L/yr

Explore more salaries
Compare Perfect Digital Media Resources with

Aptara

3.2
Compare

MPS Limited

3.5
Compare

Lionbridge Technologies

3.6
Compare

Crimson Interactive

2.8
Compare
write
Share an Interview