Posts

Showing posts from October, 2022

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. Explain your framework in detail? What is the difference between POM and page factory? https://www.guru99.com/page-object-model-pom-page-factory-in-selenium-ultimate-g

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

Java MCQ Output based Questions - Constructor

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 Constructor in Java class First { public First() { System.out.println("a"); } } class Second extends First { public Second() { System.out.println("b"); } } class Third extends Second { public Third() { System.out.println("c"); } } public class MainClass { public static void main(String[] args) { Third c = new Third(); } } Output -  a b c Explanation -  While creating a new object of ‘Third’ type, before calling the default constructor of Third class, the default constructor of super class is called i.e, Second class and then again before the default constructor of super class, def