Posts

Planful Automation Testing | SDET | Interview Experience 2024 | Pune

In this article we will cover Planful Automation Testing Interview Questions from 2024 which could help you prepare in advance. Planful Automation Testing | SDET | Interview Experience 2024 Company - Planful Job role - Automation Engineer | SDET Job location- Hyderabad Date - May 20 2024 First round - Written test Write a program to print below - I/p - "436" "238" O/p - "674" Write a program to print below I/P - "ProgRamMinG" O/P - r - 2, g - 2, m - 2

TCS Automation Testing | SDET | Interview Experience 2024 | Pune

In this article we will cover TCS Automation Testing Interview Questions from 2024 which could help you prepare in advance. TCS Automation Testing | SDET | Interview Experience 2024 Company - TCS Job role - Automation Engineer | SDET Job location- Pune(Virtual) Interviewer - Bharath Balaji Date - May 17 2024 Tell me about yourself? Share your screen and write a program for swapping 2 numbers without using 3rd variable. Explain Software Testing Life Cycle(STLC)? Difference between Priority and Severity? Interviewer was least interested and stopped after 3 questions, he was not even responsive.

Accenture Automation Testing | SDET | Interview Experience 2024 | Pune

In this article we will cover Accenture Automation Testing Interview Questions from 2024 which could help you prepare in advance. Accenture Automation Testing | SDET | Interview Experience 2024 Company - Accenture Job role - Automation Engineer | SDET Job location- Pune(Virtual) Interviewer - Gourav Jain Date - May 09 2024 Tell me about yourself? Write syntax of Explicit Wait? WebDriver wait = new WebDriverWait(Driver); wait.until(ExpectedCondition.visibilityOfElementLocated(driver.findElement(By.xpath("")))); Write syntax of an API get method and verify 200? given().header("authorization", "Bearer token "). when().get("http://api.com/user).then().assertThat().StatusCode(HttpStatus.SC_OK); What is the difference between OAuth 1.0 and OAuth 2.0? OAuth stands for Open Authorization Both OAuth 1.0 and OAuth 2.0 are authorization protocols. In terms of security, OAuth 1.0 uses SSL/TLS for secure communication which can be bit more expensive. On other side

Understanding SQL

SQL is widely used across IT industry and is most common technology. We will be covering SQL topics in this article. What is SQL? SQL is structured query language which is a computer language for storing, manipulating and retrieving data stored in a relational database. The standard SQL commands to interact with relational databases are CREATE, INSERT, SELECT, UPDATE, DELETE and DROP. These commands are classified into following groups based on their nature DDL(Data Definition Language) CREATE - Creates a new table or view of a table or other objects in databases. ALTER - Modifies an database existing object or table. DROP - Deletes an entire table, a view of a table. Truncate - Delete the value stored in the table. DML(Data Manipulation Language)

Coforge Automation Testing | SDET | Interview Experience 2022 | Noida

In this article we will cover Coforge Automation Testing Interview Questions from 2022 which could help you prepare in advance. Coforge Automation Testing | SDET | Interview Experience 2022 Company - Coforge Job role - Automation Engineer | SDET Job location- Noida Interviewer - Sumit Aggarwal Date - October 29 2022   What are your day to day work? Write a program to print prime numbers until 100? Write a program for factorial? Write a program for below pattern? * * * * * * * * * * * * * * * He gave me 1 SQL query and asked me the output of it? He gave me 1 table and asked me to write a query - To print total number of streams by date where streams > 740; The interviewer asked random questions and I din't expect these questions for the role of Automation tester. He didn't ask any questions about Selenium, API or Manual testing. -  // Java program to display Prime numbers till N class GFG { //function to check if a given number is prime static boolean isPrime(int n){

Incedo Automation Testing | SDET | Interview Experience | Gurgaon

In this article we will cover Incedo Automation Testing Interview Questions from 2022 which could help you prepare in advance. Incedo Automation Testing | SDET | Interview Experience  Company - Incedo Pvt Ltd Job role - Automation Engineer | SDET Job location- Gurgaon Interviewer - Vipin Grover Date - October 27 2022   Tell me about yourself? What testing frameworks have you used in your recent projects? Open Makemytrip and click on search - find xpath of Vistara. Write a program to find out missing number. For example 1,2,3,4,6. Your program should print 5, do not use any loops. Write a program to print below output. Input - My name is abhishek Output - My eman is kehsihba Interviewer needed dynamic approach for above program. What is the difference between findElementBy and findElementsBy? Tell atleast 3-4 differences. This method is used to return a single webelement in a webpage that matches the specified criteria. It returns the very first element which it finds in a webpage If no

Java MCQ Output based Questions - Arrays

In this article, we will cover some Java MCQ output based questions which will help extend your Java knowledge. Usually In Interviews nowadays, interviewer are more focused on negative questions rather than conceptual questions, and If you go through below questions, It will surely give you an add on and add value to your experience. Java MCQ Output based Questions Arrays in Java import java.util.*; public class Test { public static void main(String[] args) { int[] x = new int[3]; System.out.println("x[0] is " + x[0]); } } A. The program has a compile error because the size of the array wasn’t specified when declaring the array. B. The program has a runtime error because the array elements are not initialized. C. The program runs fine and displays x[0] is 0. D. The program has a runtime error because the array element x[0] is not defined. Explanation - Program is syntactically correct, so no error. In java, if the array is not initialized at the time of declaration