What We Are Learn On This Post
Citius Tech Mumbai Interview Questions
Company Name: Citius Tech
Company Location: Mumbai, India
Updated on: 09.03.2020
- Difference between Test Plan and Test Strategy.
- Explain the Test management tool
- Challenges faced in testing.
- Explain agile methodology.
- How to batch execution is done.
- Explain Automation Framework used.
- Continuous Integration.
- Different types of testing experience.
- Explain database testing.
- SQL(group by) function
- Write random SQL queries.
- SQL(inner join)
- Explain map in java
- O/p for below program.
class a {int i; } class test { public static void main(String args[])
a A=new a(); System.out.println(A.i); } - O/p for below program.
class A{ void msg(){System.out.println(“”Hello””);} }
class B{ void msg(){System.out.println(“”Welcome””);} }
class C extends A,B
Public Static void main(String args[]){ C obj=new C();
obj.msg();//Now which msg() method would be invoked?
} } - O/p for below program
class Animal{ Animal(){System.out.println(“”animal is created””);}
} class Dog extends Animal{ Dog(){ System.out.println(“”dog is created””); } }
class TestSuper4{
public static void main(String args[]){
Dog d=new Dog();
}
} - Automate the page and using PageObject”
CitiusTech Selenium Interview Questions
- About the framework.
- Webdriver
- How can we change the language before initializing the webdriver?
- Try and catch
File f = new file(path not available); Try { } Catch ( Exception e) { F } Catch ( file not found) { E } Finally { File found }
What is the Output :
- Implicit wait and explicit wait
- Method Overriding.
- Sum of the array.
CitiusTech Interview Questions
- What is the difference between Grid and Webdriver API?
- How would you save a cookie value in Webdriver?
- How would you locate a button which is present on UI with only Span class? It doesn’t have an Id, class, or anything.
- Write code for the explicit wait.
- How will you invoke the Firefox browser?
- What will be the logic behind fetching data from the data provider and inserting it into UI?
- How will you specify a data provider under Test annotation?
- Write a program for the reverse string.
- How does method overriding differs from abstraction and inheritance?
- Can we override the main method? Explain the reason.
- Explain OOPS concepts?
- Why do we go for POM? What does it refer to?
- What is the difference between String and String Buffer?
- What is the difference between String Buffer and String Builder?
- What is mutable and immutable?
- How will you configure Ant, Jenkins?
- Why do we go for Apache API? The basic purpose behind it.
- Scriptwriting for a login page that is being used at your organization.
- Why do we use generics for getting a list of multiple elements?
- In what way method overriding in polymorphism and inheritance differ from each other?
- What is the flow of fetching data from excel using Apache POI?
- Why do we provide ‘\\’ in java while fetching a path of excel?
- What are the types of exception which will appear finding elements?
- What is an object array and why do we use it for data-provider.
- What is the syntax of defining a data-provider class under @Test?
- Difference between method overriding and overloading.
- What is Static and Dynamic Polymorphism?
- What is Static and Nonstatic in Java?
- Explain OOPS concepts.
CitiusTech Software Testing Interview Questions
- Difference between the webdriver listener and TestNG lister?
- The return type of data provider?
- How we can clear the cookie in selenium?
- How we will check the cookies in selenium?
- There is 5 input box in a page and first, I have to select 3rd input box write some data into it and
return back to 2 input box. how u will do it. - Difference between Hash map, Hash Table and ArrayList?
- How to run the test cases through command prompt.
- There are one string that say Attribute, so write a code to find the repeated word in that string and it should work for case insensitive(work for lower case and upper case)
- Difference between Selenium RC and webdriver?
Leave a Reply