Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by DMI Team. If you also belong to the team, you can get access from here

DMI Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

DMI Quality Assurance Interview Questions and Answers

Updated 1 Jul 2023

DMI Quality Assurance Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Hr round question same as other companies does
  • Q2. Basics of manual testing questions
  • Q3. Technical questions on software testing, Test cases and some logical reasoning questions

Interview Preparation Tips

Topics to prepare for DMI Quality Assurance interview:
  • YouTube
  • Interview questions on websites

Interview questions from similar companies

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

Round 1 - Technical 

(1 Question)

  • Q1. What is game testing
  • Ans. 

    Game testing is the process of evaluating a game's functionality, performance, and user experience.

    • Game testing involves identifying and reporting bugs and glitches

    • It also includes testing game mechanics and balancing

    • Game testers may also evaluate the game's story, characters, and overall design

    • Examples of game testing include alpha and beta testing, as well as focus group testing

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company nice work it is an very good company to pursue ur career as a fresher

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is modal analysis
  • Ans. 

    Modal analysis is a technique used to study the dynamic characteristics of a system by identifying its modes of vibration.

    • Modal analysis is used to determine the natural frequencies, damping ratios, and mode shapes of a structure or component.

    • It helps in understanding the behavior of a system under different loading conditions.

    • Modal analysis is commonly used in engineering fields such as aerospace, civil, and mechanica...

  • Answered by AI
  • Q2. General discussion about the job description
Round 2 - Technical 

(3 Questions)

  • Q1. What is dof for 1d 2d and 3d element
  • Ans. 

    DOF stands for Degrees of Freedom and refers to the number of independent variables in an element.

    • 1D elements have 2 DOF, typically displacement in x and rotation about x

    • 2D elements have 3 DOF, typically displacement in x and y, and rotation about z

    • 3D elements have 6 DOF, typically displacement in x, y, and z, and rotation about x, y, and z

  • Answered by AI
  • Q2. Mesh quality criteria
  • Ans. 

    Mesh quality criteria are used to evaluate the accuracy and reliability of a mesh in numerical simulations.

    • Mesh quality criteria assess the shape, size, and connectivity of mesh elements.

    • Common criteria include aspect ratio, skewness, and orthogonality.

    • Aspect ratio measures the elongation of elements, with lower values indicating better quality.

    • Skewness measures the distortion of elements, with values close to zero ind...

  • Answered by AI
  • Q3. What fea solvers have you used before
  • Ans. 

    I have used various fea solvers in my previous roles.

    • ANSYS

    • ABAQUS

    • Nastran

    • LS-DYNA

    • OpenFOAM

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company

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 

(2 Questions)

  • Q1. Not available, PFB
  • Q2. Please find below

Interview Preparation Tips

Topics to prepare for SpanIdea Software Developer interview:
  • C++
  • C
Interview preparation tips for other job seekers - The SO INTELLCTUAL HR lady calls me and tells me about the job role and tells that this includes 1 year bond. she asks me my current location . she then asks me which city i am from? Then she asks me which state i am from?:) I don't know at that time was she searching the last braincell she have?AND then she also wants to know that currently at which area i am residing and she goes on to ask that do i have any relatives at job location area. when i asked her why she is asking so many questions her response was that "we want to know if the candidate is really interested in job role". Highly Professional HR ,, even after going through her "intellectual questionnaire" and telling her i am interested in job role there was absolute no response from her

company should conduct some good communication skills and logical thinking classes for HRs before expecting it from any candidate
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Dec 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. So they asked totally from my resume and they finally asked three coding questions which were simple and you should answer genuinely
  • Q2. 1. write a code to check whether entered input is a palindrome or not 2. wap to print the reverse of an array 3. find the second highest in the array
  • Ans. 

    Answer to coding questions for Associate Software Engineer interview

    • To check for palindrome, compare the input string with its reverse

    • To print the reverse of an array, loop through the array in reverse order and print each element

    • To find the second highest in an array, loop through the array and keep track of the highest and second highest values

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - resume should be genuine, be prepared beforehand and be strong on basics and always put a smile in the interview

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1. What is topic present in C.
  • Ans. 

    C language has various topics including data types, control structures, functions, arrays, pointers, structures, and file handling.

    • Data types - int, float, char, double, etc.

    • Control structures - if-else, switch-case, loops, etc.

    • Functions - user-defined functions, library functions, etc.

    • Arrays - one-dimensional, multi-dimensional, etc.

    • Pointers - pointer variables, pointer arithmetic, etc.

    • Structures - user-defined data t...

  • Answered by AI
  • Q2. 2.What is type qualifier volatile and const
  • Ans. 

    The type qualifier volatile is used to indicate that a variable's value may change unexpectedly.

    • The volatile qualifier is used when a variable can be modified by external factors that are beyond the control of the program.

    • It is commonly used when accessing hardware registers or shared memory in multi-threaded environments.

    • The const qualifier is used to indicate that a variable's value cannot be modified once it is assi...

  • Answered by AI
  • Q3. 3.What is storage classes.
  • Ans. 

    Storage classes are keywords in C programming that define the scope and lifetime of variables.

    • There are four storage classes in C: auto, register, static, and extern.

    • Auto variables are local to a function and have a default value of garbage.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and...

  • Answered by AI
  • Q4. 4.write code to reverse word in string
  • Ans. 

    Code to reverse words in a string

    • Split the string into an array of words

    • Loop through the array and reverse each word

    • Join the reversed words back into a string

  • Answered by AI
  • Q5. 5. How computer is starting
  • Ans. 

    The computer starts by executing the BIOS, which initializes hardware and loads the operating system.

    • When the power button is pressed, the computer sends a signal to the power supply to turn on.

    • The BIOS (Basic Input/Output System) is then executed, which performs a Power-On Self Test (POST) to check hardware components.

    • The BIOS then loads the boot loader from the hard drive or other bootable device.

    • The boot loader then...

  • Answered by AI
  • Q6. What is process and thread
  • Ans. 

    A process is an instance of a program while a thread is a lightweight process that can run concurrently with other threads.

    • A process is a program in execution

    • A process has its own memory space and system resources

    • A thread is a subset of a process

    • A thread shares the same memory space and system resources as its parent process

    • Multiple threads can run concurrently within a single process

  • Answered by AI
  • Q7. What is system call.
  • Ans. 

    System call is a request made by a program to the operating system for a service or resource.

    • System calls provide an interface between a program and the operating system.

    • They allow programs to perform tasks such as reading and writing files, creating new processes, and managing memory.

    • Examples of system calls include open(), read(), write(), fork(), and exec().

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please study well and get your dream job.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Mar 2023. 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 

String related functions,virtual functions and STL concepts

Round 3 - Technical 

(1 Question)

  • Q1. String related questions and STL concepts

Interview Questionnaire 

1 Question

  • Q1. Oops concept,Versioning in javascipt,CTE in sql server,Cursor in sql server,scenario based questions like if duplicate data is stored in email then what is your approach to resolve.

I applied via Google and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Terniary operator , c language , coding simple questions break switch , if else , while loop and most important your last year major project prepare this is very important question asked by interviewer to ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on c language

I applied via Naukri.com and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. About payment method integration
  • Q2. Oops concept,

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident,

Be polite and honest to them,

Answered to questions

DMI Interview FAQs

What are the top questions asked in DMI Quality Assurance interview?

Some of the top questions asked at the DMI Quality Assurance interview -

  1. Technical questions on software testing, Test cases and some logical reasoning ...read more
  2. Hr round question same as other companies d...read more
  3. Basics of manual testing questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Apisero Interview Questions
4.3
 • 65 Interviews
TestingXperts Interview Questions
3.9
 • 41 Interviews
Credera Interview Questions
3.8
 • 40 Interviews
Stefanini Interview Questions
2.9
 • 35 Interviews
GlobalStep Interview Questions
2.7
 • 28 Interviews
SpanIdea Interview Questions
3.7
 • 24 Interviews
View all
Senior Software Engineer
136 salaries
unlock blur

₹9.5 L/yr - ₹31 L/yr

Software Engineer
87 salaries
unlock blur

₹3.5 L/yr - ₹14.2 L/yr

Associate Software Engineer
51 salaries
unlock blur

₹3.3 L/yr - ₹9 L/yr

Principal Software Engineer
41 salaries
unlock blur

₹12.1 L/yr - ₹38.8 L/yr

QA Engineer
35 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Explore more salaries
Compare DMI with

Apisero

4.3
Compare

Actalent Services

3.5
Compare

Cyber Infrastructure

3.5
Compare

TestingXperts

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