Posts

Showing posts from December, 2022

Software Automation Tester Interview Questions for 4 years of Experience

Image
Tech Mahindra: 1.Get input from users and check the given string is palindrome or not? 2.Write code for POST method using Rest assured 2. ITC InfoTech: 1. Output for given program: public class A{ public void methodA(){ System.out.println("Inside Class A"); } }   public class B extends A{ public void methodA(){ System.out.println("Inside Class B"); } }   public class MyClass { public static void main(String args[]) { A obj = new B(); obj.methodA(); } } 2. Find the 4 th smallest number in given array below             int arr[] = {7,9,6,5,3,1,2};   3 .Launch google.co.in and Store all components name as key and their href link as a value in Map.              Condition:only broken links should be stored in the map instead of all links   4.Ways to press Enter Hint:”name\n”  && keys.Enter  && robot.keypress(VK_ENTER) ...