Upload Button Icon Add office photos
Engaged Employer

i

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

UST BlueConch Technologies Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 191 Reviews

Filter interviews by

UST BlueConch Technologies QA Automation Engineer Interview Questions and Answers

Updated 3 Oct 2024

UST BlueConch Technologies QA Automation Engineer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. OOPS concept explain
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve a problem

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation

    • Classes are blueprints for creating objects, while objects are instances of classes

    • Inheritance allows a class to inherit proper...

  • Answered by AI
  • Q2. Explain OOPS concept explain
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve a problem

    • Key principles include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation: bundling data and methods that operate on the data into a single unit

    • Inheritance: allows a class to inherit properties a...

  • Answered by AI

Interview questions from similar companies

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. Automation related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Automation related questions and aptitude questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Software Testing
  • Q2. Application based QA questions
Round 2 - Technical 

(2 Questions)

  • Q1. Software testing, QA and Resume based questions
  • Q2. Automation and programming related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well
Instead of going in depth, focus on a basic and primary questions and be thorough on it
Know everything mentioned in the resume
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Reverse String without Java In built Function
  • Ans. 

    Reverse a string without using Java built-in functions

    • Create a character array from the input string

    • Use two pointers to swap characters at the beginning and end of the array until they meet

    • Convert the character array back to a string

  • Answered by AI
  • Q2. Difference Between Relative Xpath & Absolute Xpath
  • Ans. 

    Relative Xpath is based on the current node while Absolute Xpath starts from the root node of the XML document.

    • Relative Xpath does not start with a forward slash (/) while Absolute Xpath starts with a forward slash (/).

    • Relative Xpath is more flexible and less prone to changes in the structure of the XML document.

    • Absolute Xpath is more specific and provides the full path to the element in the XML document.

    • Relative Xpath...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

In this first round it was of 45mins which included MCQ question and 1 coding question.

Round 2 - Technical 

(4 Questions)

  • Q1. 1.Difference Between Const,Var,Char. 2.Oop's concept with example 3.JavaScript is async or sync language and explain the reason. 4.How to create a simple object in JavaScript. 5.Find element and Find Eleme...
  • Ans. 

    Answers to common interview questions for Automation Test Engineer position.

    • Const is used for constant values that cannot be reassigned, var is used for variable declaration, and char is a data type for storing characters in programming languages.

    • OOPs concepts include inheritance, encapsulation, polymorphism, and abstraction. Example: Inheritance allows a class to inherit properties and methods from another class.

    • JavaS...

  • Answered by AI
  • Q2. What is Type coercion?
  • Ans. 

    Type coercion is the process of converting one data type to another in programming.

    • Type coercion can happen implicitly or explicitly in programming languages.

    • Implicit type coercion occurs when the language automatically converts data types during operations.

    • Explicit type coercion occurs when the programmer manually converts data types using functions or operators.

    • Example: In JavaScript, the addition operator (+) can pe...

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

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class. Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Inheritance allows for code reusability by defining a new class based on an existing class.

    • Polymorphism enables flexibility in programming by allowing objects to be treated as instances of their pare...

  • Answered by AI
  • Q4. API Error code with explaination?
  • Ans. 

    API error codes are unique identifiers used to indicate specific errors in an API response.

    • API error codes are typically numeric or alphanumeric codes that correspond to specific errors in the API.

    • Each error code should have a corresponding explanation in the API documentation to help developers understand the issue.

    • Examples of API error codes include 400 Bad Request, 401 Unauthorized, and 404 Not Found.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Introduce Yourself? Why should we hire you? What is your relevant experience? Tell me about yourself? What are your salary expectations?

Interview Preparation Tips

Topics to prepare for Globant Automation Test Engineer interview:
  • Javascript
  • Cypress
  • OOPS
  • Core Java
  • API
Interview preparation tips for other job seekers - I Interviewed at Globant on 13/05/2024. First round went very well where they introduce about there company and link was provided For MCQ and coding round conducted.2nd round was GK round which was totally based on Technical question. I had answered each and very question but then also not got selected.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Tell me something about Oops concepts
  • Ans. 

    Oops concepts refer to Object-Oriented Programming principles such as Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation det

  • Answered by AI
  • Q2. What is the difference between Abstract class and Interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while Interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while Interface cannot have any implementation.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes are used to provide a common base for multiple classes, while Interfaces are used to define a contrac...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Write xpath for makemy trip application
  • Ans. 

    XPath for locating elements on MakeMyTrip application

    • Use unique attributes like id, class, name, etc. to create XPath

    • Avoid using indexes in XPath as they can be unreliable

    • Use contains() and starts-with() functions for dynamic attributes

    • Consider using parent-child relationships for complex structures

  • Answered by AI
  • Q2. Exception handling , stale element exception

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. About my experience
  • Q2. About my project and automation work
Round 2 - HR 

(2 Questions)

  • Q1. About my notice period
  • Q2. About my expected ctc

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude and out put realted questions

Round 2 - Coding Test 

Face to face dsa and string manipulations

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

2 array question 1 on sorting other one is for searching

UST BlueConch Technologies Interview FAQs

How many rounds are there in UST BlueConch Technologies QA Automation Engineer interview?
UST BlueConch Technologies interview process usually has 1 rounds. The most common rounds in the UST BlueConch Technologies interview process are Technical.
What are the top questions asked in UST BlueConch Technologies QA Automation Engineer interview?

Some of the top questions asked at the UST BlueConch Technologies QA Automation Engineer interview -

  1. Explain OOPS concept expl...read more
  2. OOPS concept expl...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Google Interview Questions
4.4
 • 855 Interviews
Mphasis Interview Questions
3.4
 • 792 Interviews
Amdocs Interview Questions
3.8
 • 528 Interviews
View all
UST BlueConch Technologies QA Automation Engineer Salary
based on 18 salaries
₹4.8 L/yr - ₹14 L/yr
20% more than the average QA Automation Engineer Salary in India
View more details

UST BlueConch Technologies QA Automation Engineer Reviews and Ratings

based on 3 reviews

4.4/5

Rating in categories

4.5

Skill development

4.4

Work-life balance

3.9

Salary

4.4

Job security

4.4

Company culture

3.9

Promotions

4.4

Work satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer
213 salaries
unlock blur

₹7.8 L/yr - ₹27 L/yr

Software Engineer
119 salaries
unlock blur

₹4.5 L/yr - ₹19 L/yr

Softwaretest Engineer
96 salaries
unlock blur

₹3.1 L/yr - ₹6.5 L/yr

Senior QA Engineer
64 salaries
unlock blur

₹6.5 L/yr - ₹15 L/yr

QA Test Engineer
55 salaries
unlock blur

₹3.5 L/yr - ₹4.9 L/yr

Explore more salaries
Compare UST BlueConch Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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