Upload Button Icon Add office photos

Filter interviews by

Bahri Mazroei Technical Systems Fire Alarm Technician Interview Questions and Answers

Updated 23 Mar 2024

Bahri Mazroei Technical Systems Fire Alarm Technician Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. 1- what is your strenght? 2-why should we hire you? 3-Reason behind leaving your last job?
  • Ans. 1- i am a quick learner and a great team player. 2-if you hire me , it will be great platform to showcase my skills, the goals i set i ensure to complete them within stipulated time. 3-in order to enhance my skills set , i am looking for better opportunities.
  • Answered Anonymously
Round 2 - Group Discussion 

1- world post covid-is social distancing the new world order

Interview Preparation Tips

Interview preparation tips for other job seekers - 1- familiarise your self with the virtual interview process.
2- be confident but dont go overboard with it.
3- show the interviewer that you are not behind on technology.

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Manual and automation relatated question
Round 2 - Technical 

(1 Question)

  • Q1. More about Manual and automation Api testing
Round 3 - One-on-one 

(1 Question)

  • Q1. PDM round mostly general interaction
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude was hosted by Amazon themselves comprising of 3 sections:
1. Coding
2. MCQ regarding QA methodologies
3. Behavioural questions (where does your alignment lies)

Round 2 - Technical 

(2 Questions)

  • Q1. Simple string manipulation (e.g. anagram string)
  • Ans. 

    Check if two strings are anagrams of each other

    • Create a function that takes in two strings as input

    • Remove all spaces and special characters from both strings

    • Sort the characters in both strings and compare them to check if they are equal

  • Answered by AI
  • Q2. Optimise approach for each question
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions around automation suite
Round 4 - Technical 

(1 Question)

  • Q1. More questions on the projects I have worked, questions around them
Round 5 - One-on-one 

(2 Questions)

  • Q1. Alignment on where you are likely going to be in the org
  • Q2. Preferred work location

Interview Preparation Tips

Interview preparation tips for other job seekers - Apply for the job position only if you can work from the location given in JD

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. How to validate db connection with selenium
  • Ans. 

    To validate db connection with Selenium, use JDBC driver to connect to the database and execute a query to verify the connection.

    • Use JDBC driver to establish connection to the database

    • Execute a query to verify the connection

    • Check for any exceptions or errors during the connection process

  • Answered by AI
  • Q2. Difference b/w POM design pattern and POM Pagefactor
  • Ans. 

    POM design pattern is a design pattern for organizing Selenium tests, while POM PageFactory is an extension that helps initialize elements in Page Object Model.

    • POM design pattern is a design pattern used to create Page Object Model for Selenium tests.

    • POM PageFactory is an extension of POM design pattern that helps in initializing elements in Page Object Model using @FindBy annotations.

    • POM design pattern promotes code r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Wipro QA Engineer interview:
  • Selenium
Interview preparation tips for other job seekers - aa

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Bubble sort algo, String manipulation

Round 2 - Technical 

(2 Questions)

  • Q1. API testing using restAssured
  • Q2. STLC bug life cuycle

Interview Preparation Tips

Interview preparation tips for other job seekers - preapare interview on CV

QA Engineer Interview Questions & Answers

Deloitte user image MEGHANA ANTHATI

posted on 4 Oct 2024

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

(2 Questions)

  • Q1. What is the definition of tosca
  • Q2. Tosca errors and define them
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Introduced yourself in details
  • Q2. Asked me about selenium framework, Basic questions on selenium

QA Engineer Interview Questions & Answers

Genpact user image Skumar test user4

posted on 5 Sep 2024

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

(1 Question)

  • Q1. SQL query with join
  • Ans. 

    SQL query with join

    • Use JOIN keyword to combine rows from two or more tables based on a related column between them

    • Specify the columns to select from each table in the SELECT statement

    • Use ON keyword to specify the join condition

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. SQL query with join
  • Ans. 

    SQL query with join

    • Use JOIN keyword to combine rows from two or more tables based on a related column between them

    • Specify the columns to select from each table

    • Use ON keyword to specify the join condition

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. HR Round for Company review & offer

Skills evaluated in this interview

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

Aptitude Reasoning more practice need for this

Round 2 - Coding Test 

Data structures main and good understanding and problem solving

Round 3 - Technical 

(2 Questions)

  • Q1. About data structures
  • Q2. Basic coding questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write a program for prime number.
  • Ans. 

    Program to check if a number is prime or not.

    • Create a function to check if a number is prime by iterating from 2 to the square root of the number.

    • If the number is divisible by any number in that range, it is not prime.

    • Return true if the number is prime, false otherwise.

  • Answered by AI
  • Q2. What is polymorphism and overriding in Java?
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data. Overriding is when a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Overriding occurs when a subclass provides a specific implementation of a method that is already provided b...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. How much salary do you expect?

Skills evaluated in this interview

Bahri Mazroei Technical Systems Interview FAQs

How many rounds are there in Bahri Mazroei Technical Systems Fire Alarm Technician interview?
Bahri Mazroei Technical Systems interview process usually has 2 rounds. The most common rounds in the Bahri Mazroei Technical Systems interview process are HR and Group Discussion.

Tell us how to improve this page.

Bahri Mazroei Technical Systems Fire Alarm Technician Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5.1k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all

Bahri Mazroei Technical Systems Fire Alarm Technician Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

2.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Design Estimation Engineer
3 salaries
unlock blur

₹9.4 L/yr - ₹16 L/yr

Explore more salaries
Compare Bahri Mazroei Technical Systems with

L&T Technology Services

3.3
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

Tech Mahindra

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