Upload Button Icon Add office photos
Engaged Employer

i

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

Cigniti Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Cigniti Technologies Senior QA Engineer Interview Questions, Process, and Tips

Updated 1 Nov 2021

Cigniti Technologies Senior QA Engineer Interview Experiences

1 interview found

Interview Questionnaire 

5 Questions

  • Q1. 1. Explain current project framework
  • Ans. 

    Our current project framework is based on Selenium WebDriver and TestNG.

    • We use Selenium WebDriver for automating web application testing.

    • TestNG is used for test management and reporting.

    • We follow Page Object Model design pattern for better code maintainability.

    • We use Maven for project build and dependency management.

    • We integrate with Jenkins for continuous integration and deployment.

  • Answered by AI
  • Q2. 2. WAP to reverse a string using while loop.
  • Ans. 

    WAP to reverse a string using while loop.

    • Declare a string variable and initialize it with the input string

    • Declare an empty string variable to store the reversed string

    • Use a while loop to iterate through the input string from the end to the beginning

    • Append each character to the empty string variable

    • Print the reversed string

  • Answered by AI
  • Q3. 3. WAP to print all the alphabets only from the below string - I/p: "selenium 123java456", o/p: "seleniumjava"
  • Ans. 

    Write a program to print all the alphabets from a given string.

    • Loop through each character in the string

    • Check if the character is an alphabet using isalpha() function

    • If it is an alphabet, add it to a new string

    • Print the new string

  • Answered by AI
  • Q4. 4. Cucumber hooks and background
  • Q5. 5. How do u start designing framework?
  • Ans. 

    Designing a framework involves identifying the scope, selecting the right tools, creating a structure, and implementing it.

    • Identify the scope of the framework

    • Select the right tools and technologies

    • Create a structure for the framework

    • Implement the framework and test it

    • Ensure the framework is scalable and maintainable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There were four rounds of interview -
1. Technical 1
2. Technical 2
3. Discussion with Project Director
4. HR Discussion

All the rounds were of 30 mins except the third one. It went for 15 mins discussion with project director.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Monster and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical selenium and architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with technical knowlage

Interview Questionnaire 

2 Questions

  • Q1. Basisc of cove java
  • Ans. 

    Core Java is the fundamental part of Java programming language.

    • Core Java includes basic concepts like data types, control structures, and object-oriented programming.

    • It is used to develop standalone applications, web applications, and mobile applications.

    • Examples of Core Java libraries include java.lang, java.util, and java.io.

    • Core Java is a prerequisite for learning advanced Java concepts like Spring and Hibernate.

  • Answered by AI
  • Q2. Framework designing and selenium questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Work on jva concepts

Round 2 - Coding Test 

Array and link list questions.

Round 3 - Technical 

(1 Question)

  • Q1. Rest Api and rest assured
Round 4 - HR 

(1 Question)

  • Q1. Negotiations regarding the post
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Testing basic questions
Round 2 - HR 

(1 Question)

  • Q1. General HR questions
Interview experience
1
Bad
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com

Round 1 - Technical 

(1 Question)

  • Q1. Introduce yourself and give some brief about work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - I have appeared for the interview for the Role of QA Automation Engineer at Vadodara Branch. I joined the meeting early 5 minutes as usual then waited around 15 minutes of the panel and they joined the meeting. After that, I was asked to introduce myself and give some brief about my experience and role. So,I mentioned that I have 2 years of experience in Automation Testing which I had already mentioned to HR during the screening round and the panel asked rudely I have only 2 years' experience they put the meeting on hold for a longer time and came back and just message in the meeting saying we required at least 4 years of experience and how come you didn't tell HR.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. About your expertise.
  • Q2. Team management.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(9 Questions)

  • Q1. Match 14 characters before @ , given an url
  • Ans. 

    Extract the 14 characters before @ in a given URL

    • Use string manipulation to extract characters before @ symbol

    • Consider edge cases like no @ symbol or less than 14 characters before @

    • Handle special characters like %20 or %40

  • Answered by AI
  • Q2. Match Atleast one capital, once small case, 1 digit and 1 special character using regex?
  • Ans. 

    Regex pattern to match at least one capital letter, one small case letter, one digit, and one special character.

    • Use the regex pattern: (?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*[^A-Za-z0-9])

    • Example: Password@123

  • Answered by AI
  • Q3. Given a string ="This is my interview for QA engineer"; write code to give an output of each word with vowel count?
  • Ans. 

    Code to output each word with vowel count in a given string.

    • Split the string into words using space as delimiter

    • Iterate through each word and count the number of vowels

    • Store the word and its vowel count in an array of strings

  • Answered by AI
  • Q4. Given a 2X2 Matrix, find the maximum diagonal sum?
  • Ans. 

    To find the maximum diagonal sum in a 2X2 Matrix, sum the elements of the main diagonal and the opposite diagonal.

    • Sum the elements of the main diagonal (top left to bottom right) and the opposite diagonal (top right to bottom left).

    • Compare the sums of both diagonals and return the maximum sum.

    • Example: For a 2X2 Matrix [[1, 2], [3, 4]], the main diagonal sum is 1+4=5 and the opposite diagonal sum is 2+3=5. The maximum d

  • Answered by AI
  • Q5. How do you find the selected option text from dropdown in selenium?
  • Ans. 

    To find the selected option text from a dropdown in Selenium, you can use the getFirstSelectedOption() method.

    • Use the Select class to work with dropdown elements in Selenium

    • Use the getFirstSelectedOption() method to get the selected option

    • Retrieve the text of the selected option using getText() method

  • Answered by AI
  • Q6. Given a dropdown contains options with duplicates. Find those duplicates along with its occurrence/frequency?
  • Ans. 

    Find duplicates in a dropdown along with their occurrence/frequency.

    • Iterate through the dropdown options and store each option in a hashmap with its frequency.

    • Identify options with frequency greater than 1 as duplicates.

    • Return the duplicates along with their occurrence/frequency.

  • Answered by AI
  • Q7. How do you resolve merge conflicts in git?
  • Ans. 

    Resolve merge conflicts in git by using git commands and tools.

    • Pull the latest changes from the remote repository

    • Use 'git status' to identify conflicting files

    • Open the conflicting files and manually resolve the conflicts

    • Add the resolved files to the staging area using 'git add'

    • Commit the changes with a merge message using 'git commit'

  • Answered by AI
  • Q8. How to bring specific commit changes to your branch?
  • Ans. 

    Use git cherry-pick command to bring specific commit changes to your branch.

    • Identify the commit hash of the specific changes you want to bring to your branch.

    • Checkout to the branch where you want to apply the changes.

    • Use 'git cherry-pick <commit-hash>' command to apply the specific commit changes to your branch.

  • Answered by AI
  • Q9. How to switch to frame and come out of it in selenium?
  • Ans. 

    To switch to a frame in Selenium, use driver.switchTo().frame() method. To come out of a frame, use driver.switchTo().defaultContent() method.

    • Use driver.switchTo().frame() method to switch to a frame

    • Use driver.switchTo().defaultContent() method to come out of a frame

    • Example: driver.switchTo().frame("frameName");

    • Example: driver.switchTo().defaultContent();

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep doing any activity(remove/add/update resume, change skills etc..) in naukri/linkedin so that i catches recruiters attention
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude questions. Candidate with average knowledge can crack it.

Round 2 - Coding Test 

Two programming questions were asked. Difficulty level was medium.

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions related to programming.
Round 4 - HR 

(1 Question)

  • Q1. HR type questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and be confident.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Selenium framework level questions
  • Q2. ETL questions & Data warehouse concepts
  • Q3. Functional/ manual testing related questions
Round 2 - HR 

(2 Questions)

  • Q1. Few technical questions & generic questions
  • Q2. CTC & Experience & expected CTC & Notice period, etc
Contribute & help others!
anonymous
You can choose to be anonymous

Cigniti Technologies Interview FAQs

How to prepare for Cigniti Technologies Senior QA Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Cigniti Technologies. The most common topics and skills that interviewers at Cigniti Technologies expect are Agile, Automation Framework, Communication Skills, Project Management and SQL.
What are the top questions asked in Cigniti Technologies Senior QA Engineer interview?

Some of the top questions asked at the Cigniti Technologies Senior QA Engineer interview -

  1. 3. WAP to print all the alphabets only from the below string - I/p: "selenium 1...read more
  2. 5. How do u start designing framewor...read more
  3. 2. WAP to reverse a string using while loo...read more

Recently Viewed

INTERVIEWS

Signzy Technologies

No Interviews

INTERVIEWS

Signzy Technologies

No Interviews

INTERVIEWS

Signzy Technologies

No Interviews

INTERVIEWS

Cigniti Technologies

No Interviews

LIST OF COMPANIES

Discover companies

Find best workplace

SALARIES

LambdaTest

INTERVIEWS

Signzy Technologies

No Interviews

INTERVIEWS

Cigniti Technologies

No Interviews

INTERVIEWS

Cigniti Technologies

70 top interview questions

INTERVIEWS

Signzy Technologies

10 top interview questions

Tell us how to improve this page.

Cigniti Technologies Senior QA Engineer Salary
based on 63 salaries
₹5.5 L/yr - ₹18.5 L/yr
5% more than the average Senior QA Engineer Salary in India
View more details

Cigniti Technologies Senior QA Engineer Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Test Engineer
609 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
513 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Test Lead
389 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Test Engineer
358 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
262 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cigniti Technologies with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

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