Upload Button Icon Add office photos

Filter interviews by

IMMO Capital Test Engineer Interview Questions and Answers

Updated 31 Mar 2023

IMMO Capital Test Engineer Interview Experiences

2 interviews found

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 31 Mar 2023

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company 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 - Technical 

(2 Questions)

  • Q1. Project background and tech stack details
  • Q2. Current role , Responsibility of the role handling
  • Ans. 

    I am currently working as a Test Engineer.

    • My responsibility is to design and execute test cases to ensure the quality of software products.

    • I collaborate with the development team to understand requirements and identify test scenarios.

    • I perform functional, regression, and performance testing to detect and report defects.

    • I analyze test results and provide feedback to improve the software development process.

    • I document te...

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Interviewer is not clear of the JD. Asked me to wait and verified.
  • Q2. Atlast in call said the role JD is different. After resume review and 1 round of interview they found that the JD is different from my skills set.

Interview Preparation Tips

Interview preparation tips for other job seekers - Time waste, the team is not sure of what they want

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 31 Mar 2023

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Mar 2023. There were 2 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 - Technical 

(2 Questions)

  • Q1. General review about background Tools and technologies used.
  • Q2. About project and the general out of job question

Interview Preparation Tips

Interview preparation tips for other job seekers - The recruiter is not clear about the JD of the role. Waste of time.

Test Engineer Interview Questions Asked at Other Companies

asked in Infosys
Q1. 1. What is the frame work u have worked and explain the framework ... read more
asked in Info Edge
Q2. Consecutive CharactersYou are given a matrix of 'N' rows and 'M' ... read more
asked in Info Edge
Q3. Remove DuplicatesNinja is playing with numbers but hates when he ... read more
asked in GlobalStep
Q4. What are the problems we faced in the old generation video game c ... read more
Q5. what is a type of testing? What are the principles?

Interview questions from similar companies

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

I applied via Job Portal and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Project details
  • Q2. Framework details
Round 2 - Technical 

(2 Questions)

  • Q1. Test planning, test case development, test strategies
  • Q2. Python, why automation?, summary reports
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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Stlc question asked manual qa
Round 2 - Technical 

(1 Question)

  • Q1. Coding asked sql query
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Explain about your project
  • Ans. 

    Developed a test automation framework for a web application

    • Designed and implemented test cases using Selenium WebDriver

    • Integrated the framework with Jenkins for continuous integration

    • Performed regression testing and reported bugs using Jira

  • Answered by AI
  • Q2. What are Action modes
  • Ans. 

    Action modes are different modes in which an action can be performed in a software application.

    • Action modes define how a specific action will be executed within the software.

    • Examples of action modes include edit mode, view mode, delete mode, etc.

  • Answered by AI
  • Q3. What is wait on
  • Q4. Data base connection
  • Q5. Recovery scenario

Test Engineer Interview Questions & Answers

TCS user image Vaibhav Dilip Shitole

posted on 13 Dec 2024

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

(2 Questions)

  • Q1. Explain your Framework
  • Q2. How to write listeners and use of it
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Performance testing entry & exit criteria
  • Q2. Performance tuning questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. How to switch to frame
  • Ans. 

    To switch to a frame in test automation, use the switchTo() method in Selenium WebDriver.

    • Use driver.switchTo().frame() method to switch to a frame by index, name, or WebElement.

    • To switch back to the default content, use driver.switchTo().defaultContent().

    • Make sure the frame is present and loaded before switching to it.

  • Answered by AI
  • Q2. Write a program to reverse a string
  • Ans. 

    Program to reverse a string using array of characters

    • Create an array of characters to store the input string

    • Iterate through the input string and store each character in the array

    • Iterate through the array in reverse order to construct the reversed string

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

(2 Questions)

  • Q1. Create table in sql using insert
  • Ans. 

    To create a table in SQL using INSERT, you need to first create the table structure and then insert data into it.

    • Create a table using CREATE TABLE statement with column names and data types

    • Insert data into the table using INSERT INTO statement with values for each column

    • Example: CREATE TABLE employees (id INT, name VARCHAR(50)); INSERT INTO employees VALUES (1, 'John')

  • Answered by AI
  • Q2. Create alter command
  • Ans. 

    The ALTER command is used to modify an existing database object in SQL.

    • Use ALTER TABLE to modify a table structure

    • Use ALTER INDEX to modify an index

    • Use ALTER VIEW to modify a view

    • Use ALTER PROCEDURE to modify a stored procedure

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated Test Engineer with a strong background in software testing and quality assurance.

    • Experienced in creating test plans, test cases, and executing tests

    • Proficient in using testing tools such as Selenium, JIRA, and TestRail

    • Skilled in identifying and documenting software defects

    • Strong analytical and problem-solving skills

    • Excellent communication and teamwork abilities

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - best

Skills evaluated in this interview

IMMO Capital Interview FAQs

How many rounds are there in IMMO Capital Test Engineer interview?
IMMO Capital interview process usually has 2-3 rounds. The most common rounds in the IMMO Capital interview process are Resume Shortlist, Technical and One-on-one Round.
What are the top questions asked in IMMO Capital Test Engineer interview?

Some of the top questions asked at the IMMO Capital Test Engineer interview -

  1. Atlast in call said the role JD is different. After resume review and 1 round ...read more
  2. Interviewer is not clear of the JD. Asked me to wait and verifi...read more
  3. General review about background Tools and technologies us...read more

Tell us how to improve this page.

Test Engineer Interview Questions from Similar Companies

View all
Senior Software Engineer
6 salaries
unlock blur

₹23 L/yr - ₹25.6 L/yr

Technical Lead
4 salaries
unlock blur

₹33 L/yr - ₹60 L/yr

Associate Manager
4 salaries
unlock blur

₹18 L/yr - ₹24 L/yr

Director Product Management
4 salaries
unlock blur

₹47 L/yr - ₹52 L/yr

Data Engineer
3 salaries
unlock blur

₹20 L/yr - ₹20 L/yr

Explore more salaries
Compare IMMO Capital with

Prestige Group

4.3
Compare

Godrej Properties

3.7
Compare

DLF

4.0
Compare

Sobha

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