Upload Button Icon Add office photos
Engaged Employer

i

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

Etelligens Technologies Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 33 Reviews

Filter interviews by

Etelligens Technologies QA Trainee Interview Questions and Answers

Updated 3 Apr 2024

Etelligens Technologies QA Trainee Interview Experiences

1 interview found

QA Trainee Interview Questions & Answers

user image Anonymous

posted on 3 Apr 2024

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

I applied via LinkedIn and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Basic question about software engineering.
  • Q2. Basic question about oops
  • Q3. Basic question about SDLC, STLC, Testing etc.,
Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic opps concept
  • Q2. Basic software engineering questions
Round 3 - HR 

(1 Question)

  • Q1. Policy and regulations discussion

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Sep 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Round 1:Online round was conducted on Hirepro platform. It was divided into 5 sections. Aptitude(15 ques, 15 min) verbal(5 ques, 5 min) logical(10 ques, 10 min) puzzles and logical mixed(10 ques, 10 ...
  • Q2. Round 2(Domain): BST, doubly linked list
  • Q3. Round 3(Attribute): puzzles

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 1:Online round was conducted on Hirepro platform. It was divided into 5 sections.

Aptitude(15 ques, 15 min)
verbal(5 ques, 5 min)
logical(10 ques, 10 min)
puzzles and logical mixed(10 ques, 10 min)
coding(1 ques, 30 min)
Every section was easy but the time was the important key here to cross the sectional cut-off. Coding ques was to give the smallest no divisible by an given integer n and whose sum is equal to given integer m.

After this round, from 900 students, 51 got shortlisted for the further rounds
Round 2(Domain):

It was tricky round. questions were asked from Domain subjects such as OS, DBMS(SQL queries), concepts of software engineering, java, data structure(BST, doubly linked list) along with some few puzzles(how to measure x liters from a and b liters, kind of). few programs such as swapping two no without using third variable, Fibonacci series.

java was asked in depth, i was asked real world examples of oops concepts such as abstraction, inheritance etc. Questions on collections, exceptions, project discussion.

overall if your basics are strong you can easily clear this round

After this round 15 students were shortlisted for further HR round.

Round 3(Attribute):

This round was taken by a technical person so i was asked some behavioral questions that needed technical approach too to solve.

Tell me about your projects and the difficulty and risks you faced.
if you are dealing with a client who is having some doubts related to your project, who will you make him to trust you
where did you use sorting in your project
how will you motivate your team members for doing the project they have been assigned.
how will you test your project for finding errors? (SE questions, had to tell him about testing)
some basic puzzles on number series.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Parallel test in cucumber
  • Ans. 

    Parallel test execution in Cucumber allows running multiple test scenarios simultaneously for faster results.

    • Use tools like TestNG or JUnit to run Cucumber tests in parallel

    • Configure the test runner to specify the number of threads to use for parallel execution

    • Ensure that the tests are independent and do not interfere with each other

    • Consider using a parallel plugin like Cucumber-JVM-Parallel to manage parallel executio

  • Answered by AI
  • Q2. How to handle browser history
  • Ans. 

    Browser history can be handled by clearing cache, cookies, and browsing data regularly.

    • Regularly clear cache, cookies, and browsing history to improve browser performance

    • Use incognito mode for private browsing to prevent history from being saved

    • Disable browser history tracking if needed for privacy reasons

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Implicit Wait and Explicit Wait
  • Q2. How to handle browser history
  • Ans. 

    Browser history can be managed by clearing cache, cookies, and browsing history regularly.

    • Regularly clear cache, cookies, and browsing history to improve browser performance

    • Use private browsing mode to prevent saving browsing history

    • Disable browser history tracking in browser settings

    • Use browser extensions or plugins to manage and delete browsing history

    • Consider using a VPN for additional privacy and security

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Last job related
  • Q2. Automation
Round 2 - One-on-one 

(1 Question)

  • Q1. Our last job experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont apply here, not a good place for work

QA Engineer Interview Questions & Answers

ITC Infotech user image Mamta Balakrishna

posted on 13 Dec 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java program to split alpha-numeric values without using the split method
  • Ans. 

    Split alpha-numeric values in Java without using split method

    • Iterate through each character in the input string

    • Check if the character is a digit or a letter using Character.isDigit() and Character.isLetter() methods

    • Create separate strings for digits and letters and store them in an array

  • Answered by AI
  • Q2. SQL query to add a new column to a table and the column value should have a default value and never be null
  • Ans. 

    Use ALTER TABLE statement to add a new column with a default value and set it to NOT NULL

    • Use ALTER TABLE table_name ADD column_name data_type DEFAULT default_value NOT NULL;

    • Example: ALTER TABLE employees ADD hire_date DATE DEFAULT '2022-01-01' NOT NULL;

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Selenium vs cypress
  • Ans. 

    Selenium is a widely used open-source tool for web automation testing, while Cypress is a newer tool known for its fast and reliable testing capabilities.

    • Selenium is more established and has a larger community support

    • Cypress is known for its fast test execution times

    • Cypress has built-in support for modern web technologies like React and Angular

    • Selenium supports multiple programming languages like Java, Python, and C#

    • Cy...

  • Answered by AI
  • Q2. How do you install cypress
  • Ans. 

    Cypress can be installed using npm package manager.

    • Install Node.js if not already installed

    • Open terminal and run 'npm install cypress'

    • Once installation is complete, run 'npx cypress open' to open Cypress Test Runner

  • Answered by AI
  • Q3. Reverse a string in Javascript
  • Ans. 

    Reverse a string in Javascript

    • Use the split() method to convert the string into an array of characters

    • Use the reverse() method to reverse the order of the characters

    • Use the join() method to convert the array back into a string

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is the respiratory system
  • Q2. What is the functions of heart
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Program to remove special characters and numbers from the string and print only letters
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic questions on oops and sql queries

Round 2 - Technical 

(2 Questions)

  • Q1. SQL Query on many to many table and aggregations
  • Q2. OOPS concepts and SpringBoot
Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
-
Round 1 - Aptitude Test 

They gave a set of aptitude questions and time to complete it was 60 mins. It was not too difficult to clear

Round 2 - One-on-one 

(2 Questions)

  • Q1. Why do you want to join this internship program?
  • Ans. 

    I want to join this internship program to gain practical experience in my field of study and to learn from industry professionals.

    • Gain practical experience in my field of study

    • Learn from industry professionals

    • Enhance my skills and knowledge

    • Networking opportunities

    • Potential for future employment

  • Answered by AI
  • Q2. Questions about my educational background?
Round 3 - HR 

(1 Question)

  • Q1. What are your strengths and weaknesses?
  • Ans. 

    My strengths include strong communication skills and attention to detail. My weaknesses include being overly critical of my own work and sometimes struggling with time management.

    • Strengths: strong communication skills

    • Strengths: attention to detail

    • Weaknesses: overly critical of my own work

    • Weaknesses: sometimes struggle with time management

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and express your interests

Etelligens Technologies Interview FAQs

How many rounds are there in Etelligens Technologies QA Trainee interview?
Etelligens Technologies interview process usually has 3 rounds. The most common rounds in the Etelligens Technologies interview process are One-on-one Round and HR.
What are the top questions asked in Etelligens Technologies QA Trainee interview?

Some of the top questions asked at the Etelligens Technologies QA Trainee interview -

  1. Basic question about SDLC, STLC, Testing et...read more
  2. Basic question about software engineeri...read more
  3. Basic software engineering questi...read more

Tell us how to improve this page.

Etelligens Technologies QA Trainee Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 802 Interviews
Nagarro Interview Questions
4.0
 • 776 Interviews
View all
Software Developer
21 salaries
unlock blur

₹1.5 L/yr - ₹7.1 L/yr

Associate Software Developer
11 salaries
unlock blur

₹1.8 L/yr - ₹3.6 L/yr

Front end Developer
8 salaries
unlock blur

₹1.8 L/yr - ₹11 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹4.6 L/yr - ₹11 L/yr

Software Engineer
5 salaries
unlock blur

₹1 L/yr - ₹2.9 L/yr

Explore more salaries
Compare Etelligens Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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