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

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 Calidad Infotech?
Ask anonymously on communities.

Interview questions from similar companies

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 -----/
  • Ans. 

    Check if two binary trees are mirrors by comparing their structure and node values recursively.

    • Two trees are mirrors if their root nodes are equal.

    • The left subtree of one tree must be a mirror of the right subtree of the other tree.

    • Recursively check the left and right subtrees for both trees.

    • Example: Tree A (1, 2, 3) and Tree B (1, 3, 2) are mirrors.

  • Answered by AI
  • Q4. Write a method to print the boundaries of a binary tree -----/
  • Ans. 

    This method prints the boundary nodes of a binary tree in a specific order.

    • 1. Start from the root node and print it.

    • 2. Print the left boundary (excluding leaf nodes).

    • 3. Print all leaf nodes from left to right.

    • 4. Print the right boundary (excluding leaf nodes) in reverse order.

    • Example: For a tree with root 1, left child 2, right child 3, the output would be: 1, 2, 4, 5, 3.

  • Answered by AI
  • Q5. Fill an array with the next greater elements (using stack) -----/
  • Ans. 

    Use a stack to find the next greater element for each item in an array efficiently.

    • Initialize an empty stack and an output array of the same size as the input.

    • Iterate through the array from right to left.

    • For each element, pop elements from the stack until you find a greater element or the stack is empty.

    • If the stack is not empty, the top element is the next greater element; otherwise, it's -1.

    • Push the current element o...

  • Answered by AI
  • 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

Sdet-I Interview Questions Asked at Other Companies

asked in Amazon
Q1. Given a binary tree, count the number of occurrences where there ... read more
asked in Amazon
Q2. Given an array and a number, check whether there are any 3 elemen ... read more
asked in Amazon
Q3. What factors would you consider from both a developer's and user' ... read more
asked in Amazon
Q4. Given a singly linked list, write a recursive method to reverse e ... read more
Q5. Write a Java program to add the digits of a given number.

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...................................

Interview Questionnaire 

1 Question

  • Q1. Where did you work on the specific skill required for the job?
  • Ans. 

    I honed my analytical skills through various projects in my previous roles, focusing on data interpretation and stakeholder communication.

    • Worked on a project analyzing customer feedback data to improve product features, resulting in a 20% increase in user satisfaction.

    • Collaborated with cross-functional teams to gather requirements for a new software tool, ensuring alignment with business objectives.

    • Utilized SQL and Exc...

  • Answered by AI

Intern Interview Questions & Answers

Cognizant user image vagmi gupta

posted on 13 Jul 2022

I appeared for an interview before Jul 2021.

Round 1 - Technical 

(2 Questions)

  • Q1. About your project and s1kills
  • Q2. Interview went well .

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare atleast one language or technology

Data Analyst Interview Questions & Answers

Amazon user image himanshu kohli

posted on 31 May 2021

I applied via Walk-in and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Introducing your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

I applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of
Are these interview questions helpful?

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Q2. What do you expect from Amazon?
  • Ans. 

    I expect Amazon to foster innovation, provide growth opportunities, and maintain a customer-centric culture.

    • Opportunities for professional development, such as training programs and mentorship.

    • A collaborative work environment that encourages teamwork and idea sharing.

    • Access to cutting-edge technology and resources to drive innovation.

    • A strong focus on customer satisfaction, ensuring that every decision prioritizes the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Q2. Be yourself

I applied via Recruitment Consulltant and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. *Introduce yourself *Purpose of working in the Company *Educational Background *Family Background *Goals and Ambition
  • Ans. 

    Experienced professional with a strong educational background and clear career ambitions, eager to contribute to the company's success.

    • I have over 5 years of experience in project management, leading teams to successfully deliver complex projects on time.

    • I hold a Master's degree in Business Administration from XYZ University, where I specialized in strategic management.

    • My family has always emphasized the importance of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident about what you speak.

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.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
View all
QA Engineer
16 salaries
unlock blur

₹2.3 L/yr - ₹7.5 L/yr

Sdet Automation Test Engineer
5 salaries
unlock blur

₹3.1 L/yr - ₹10.6 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
4 salaries
unlock blur

₹5 L/yr - ₹24 L/yr

Explore more salaries
Compare Calidad Infotech with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview