Upload Button Icon Add office photos

Filter interviews by

Calidad Infotech Sdet-I Interview Questions and Answers

Updated 17 Dec 2024

Calidad Infotech Sdet-I Interview Experiences

1 interview found

Sdet-I Interview Questions & Answers

user image Anonymous

posted on 17 Dec 2024

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

I applied via Referral and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic of manual testing
  • Q2. Basic of python question
Round 2 - Coding Test 

-inheritance program

Interview questions from similar companies

I applied via Internshala and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. I just filling this because I never had job here for now because I am undergrad student and this website is asking for my review so sorry for disappoint you..

Interview Preparation Tips

Interview preparation tips for other job seekers - Thankyou...................................
Round 1 - Case Study 

Working as good

Round 2 - Technical 

(1 Question)

  • Q1. Core java and selenium

Interview Preparation Tips

Interview preparation tips for other job seekers - Good as good morning benefits prospects

Sdet-I Interview Questions & Answers

Amazon user image Anonymous

posted on 25 May 2015

Interview Questionnaire 

16 Questions

  • Q1. Given an array and a number, check whether there are any 3 elements in the array which add up to the given number
  • Ans. 

    Check if any 3 elements in an array add up to a given number

    • Sort the array in ascending order

    • Use nested loops to iterate through all possible combinations of 3 elements

    • Check if the sum of the 3 elements equals the given number

    • Return true if a match is found, else false

  • Answered by AI
  • Q2. Given a number, find the nearest perfect square(modified binary search)
  • Ans. 

    Given a number, find the nearest perfect square using modified binary search.

    • Start with low=0 and high=num.

    • While low<=high, find mid=(low+high)/2.

    • If mid*mid==num, return mid.

    • If mid*mid

    • If mid*mid>num, update high=mid-1.

    • Return the closest perfect square to num.

  • Answered by AI
  • Q3. Write a method to check whether two binary trees are mirrors of each other -----/
  • Q4. Write a method to print the boundaries of a binary tree -----/
  • Q5. Fill an array with the next greater elements (using stack) -----/
  • Q6. Given a binary tree, count the number of occurrences where there are two nodes with the same horizontal distance. To make it clearer, if we assume each node in a cell of a matrix, then count the number of ...
  • Ans. 

    Count occurrences of two nodes with same horizontal distance in a binary tree

    • Traverse the tree using BFS or DFS and keep track of horizontal distance of each node

    • Store nodes with same horizontal distance in a hash table and increment count if collision occurs

    • Recursively traverse left and right subtrees with updated horizontal distance

    • Time complexity: O(n), Space complexity: O(n)

  • Answered by AI
  • Q7. Given a linked list, write a program to check if it is a palindrome
  • Ans. 

    Program to check if a linked list is a palindrome

    • Traverse the linked list and push each element onto a stack

    • Traverse the linked list again and compare each element with the top of the stack

    • If all elements match, the linked list is a palindrome

  • Answered by AI
  • Q8. Write some test methods for stress testing of Furniture class
  • Ans. 

    Test methods for stress testing of Furniture class

    • Create a large number of Furniture objects and check for memory leaks

    • Simulate heavy usage by continuously calling methods and check for performance issues

    • Test the Furniture class with maximum allowed input values and check for any errors or crashes

  • Answered by AI
  • Q9. Some discussion on automation testing
  • Q10. Discussion about my current job role
  • Q11. Several behavioral and team fit questions
  • Q12. What are the things you will consider (both from Developer’s perspective and User perspective) while trying to develop an application for computer aided competitive examinations like CAT, GMAT etc
  • Ans. 

    Considerations for developing an application for computer aided competitive exams

    • User-friendly interface for easy navigation

    • Accurate and reliable question bank

    • Timed tests to simulate real exam conditions

    • Option to save and resume tests

    • Detailed performance analysis and feedback

    • Compatibility with different devices and operating systems

    • Regular updates and bug fixes

    • Developer should consider the security of the application t...

  • Answered by AI
  • Q13. Given a singly linked list, write a recursive method to reverse every 3 nodes in the list. I did not write a clean code for this. He moved on because of lack of time
  • Ans. 

    Reverse every 3 nodes in a singly linked list using recursion

    • Create a recursive function that takes in a node and a count

    • If count is less than 3, return the node

    • Reverse the first 3 nodes and call the function recursively with the 4th node and count 1

    • Connect the reversed nodes to the rest of the list

    • Return the new head of the reversed list

  • Answered by AI
  • Q14. Again discussion of my current job role and about the projects I have worked on
  • Q15. Tell me 3 things that you want to learn/change in yourself
  • Ans. 

    I want to learn/change 3 things about myself

    • Improve my communication skills

    • Develop better time management habits

    • Learn a new programming language

  • Answered by AI
  • Q16. Again several team fit questions

Interview Preparation Tips

Round: Technical Interview
Experience: 1. Given an array and a number, check whether there are any 3 elements in the array which add up to the given number.
  For example:
     Given an array {1,2,3,4,5} and the number 9, return true, as 2,3,4 add up to 9.
     Given an array {1,2,3,4,5} and the number 3, return false, as there are no 3 elements which add up to 3, in the array.
2. Given a number, find the nearest perfect square(modified binary search)
  For example:
     Given 50, return 49
     Given 25, return 25

Round: Technical Interview
Experience: System: The user gives a book id to be downloaded and the location in which the book is to be stored. The system downloads the book (if it exists) in the location given by the user and returns a url through which the user can access the book.
I was asked to design automated test cases for the system. The interviewer kept adding more and more constraints to the system and we discussed about the pros and cons of my approach.

College Name: NA

Skills evaluated in this interview

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

I was interviewed in Jan 2025.

Round 1 - Coding Test 

1. Explain about framework architecture and from that all questions derived. asked to write diagram and explain the structure.
2. Difference between class variable and instance variable.
3. what is ITestListener why used and when used in framework.
4. architecture of selenium 4 (geckodriver, chromium driver)
5. what is BDD and cucumber, how both are related to.
6. which kind of framework you go, either POM or Page factory for with testNg/junit?
7. asked to write query on sql joins and how you fetch the second lowest of salary from each department.
8. DDL, DML statements.
9. pathquery and query parameters differences(API)
10. How the responses you are validating in automation framework for Json response file.
11. status code of Https
12. serialization and deserialization difference
13. String Builder, String Buffer and String difference? which is better and which is safe to use.
14. Dropdown in selenium how you handle, how to check which is already selected?
15. multiple data provider in testng and how you pass parameter and how you retrive from excel sheet? Asked to write code!
16.what is flaky testing?
17.Asked to write first code of JDBC connecting establishment with framework.
18. Code execution: input ="aabbabcbb"; output = a:3 , b:5, c:1 like this if they give name also it should count. Tip : HashMap you can write the code.
19. Code execution: a[]={1,2,3,4,0,0,0} b={5,6,7} output need to print as remove all 0's from first array and replace 1,2,3,4 with 5,6,7 some crazy questions.
20. Git cmds and CI/CD tool.

Round 2 - Coding Test 

1. asked about architecture and where you used oops concepts?
2. abstract class and interfaces
3. select drop down all options
4. find scrape links from webpage write the code
5. asked for writing xpath for any element random website.
6. asked about following-sibling, descendent and preceding-sibling, normalise-space locators.
7. jdbc connection code.
8. API JSON file - how you done validation in automation testing.

Round 3 - Technical 

(1 Question)

  • Q1. Why team lead position you have not taken till now and is their any managerial skills you are lacking on What kind of projects you worked on water fall model agile team You are only individual contributor?...
Round 4 - HR 

(1 Question)

  • Q1. About experience and studies Compensation discussed. Need all the exp letters and years

Interview Preparation Tips

Interview preparation tips for other job seekers - It was one day process and shortlisted drive. But it was huge number people for one profile.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asked about, DP, GRAPHS AND LINKEDLIST

Round 2 - Group Discussion 

Give panic situations

Round 3 - One-on-one 

(2 Questions)

  • Q1. What is java and linked list
  • Q2. Implementaion of testng in maven in selenium java
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Write a code to split a string to one by one letter in each line?
  • Q2. Write Xpath of an element from amazon.in page manually, without copying.

Interview Preparation Tips

Topics to prepare for Capgemini Senior Sdet Engineer interview:
  • Selenium
  • Java
Interview preparation tips for other job seekers - Get proper understanding of the current tool version of the tools you are using. Basic Java programming

Sdet Manager Interview Questions & Answers

LTIMindtree user image Sankeerthana Vanjari

posted on 21 Nov 2024

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

I applied via LinkedIn and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Cognitive,quatitative,logical

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yor self
  • Q2. About your project
Round 3 - Technical 

(2 Questions)

  • Q1. Based on the python
  • Q2. Html which is used for web page
  • Ans. 

    HTML is a markup language used for creating web pages.

    • HTML stands for HyperText Markup Language

    • It is used to structure content on the web

    • HTML tags are used to define elements like headings, paragraphs, images, links, etc.

    • Example:

      This is a heading

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Behaviroul questions
  • Q2. Communication skills

Skills evaluated in this interview

Sdet Engineer Interview Questions & Answers

Accenture user image AKANKSHA JAISWAL

posted on 28 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Apt and coding test was in first

Round 2 - Coding Test 

2 coding questions was ask

Round 3 - One-on-one 

(2 Questions)

  • Q1. It was on your resume question
  • Q2. Hr questions was asked in interview
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Manual Testing Concepts
  • Q2. What are Oops Concepts
  • Ans. 

    Oops Concepts are fundamental principles of object-oriented programming 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 of a function to behave differently based on the object it is acting upon.

    • Abstraction: Hiding t...

  • Answered by AI

Calidad Infotech Interview FAQs

How many rounds are there in Calidad Infotech Sdet-I interview?
Calidad Infotech interview process usually has 2 rounds. The most common rounds in the Calidad Infotech interview process are Technical and Coding Test.
What are the top questions asked in Calidad Infotech Sdet-I interview?

Some of the top questions asked at the Calidad Infotech Sdet-I interview -

  1. basic of manual test...read more
  2. Basic of python quest...read more

Tell us how to improve this page.

Calidad Infotech Sdet-I 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
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all
QA Engineer
16 salaries
unlock blur

₹2.3 L/yr - ₹7.5 L/yr

Quality Assurance Tester
4 salaries
unlock blur

₹5.7 L/yr - ₹9.7 L/yr

Software Development Engineer Test
4 salaries
unlock blur

₹5 L/yr - ₹6.7 L/yr

Sdet Automation Test Engineer
4 salaries
unlock blur

₹3.1 L/yr - ₹7 L/yr

Automation Test Engineer
3 salaries
unlock blur

₹3.5 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Calidad Infotech 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