What We Are Learn On This Post
Xceedance interview Questions: The most important part of preparing for an interview is practice. Knowing what job interview questions you might be asked is essential – that way, you can craft your answers well in advance, and feel confident in your responses when the pressure is on.
Wouldn’t it be great if you knew exactly what interview questions are asked for the Test Engineer, QA for Manual & Automation Positions, We can’t read minds, unfortunately, but we’ll give you the next best thing: a list of previously asked Xceedance interview questions and answers.
Post On: | Xceedance Interview Questions |
Post Type: | Interview Questions |
Published On: | www.softwaretestingo.com |
Applicable For: | Freshers & Experience |
Get Updates: | Software Testingo Telegram Group |
We have tried to share some of the manual testing interview questions, selenium interview questions & testing interview questions also, but we are recommending spending some quality time to get comfortable with what might be asked when you go for the Xceedance interview.
Still, we need you are love and support to make this platform more helpful to our fellow testers. So it would be great if you will share your recent interview questions and experience with us. You Can share those details by connecting us at softwaretestingo.com@gmail.com.
More Interview Questions
Xceedance Interview Questions
Company Name: Xceedance
Company Location: Gurgaon, India
Interview Dated: May 18, 2021
Updated on: 19.06.2021
1st round (May 18, 2021) – Toshit Patel Interview – Technical round 1
Xceedance – 1st Technical Round: May 18, 2021
- Introduce yourself.
- Ever write data in the xlsx file programmatically?
- What is parametrization? How can we achieve it using TestNG?
- Why the main method is required to start the execution?
- What is Static and Dynamic binding?
- Usage of super and this keyword?
- What is method overloading and overriding?
- What are Collections in Java?
- Ever used Hashmap?
- ArrayList vs LinkedList?
- What is Object in Java?
- What is Throwable? Exception hierarchy.
- What are Checked and Unchecked Exceptions? Examples
- Try catch block. How many catch blocks with try?
- What is the scope of default, protected? Is default a keyword?
- Difference between == and equals()
- What is the interface? Can we have a method body inside it?
- What are implements?
- Difference between quit() and close()?
- Different ways to click?
- Selenium exceptions?
- What is StaleElementReferenceException? How can you handle it?
- How can you print all the values present inside dropdown -> countries (India, US)?
PROGRAMS
- What is the output of the program?
class Adder { static int add(int a,int b){ return a+b; } static double add(int a,int b){ return a+b; } } class TestOverloading3 { public static void main(String[] args) { System.out.println(Adder.add(11,11)); } }
- Find out the middle character?
String str=”Hellojava”;
“str.length() – > 9
9/2 -> 4 (charAt(4));String str=””Hellojava””;int string_length=str.length();
int centre=string_length/2;
System.out.println(str.charAt(centre));What if lenght is 8?
Hello Jav
8%2==0
8/2=4 -> 4-1 = 3
System.out.println(str.charAt());
if-else”
2nd round (May 19, 2021) – Akhilesh Kumar, Swagat Gouda
Interview – Technical round 2
Xceedance – 2nd Technical Round: May 19, 2021
- Introduce yourself
- How do you read data from an excel sheet?
- What is Apache POI?
- What are the tags in the testng.xml file?
- What is Polymorphism?
- Final vs Finally vs Finalize
- What if Exception comes in finally block?
- How do you find the Broken links on a web page?
- What is By?
- Syntax for getting all the links present on web page?
- links = driver.findElements(By.tagName(“a”));
- Static wait vs Implicit Wait
- Thread.sleep -> Is it given by Java or Selenium?
- Can we override the static method? Yes/No – Explain.
- Can we override the private method?
- What is inheritance? Can you define Hierarchical?
- Java Exceptions – Checked and Unchecked?
- When does IOException occur?
- Why use TestNG over JUnit? What are the advantages?
- How do you prioritize -> Can I give the value as -2?
- Priority (-2, 2, 0) -> Which method will execute first?
- How can you get all the values from the dropdown (Dropdown does not have any select tag)
- How do find the height and width of the image?
- XPath vs CSS Selector? Which is better and Why?
- Go to MakeMyTrip website-> Depaturedate ->
- Inputs taking from ExcelSheets -> 19-05-2021 -> 19-05-2021 -> 19th May 2021 (application supports)
- How will you create the XPath for the same to select the date for DepartureDate?”
Programs:
What will be the output for this :
public static void main(String[] args) { String s1 = new String(""automation""); String s2 = new String(""AUTOMATION""); System.out.println(s1 = s2); }
3rd round (May 20, 2021) – Gaurav Gupta Interview – Round 3
Xceedance Round 3: May 20, 2021
- BDD vs TDD?
- Suggest to your client which one is best and Why?
- Keyword vs Data-driven frameworks?
- How many frameworks are there which can be used for Automation?
- Why are you looking for a change?
- Why do you want to join us?
Leave a Reply