SDET Interviews

SDET Java Interview pattern and collection of questions covering SDET coding challenges, automation testing concepts, functional, api, integration, performance and security testing, junit5, testng, jmeter, selenium and rest assured

Essential Java Skills for SDET Automation Engineer

Upasana | November 20, 2022 | 1 min read | 507 views

Essential skills for Java SDET role.

Read Article

Java Coding Problems for SDET Automation Engineer

Upasana | November 20, 2022 | 1 min read | 662 views

collection of top 15 java coding problems that are relevant for SDET interviews - fibonacci series, anagrams, pangram, factorial, prime number, reverse a number

Read Article

Junit interview questions for SDET automation engineer

Upasana | November 20, 2022 | 2 min read | 818 views

In this article we will cover important interview questions around Junit 4 and Junit 5 for every automation SDET engineer.

Read Article

50 Java Interview Questions for SDET Automation Engineer

Upasana | November 20, 2022 | 5 min read | 5,853 views

Java SDET programming questions and answers for qa and automation tester. Coding interview questions on Core Java, algorithms, data structures, selenium, api testing, performance testing, security testing

Read Article

Prime number checker in Java

Upasana | November 20, 2022 | 3 min read | 629 views | Java Coding Challenges

In this article we will learn if a given number is prime or not. The solution presented here may not be best optimized, but it should be sufficient from interview point of view.

Read Article

Java program for Fibonacci Series

Upasana | August 23, 2022 | 1 min read | 1,015 views

Fibonacci series is series of natural number where next number is equivalent to the sum of previous two number. We will write a Java implementation for Fibonacci Series in his article.

Read Article

Reverse a string using recursion in Java

Upasana | November 21, 2020 | 1 min read | 105 views | Java Coding Challenges

In this article, we will write a program to reverse character positions in a given string using recursive approach.

Read Article

Reverse order of words inside string in Java

Upasana | November 21, 2020 | 1 min read | 225 views

In this article we will discuss various approaches (using StringBuilder, using collections framework) to reverse the order of words in a given String using Java.

Read Article

Comparable & Comparator in Java

Upasana | November 21, 2020 | 3 min read | 1,469 views

Java provides two mechanisms to compare objects - Using Comparable interface and Comparator interface

Read Article

Reverse position of words in a string using recursion

Upasana | November 20, 2020 | | 83 views | Java Coding Challenges

In this article, we will write a program to reverse position of words in a given string using recursive approach.

Read Article