Upload Button Icon Add office photos
Engaged Employer

i

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

Qentelli Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Qentelli Interview Questions and Answers

Updated 18 May 2025
Popular Designations

11 Interview questions

A Senior Test Engineer Lead was asked 9mo ago
Q. How do you create a pipeline in Jenkins?
Ans. 

To create a pipeline in Jenkins, you can use the Jenkins Pipeline plugin and define your pipeline as code in a Jenkinsfile.

  • Install the Jenkins Pipeline plugin

  • Create a Jenkinsfile in your project repository

  • Define your pipeline stages, steps, and configurations in the Jenkinsfile

  • Commit and push the Jenkinsfile to trigger the pipeline execution

  • Monitor the pipeline execution and view the results in Jenkins UI

View all Senior Test Engineer Lead interview questions
A Senior Test Engineer Lead was asked 9mo ago
Q. How do you resolve Git conflicts?
Ans. 

Git conflicts can be resolved by using git merge or git rebase, resolving conflicts manually, and using git mergetool.

  • Use 'git merge' to merge changes from different branches

  • Use 'git rebase' to reapply changes on top of another branch

  • Resolve conflicts manually by editing the conflicting files

  • Use 'git mergetool' to resolve conflicts with a visual merge tool

View all Senior Test Engineer Lead interview questions
A Senior Quality Assurance Engineer 2 was asked 12mo ago
Q. What is the difference between throw and throws?
Ans. 

throw is a keyword used to manually throw an exception in Java, while throws is used in method signature to declare the exceptions that can be thrown by the method.

  • throw is used to throw an exception explicitly within a method

  • throws is used in method signature to declare the exceptions that can be thrown by the method

  • throw is followed by an instance of Throwable class

  • throws is followed by the exception classes tha...

View all Senior Quality Assurance Engineer 2 interview questions
A Senior Quality Assurance Engineer 2 was asked 12mo ago
Q. Write code to find the repeated characters in a string.
Ans. 

Code to find repeated characters in a string

  • Iterate through each character in the string

  • Use a hashmap to store the count of each character

  • Iterate through the hashmap and add characters with count > 1 to the result array

View all Senior Quality Assurance Engineer 2 interview questions
A Delivery and Operations Manager was asked
Q. How do you ensure that project delivery stays on track and meets client expectations?
Ans. 

I ensure project delivery stays on track by setting clear goals, monitoring progress, addressing issues promptly, and communicating effectively with clients.

  • Set clear project goals and milestones to track progress

  • Regularly monitor project status and adjust timelines as needed

  • Address any issues or roadblocks promptly to prevent delays

  • Communicate effectively with clients to manage expectations and provide updates

  • Uti...

View all Delivery and Operations Manager interview questions
A Senior UI UX Designer was asked
Q. What is your Expected CTC?
Ans. 

My expected CTC is in line with industry standards and commensurate with my experience and skills.

  • I have researched the market rates for Senior UX UI Designers in this region

  • I am open to negotiation based on the specific job requirements and benefits package

  • My previous salary was in the range of X to Y

  • I am looking for a fair and competitive compensation package

View all Senior UI UX Designer interview questions
A Senior UI UX Designer was asked
Q. How did you get into UI/UX design?
Ans. 

I landed into UI UX through my passion for design and technology.

  • Started designing websites as a hobby

  • Took courses in graphic design and web development

  • Worked on freelance projects to gain experience

  • Joined a startup as a UI UX designer

  • Continued to learn and improve through online resources and networking

View all Senior UI UX Designer interview questions
Are these interview questions helpful?
A Senior Software Tester was asked
Q. How would you rate your skills in manual and automation testing?
Ans. 

I rate myself highly in both manual and automation testing

  • I have extensive experience in manual testing and have developed a keen eye for identifying defects

  • I am proficient in automation testing tools such as Selenium and have created automated test scripts for various projects

  • I understand the importance of both manual and automation testing and know when to use each approach

  • I continuously strive to improve my ski...

View all Senior Software Tester interview questions
A Senior Software Tester was asked
Q. What is the syntax for XPath?
Ans. 

XPath syntax is used to navigate through XML documents and select elements and attributes.

  • XPath expressions are written in a path-like syntax, using forward slashes to separate elements and attributes

  • Predicates can be used to filter elements based on their attributes or position in the document

  • Functions can be used to manipulate values or perform calculations on elements

  • Examples: //bookstore/book/title selects all...

View all Senior Software Tester interview questions
A Tester was asked
Q. How do you prioritize test cases?
Ans. 

Test cases can be prioritized based on risk, importance, complexity, and frequency of use.

  • Identify critical functionalities and prioritize test cases accordingly

  • Consider the impact of failure on end-users and prioritize tests that cover those scenarios

  • Prioritize tests that cover high-risk areas of the application

  • Prioritize tests that cover frequently used features

  • Prioritize tests that cover complex functionalities

  • ...

View all Tester interview questions

Qentelli Interview Experiences

22 interviews found

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

(5 Questions)

  • Q1. String based questions
  • Q2. Java oops concept
  • Q3. Selenium basics
  • Q4. Rest assured basics
  • Q5. CicD questions and testing process
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. How to resolve git conflicts
  • Ans. 

    Git conflicts can be resolved by using git merge or git rebase, resolving conflicts manually, and using git mergetool.

    • Use 'git merge' to merge changes from different branches

    • Use 'git rebase' to reapply changes on top of another branch

    • Resolve conflicts manually by editing the conflicting files

    • Use 'git mergetool' to resolve conflicts with a visual merge tool

  • Answered by AI
  • Q2. How to create pipeline in Jenkins
  • Ans. 

    To create a pipeline in Jenkins, you can use the Jenkins Pipeline plugin and define your pipeline as code in a Jenkinsfile.

    • Install the Jenkins Pipeline plugin

    • Create a Jenkinsfile in your project repository

    • Define your pipeline stages, steps, and configurations in the Jenkinsfile

    • Commit and push the Jenkinsfile to trigger the pipeline execution

    • Monitor the pipeline execution and view the results in Jenkins UI

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Java questions related to collections
  • Q2. Selenium questions wrt framework

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. System Design of an existing system
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 May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between throw,throws
  • Ans. 

    throw is a keyword used to manually throw an exception in Java, while throws is used in method signature to declare the exceptions that can be thrown by the method.

    • throw is used to throw an exception explicitly within a method

    • throws is used in method signature to declare the exceptions that can be thrown by the method

    • throw is followed by an instance of Throwable class

    • throws is followed by the exception classes that the...

  • Answered by AI
  • Q2. Code to get the repeated chars in a string
  • Ans. 

    Code to find repeated characters in a string

    • Iterate through each character in the string

    • Use a hashmap to store the count of each character

    • Iterate through the hashmap and add characters with count > 1 to the result array

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Given array on integers identifying unique number

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

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. PM methodologies
  • Q2. Explain 1 difficult project
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Behavioral 

(1 Question)

  • Q1. Briefly explain about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident at any stage
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Naukri.com and was interviewed in Apr 2023. There were 2 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 

(6 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am an experienced Senior Software Tester with a strong background in quality assurance and test automation.

    • Over 8 years of experience in software testing

    • Proficient in test planning, test case design, and execution

    • Expertise in test automation using tools like Selenium and JUnit

    • Strong knowledge of Agile methodologies and Scrum framework

    • Excellent problem-solving and analytical skills

    • Effective communication and collabora...

  • Answered by AI
  • Q2. What is the syntax for Xpath
  • Ans. 

    XPath syntax is used to navigate through XML documents and select elements and attributes.

    • XPath expressions are written in a path-like syntax, using forward slashes to separate elements and attributes

    • Predicates can be used to filter elements based on their attributes or position in the document

    • Functions can be used to manipulate values or perform calculations on elements

    • Examples: //bookstore/book/title selects all titl...

  • Answered by AI
  • Q3. How do you rate yourself in manual and Automation testing
  • Ans. 

    I rate myself highly in both manual and automation testing

    • I have extensive experience in manual testing and have developed a keen eye for identifying defects

    • I am proficient in automation testing tools such as Selenium and have created automated test scripts for various projects

    • I understand the importance of both manual and automation testing and know when to use each approach

    • I continuously strive to improve my skills i...

  • Answered by AI
  • Q4. What are your roles and responsibilities in your Project
  • Ans. 

    As a Senior Software Tester, my roles and responsibilities in my project include test planning, test case creation, test execution, defect tracking, and reporting.

    • Test planning: I collaborate with the project team to define the testing scope, objectives, and strategies.

    • Test case creation: I design and develop test cases based on the project requirements and specifications.

    • Test execution: I execute test cases, identify ...

  • Answered by AI
  • Q5. How do you track progress of your project
  • Ans. 

    I track progress of my project by using various metrics and tools.

    • I use project management tools like Jira or Trello to track tasks and their progress.

    • I regularly communicate with the development team to get updates on their work.

    • I monitor the test execution progress by tracking the number of test cases executed and their results.

    • I analyze the defect tracking system to see the number of open, resolved, and closed defec...

  • Answered by AI
  • Q6. Why do we use Maven
  • Ans. 

    Maven is a build automation tool used in software development to manage dependencies and build projects.

    • Maven simplifies the build process by providing a standard way to define project structure and dependencies.

    • It automatically downloads required dependencies from remote repositories.

    • Maven allows for easy project management, including building, testing, and packaging.

    • It supports various plugins for different tasks lik...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Qentelli Senior Software Tester interview:
  • Agile
  • Selenium
  • Manual Testing

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. All ABP on Hana questions
Round 3 - Client Interview 

(1 Question)

  • Q1. Technical round by client
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Group Discussion 

Topics related IT Sector and Networking topics along with one general topic

Round 2 - Aptitude Test 

Appitude and Reasoning Test

Round 3 - Technical 

(2 Questions)

  • Q1. Skill set PL related questions
  • Q2. Project related questions
Round 4 - HR 

(2 Questions)

  • Q1. Package related questions
  • Q2. Transportation and Hybrid related discussions.

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Qentelli?
Ask anonymously on communities.

Qentelli Interview FAQs

How many rounds are there in Qentelli interview?
Qentelli interview process usually has 2-3 rounds. The most common rounds in the Qentelli interview process are Technical, HR and Resume Shortlist.
How to prepare for Qentelli 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 Qentelli. The most common topics and skills that interviewers at Qentelli expect are Angular, Javascript, Java, AWS and Automation Testing.
What are the top questions asked in Qentelli interview?

Some of the top questions asked at the Qentelli interview -

  1. How do you rate yourself in manual and Automation test...read more
  2. How do you ensure that project delivery stays on track and meets client expecta...read more
  3. How did you land into UI ...read more
How long is the Qentelli interview process?

The duration of Qentelli interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 20 interview experiences

Difficulty level

Easy 20%
Moderate 80%

Duration

Less than 2 weeks 80%
2-4 weeks 10%
4-6 weeks 10%
View more

Interview Questions from Similar Companies

Softenger Interview Questions
4.0
 • 58 Interviews
TestingXperts Interview Questions
3.9
 • 41 Interviews
Credera Interview Questions
3.7
 • 40 Interviews
Aabasoft Interview Questions
4.1
 • 37 Interviews
Stefanini Interview Questions
3.0
 • 36 Interviews
Foray Software Interview Questions
3.5
 • 36 Interviews
View all

Qentelli Reviews and Ratings

based on 312 reviews

4.0/5

Rating in categories

3.8

Skill development

4.0

Work-life balance

3.8

Salary

3.7

Job security

4.1

Company culture

3.6

Promotions

3.9

Work satisfaction

Explore 312 Reviews and Ratings
.NET Architect

Hyderabad / Secunderabad

12-16 Yrs

Not Disclosed

HubSpot Marketing Automation Specialist

Hyderabad / Secunderabad

6-11 Yrs

Not Disclosed

Sap Hana Consultant

Hyderabad / Secunderabad

6-11 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
301 salaries
unlock blur

₹8 L/yr - ₹31 L/yr

Software Engineer
148 salaries
unlock blur

₹3.5 L/yr - ₹12.1 L/yr

Technical Lead
92 salaries
unlock blur

₹15 L/yr - ₹33 L/yr

Lead Software Engineer
52 salaries
unlock blur

₹11.5 L/yr - ₹24 L/yr

Associate Architect
26 salaries
unlock blur

₹15 L/yr - ₹34.3 L/yr

Explore more salaries
Compare Qentelli with

Softenger

4.0
Compare

Foray Software

3.5
Compare

Nelito System

3.4
Compare

Alchemy Techsol India

3.6
Compare
write
Share an Interview