What We Are Learn On This Post
GlobalLogic 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 GlobalLogic interview questions and answers.
Post On: | GlobalLogic 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 GlobalLogic 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.
GlobalLogic Interview Questions
- String s = “ABC “, Output should be -ABC ACB BAC BCA CBA CAB
- String S = “my name is Ramesh”, I should get 2 output
1 Ramesh
2 Is should be constant and other words should change
Example my name is Naveen. - String s = “123” & Int I = 123, How do you compare the value ?
Ans: Thanks Kopal For the solutionpublic class ConvertInttoSting { public static void main(String[] args) { String str = "123"; int i = 1273; if (i == (Integer.valueOf(str))) { System.out.println("Both values are same"); } else System.out.println("Both values are not same"); } }
- String s= “selenium” & String s = new string (selenium) How to compare the values. ?
- If there is drop-down of the month, we should print 2nd, 4rth, 6th, 8th ??
- What is the use of before suite, before class, before method, where you have used in your project?
- In which annotations we call the initialisation.. if we call from beforemethod, each and every time, browser Wil is launched and it enters the username and password…if we have 100 test cases in that file, the execution time will be more.. how to solve this issue.
- If your HTML dom is changing dynamically. How will you run your test cases and how to solve this issue? If anyone is aware of the answer please provide?
- I am not posting these questions for “getting likes there are many people trying for a job”. This kind of questions will be useful for that people..so please don’t like this. if you know the answer, then mention in the comments or else please ignore.
GlobalLogic F2F Interview Questions
- What are the differences between abstract class and interface in java?
- When do we use an interface either than an abstract class?
//Program to compare String and int
public class ConvertInttoSting {
public static void main(String[] args) {
String str = “123”;
int i = 1273;
if (i == (Integer.valueOf(str))) {
System.out.println(“Both values are same”);
} else
System.out.println(“Both values are not same”);
}
}
If the DOM is changing Dynamically you can use Explicit wait and Expected Conditions also still you are having issues you can go with Fluent Wait also for element capture do use xpath functions like contains, starts-with or cssSelector with id or some relevant which will help you capture the element properly.
In which annotations we call the initialization: – for this we can use BeforClass for initialization