Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by GlobalLogic Team. If you also belong to the team, you can get access from here

GlobalLogic Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

GlobalLogic Qa Automation Testing Engineer Interview Questions, Process, and Tips for Experienced

Updated 6 Feb 2024

Top GlobalLogic Qa Automation Testing Engineer Interview Questions and Answers for Experienced

  • Q1. selenium: what are selenium components, what are the different locators in selenium, what is selenium web driver, write a xpath for a given element on a web page
  • Q2. How do you convert json object to string and vice versa?
  • Q3. Robot Framework : what are standard libraries in Robot Framework? Explain robot framework architechture, what is setup and teardown, write a sample login script using rob ...read more
View all 11 questions

GlobalLogic Qa Automation Testing Engineer Interview Experiences for Experienced

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is cypress ,difference between cypress and selenium
  • Ans. 

    Cypress is a JavaScript-based end-to-end testing framework. It differs from Selenium in terms of architecture, ease of use, and speed.

    • Cypress is a JavaScript-based testing framework for web applications.

    • It provides a simple and intuitive API for writing tests.

    • Cypress runs directly in the browser and can access everything on the page.

    • Unlike Selenium, Cypress does not use WebDriver and has a different architecture.

    • Cypres...

  • Answered by AI
  • Q2. Cypress folder structure and and its assertions
  • Ans. 

    Cypress folder structure and its assertions

    • Cypress follows a specific folder structure for organizing test files

    • The 'fixtures' folder contains static data used in tests

    • The 'integration' folder contains the actual test files

    • The 'plugins' folder contains custom plugins and tasks

    • The 'support' folder contains reusable functions and commands

    • Cypress provides various assertions for validating test results

    • Common assertions inc...

  • Answered by AI
  • Q3. What is assertions
  • Ans. 

    Assertions are statements that verify the expected behavior of a software application during testing.

    • Assertions are used to validate whether a certain condition is true or false.

    • They help in identifying bugs and ensuring the correctness of the software.

    • Assertions can be used to check the values of variables, compare expected and actual results, or verify the presence of certain elements.

    • Examples of assertions include a...

  • Answered by AI
  • Q4. Api testing using cypress
  • Ans. 

    Cypress is a powerful tool for API testing, allowing for easy automation and assertion of API endpoints.

    • Cypress provides a simple and intuitive syntax for writing API tests

    • It supports making HTTP requests and asserting responses

    • Cypress allows for easy mocking and stubbing of API calls

    • It provides detailed logs and error messages for debugging

    • Cypress integrates well with other testing frameworks and tools

  • Answered by AI
  • Q5. Architecture about cypress
  • Ans. 

    Cypress is a JavaScript-based end-to-end testing framework that runs directly in the browser.

    • Cypress allows for easy and fast testing of web applications.

    • It provides a rich set of APIs for interacting with elements and making assertions.

    • Cypress runs directly in the browser, eliminating the need for Selenium or other external drivers.

    • It supports modern JavaScript frameworks like React, Angular, and Vue.

    • Cypress provides ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(7 Questions)

  • Q1. Intro : tell me about yourself, roles and responsibilities, why do you want to join global logic ?
  • Ans. 

    I am a QA Automation Testing Engineer with experience in various roles and responsibilities. I am interested in joining Global Logic for its global presence and reputation in the industry.

    • I have worked as a QA Automation Testing Engineer for the past 5 years.

    • My roles and responsibilities include designing and implementing automated test scripts, executing test cases, and reporting defects.

    • I have experience in using too...

  • Answered by AI
  • Q2. Python : diff between list and tuple, decorators and fixtures, fibonacci program, print a multiplication table, for a given input print the value from a given dictionary
  • Q3. Selenium: what are selenium components, what are the different locators in selenium, what is selenium web driver, write a xpath for a given element on a web page
  • Ans. 

    Selenium components include Selenium IDE, Selenium RC, Selenium WebDriver. Different locators are ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector and XPath. Selenium WebDriver is a tool used to automate web application testing. XPath is a language used to navigate through XML documents and web pages.

    • Selenium components: Selenium IDE, Selenium RC, Selenium WebDriver

    • Different locators: ID, Name...

  • Answered by AI
  • Q4. Robot Framework : what are standard libraries in Robot Framework? Explain robot framework architechture, what is setup and teardown, write a sample login script using robot framework?
  • Ans. 

    Answering questions related to Robot Framework and its standard libraries, architecture, setup and teardown, and a sample login script.

    • Standard libraries in Robot Framework include BuiltIn, Collections, DateTime, Dialogs, OperatingSystem, Process, Screenshot, String, Telnet, and XML.

    • Robot Framework architecture consists of test cases, test suites, and keywords.

    • Setup and teardown are pre and post conditions for test cas...

  • Answered by AI
  • Q5. Do we have any specific tool for Robot Framework? If yes explain why we have to use it? Learn about built in actions in robot framework and keywords
  • Q6. String programs, basic programs in python and some assertion questions in selenium
  • Q7. What are the locators in selenium? what is the difference between driver.quit and drive.close? What is implicit wait and explicit wait ?
  • Ans. 

    Answers to common Selenium interview questions.

    • Locators in Selenium are used to identify web elements on a web page. Examples include ID, class name, name, tag name, link text, and partial link text.

    • driver.quit() closes the entire browser window and ends the WebDriver session, while driver.close() only closes the current window or tab.

    • Implicit wait is a global wait that applies to all web elements and waits for a speci...

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. How do you convert json object to string and vice versa?
  • Ans. 

    To convert JSON object to string, use JSON.stringify(). To convert string to JSON object, use JSON.parse().

    • JSON.stringify() method converts a JavaScript object or value to a JSON string.

    • JSON.parse() method parses a JSON string and returns a JavaScript object.

    • Example: var obj = {name: 'John', age: 30}; var jsonString = JSON.stringify(obj); var jsonObj = JSON.parse(jsonString);

    • Make sure the JSON string is valid, else it

  • Answered by AI
  • Q2. What are lists and its functions?
  • Ans. 

    Lists are a collection of ordered and changeable elements. They have various functions to manipulate the data.

    • Lists are created using square brackets []

    • They can contain any data type such as strings, integers, or even other lists

    • Functions include append(), insert(), remove(), pop(), sort(), and reverse()

    • Example: my_list = ['apple', 'banana', 'cherry']

    • Example: my_list.append('orange') adds 'orange' to the end of the lis

  • Answered by AI
  • Q3. Write a program to find the elements of a list that have least difference in python? input = [3,9,50,15,99,7,98,65] output = [98,99]
  • Ans. 

    Program to find elements of a list with least difference in Python

    • Sort the list

    • Find the minimum difference between adjacent elements

    • Return the elements with minimum difference

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GlobalLogic Qa Automation Testing Engineer interview:
  • Python
  • Selenium
  • Robot Framework
  • Coding
Interview preparation tips for other job seekers - I was told that I was shortlisted in the first round of the interview and will have to give client interview. They gave a call back after 20 days after completion of the first round and scheduled the client interview. HR bargained a lot on the package and then I told to drop off the profile as I'm not happy with their offer.

Skills evaluated in this interview

Qa Automation Testing Engineer Interview Questions Asked at Other Companies for Experienced

asked in GlobalLogic
Q1. selenium: what are selenium components, what are the different lo ... read more
asked in GlobalLogic
Q2. How do you convert json object to string and vice versa?
asked in GlobalLogic
Q3. Robot Framework : what are standard libraries in Robot Framework? ... read more
asked in GlobalLogic
Q4. Write a program to find the elements of a list that have least di ... read more
asked in GlobalLogic
Q5. what are the locators in selenium? what is the difference between ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. AOM, FSO , DOM,OR ADODB
  • Q2. Vb script functions actions
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a QA Automation Testing Engineer with 5 years of experience in creating and executing test cases for software applications.

    • Experienced in creating automated test scripts using tools like Selenium and Appium

    • Proficient in writing test cases, executing test plans, and reporting bugs

    • Skilled in analyzing test results and providing recommendations for improvements

    • Strong knowledge of Agile methodologies and continuous in

  • Answered by AI
  • Q2. Program to count the occurrence of vowels
  • Ans. 

    Program to count the occurrence of vowels in an array of strings

    • Iterate through each string in the array

    • For each string, iterate through each character and check if it is a vowel (a, e, i, o, u)

    • Increment a counter for each vowel found in the string

    • Repeat for all strings in the array and return the total count of vowels

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - No communication regarding feedback after the interview
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can access public and protected members of the base class

    • Example: Class Car can inherit from class Vehicle to reuse com

  • Answered by AI
  • Q2. What is oops concepts
  • Ans. 

    Object-oriented programming concepts that focus on data abstraction, encapsulation, inheritance, and polymorphism.

    • Abstraction: Hiding the complex implementation details and showing only the necessary features to the outside world.

    • Encapsulation: Binding data and methods that operate on the data into a single unit.

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What is your name
  • Ans. 

    My name is John Smith.

    • Full name is John Smith

    • Common name in English-speaking countries

    • No middle name or initial

  • Answered by AI
  • Q2. Where from you belong

I applied via Naukri.com and was interviewed in Jun 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Cobol, DB2 main practical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I attended the interview with 1 year experience. Question was answerable and basic preparation and understanding of job description is much enough. Some realistic questions also be asked. Once we have strong preparation and good learning in our subject, we can get it. Sometimes people may take long time to call the selected candidates.. sometimes very late to inform the selection also.

I applied via Company Website and was interviewed before Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of SQL and java

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basics of SQL and java

I appeared for an interview in Oct 2016.

Interview Questionnaire 

14 Questions

  • Q1. Tell me something about yourself.
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Completed internships in software development

    • Familiar with programming languages like Java, Python, and C++

  • Answered by AI
  • Q2. Walk me over your strengths and weaknesses.
  • Ans. 

    My strengths include problem-solving skills and attention to detail. My weaknesses include public speaking and time management.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Weaknesses: public speaking

    • Weaknesses: time management

  • Answered by AI
  • Q3. Why are you opting for CGI (a consultancy firm)? Why the sudden shift of interest?
  • Ans. 

    I am opting for CGI because of their reputation for providing challenging projects and opportunities for growth.

    • CGI is known for offering challenging projects that will help me enhance my skills and knowledge.

    • I am interested in working with a diverse range of clients and industries, which CGI can provide.

    • CGI's emphasis on professional development and training programs align with my career goals.

    • I believe CGI's collabor...

  • Answered by AI
  • Q4. Tell me about the internships that you have done.
  • Ans. 

    I have completed internships at two different software companies, where I gained hands-on experience in software development and learned about different programming languages and technologies.

    • Internship at Company A involved working on a web application using Java and Spring framework

    • Internship at Company B focused on mobile app development using React Native and Firebase

    • Both internships provided me with valuable exper...

  • Answered by AI
  • Q5. A response to a real life business problematic situation- you are a fresher and in the first day of your job: you face huge ruckus and burden over close deadline, unfinished project work, unsatisfactory cl...
  • Q6. How do you handle stress?
  • Ans. 

    I handle stress by practicing mindfulness, taking breaks, and seeking support from colleagues.

    • Practicing mindfulness through meditation and deep breathing exercises

    • Taking short breaks to clear my mind and recharge

    • Seeking support from colleagues or mentors to discuss challenges and brainstorm solutions

  • Answered by AI
  • Q7. Why should I hire you instead of all the others?
  • Ans. 

    I have a strong technical background, excellent problem-solving skills, and a passion for software development.

    • I have a Bachelor's degree in Computer Science with a focus on software engineering.

    • I have completed multiple internships where I gained hands-on experience in developing software applications.

    • I have a proven track record of successfully completing projects on time and exceeding expectations.

  • Answered by AI
  • Q8. Are you up for relocating for the interest of the company?
  • Ans. 

    Yes, I am open to relocating for the interest of the company.

    • I am willing to relocate for career growth opportunities

    • I understand the importance of being flexible for the company's needs

    • I have relocated for previous job opportunities and have adapted well to new environments

  • Answered by AI
  • Q9. Any questions you got to ask me.
  • Q10. Tell something about yourself.
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Completed internships in software development

    • Proficient in programming languages like Java, Python, and C++

  • Answered by AI
  • Q11. Why CGI?
  • Ans. 

    CGI is a leading global IT and business consulting services firm.

    • CGI has a strong reputation in the industry for delivering high-quality software solutions.

    • CGI offers a wide range of opportunities for career growth and development.

    • CGI has a diverse and inclusive work culture that fosters collaboration and innovation.

    • CGI has a global presence, providing exposure to international projects and clients.

    • CGI values employee ...

  • Answered by AI
  • Q12. What do you know about the company?
  • Ans. 

    The company is a leading software development firm specializing in creating innovative solutions for various industries.

    • Specializes in creating innovative software solutions

    • Works with clients from various industries

    • Known for high-quality and reliable products

    • Has a strong team of software engineers and developers

  • Answered by AI
  • Q13. What is your motivation?
  • Ans. 

    My motivation stems from my passion for problem-solving and creating innovative solutions.

    • Passion for problem-solving drives me to constantly seek new challenges

    • Desire to create innovative solutions that improve efficiency and user experience

    • Inspiration from successful projects and positive feedback from users

  • Answered by AI
  • Q14. Where do you see yourself in five years time?
  • Ans. 

    In five years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Continuing to enhance my technical skills through ongoing learning and certifications

    • Taking on more leadership responsibilities within the team

    • Contributing to the development of cutting-edge software solutions

    • Mentoring junior team members to help them grow in their careers

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The first round was an online test conducted by hirepro.in. The round was 2 hours and went pretty swift aside from some really 'make or break' questions. As a mechanical Engineer and having next to little proficiency in programming, I was not astounded to find myself biting nails and clicking Flukes while glancing at the ever-incomprehensible coding questions. With each question, it seemed like I was brandishing the bat in the air for all kinds of balls, whether bouncer or Yorker, just for the only reason "I can't make a single thing out of these questions, let alone answer". The verbal and quantitative part was friendlier on me. I was able to answer almost 90% in those two sections. The questions framed were basic and doable with a month

I appeared for an interview in Oct 2016.

Interview Questionnaire 

14 Questions

  • Q1. Tell me something about yourself.
  • Ans. 

    I am a software engineer with experience in Java and Python.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on projects involving web development and data analysis.

    • I am passionate about learning new technologies and solving complex problems.

    • I am a team player and enjoy collaborating with others to achieve common goals.

  • Answered by AI
  • Q2. Walk me over your strengths and weaknesses.
  • Ans. 

    My strengths include problem-solving, adaptability, and teamwork. My weaknesses include public speaking and time management.

    • Strengths: problem-solving, adaptability, teamwork

    • Examples: I have experience in solving complex coding problems, I am able to adapt to new technologies quickly, I work well in a team environment

    • Weaknesses: public speaking, time management

    • Examples: I struggle with presenting in front of large grou...

  • Answered by AI
  • Q3. Why are you opting for CGI (a consultancy firm)? Why the sudden shift of interest?
  • Ans. 

    I am opting for CGI because of their reputation in the industry and the opportunities they offer for growth and learning.

    • CGI has a strong reputation in the industry for providing quality services to clients

    • CGI offers a wide range of opportunities for growth and learning, including training programs and mentorship

    • I am excited about the chance to work with a diverse group of professionals and learn from their experiences

    • ...

  • Answered by AI
  • Q4. Tell me about the internships that you have done.
  • Ans. 

    I have completed internships at two different software companies.

    • Internship at Company A involved developing a web application using Java and Spring framework.

    • Internship at Company B focused on mobile app development using React Native.

    • Both internships provided hands-on experience with software development lifecycle and teamwork.

  • Answered by AI
  • Q5. A response to a real life business problematic situation- you are a fresher and in the first day of your job: you face huge ruckus and burden over close deadline, unfinished project work, unsatisfactory cl...
  • Q6. How do you handle stress?
  • Ans. 

    I handle stress by prioritizing tasks, taking breaks, and seeking support when needed.

    • I prioritize tasks and focus on the most important ones first

    • I take breaks to clear my mind and recharge

    • I seek support from colleagues or supervisors when necessary

    • I practice mindfulness and meditation to manage stress

    • I maintain a healthy work-life balance to prevent burnout

  • Answered by AI
  • Q7. Why should I hire you instead of all the others?
  • Ans. 

    I have a strong technical background, a passion for problem-solving, and a proven track record of delivering high-quality software solutions.

    • I have a Bachelor's degree in Computer Science and relevant internship experience.

    • I excel in programming languages such as Java, Python, and C++.

    • I have successfully completed projects that required complex problem-solving skills, such as developing a mobile application for a local

  • Answered by AI
  • Q8. Are you up for relocating for the interest of the company?
  • Ans. 

    Yes, I am open to relocating for the company if required.

    • I am willing to relocate for the right opportunity and growth.

    • I understand the importance of being flexible and adaptable in the tech industry.

    • I have relocated for previous job opportunities and have had positive experiences.

    • I am excited about the possibility of exploring new locations and cultures.

  • Answered by AI
  • Q9. Any questions you got to ask me.
  • Q10. Tell something about yourself.
  • Ans. 

    I am a dedicated and passionate software engineer with experience in developing web applications.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on projects using technologies such as Java, Python, and JavaScript.

    • I am skilled in front-end development using React and Angular.

    • I have experience working in Agile development environments.

    • I am a quick learner and enjoy working in a team environment.

  • Answered by AI
  • Q11. Why CGI?
  • Ans. 

    CGI is a leading global IT and business consulting services firm.

    • CGI has a strong reputation in the industry for delivering high-quality software solutions.

    • CGI offers a wide range of opportunities for career growth and development.

    • CGI has a global presence, allowing for exposure to diverse projects and clients.

    • CGI values innovation and encourages employees to think creatively.

    • CGI provides a supportive and collaborative

  • Answered by AI
  • Q12. What do you know about the company?
  • Ans. 

    The company is a leading software development firm specializing in creating innovative solutions for various industries.

    • The company was founded in 2005 and has since grown to become a key player in the software development industry.

    • They have a strong focus on creating cutting-edge solutions for clients in industries such as healthcare, finance, and retail.

    • The company values innovation, teamwork, and customer satisfacti...

  • Answered by AI
  • Q13. What is your motivation?
  • Ans. 

    My motivation is to constantly learn and improve my skills while contributing to the success of the team and the company.

    • I am driven by the desire to learn and grow professionally

    • I am motivated by the opportunity to work with a talented team and contribute to the success of the company

    • I am passionate about technology and enjoy solving complex problems

    • I am motivated by the satisfaction of seeing my work make a positive ...

  • Answered by AI
  • Q14. Where do you see yourself in five years time?
  • Ans. 

    In five years, I see myself as a senior software engineer, leading a team of developers to create innovative solutions.

    • Continuing to learn and grow my skills in software development

    • Taking on more responsibility and leadership roles

    • Contributing to the success of the company through my work

    • Mentoring and guiding junior developers

    • Staying up-to-date with the latest technologies and trends in the industry

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The first round was an online test conducted by hirepro.in. The round was 2 hours and went pretty swift aside from some really 'make or break' questions. As a mechanical Engineer and having next to little proficiency in programming, I was not astounded to find myself biting nails and clicking Flukes while glancing at the ever-incomprehensible coding questions. With each question, it seemed like I was brandishing the bat in the air for all kinds of balls, whether bouncer or Yorker, just for the only reason "I can't make a single thing out of these questions, let alone answer". The verbal and quantitative part was friendlier on me. I was able to answer almost 90% in those two sections. The questions framed were basic and doable with a month

I appeared for an interview in Sep 2016.

Interview Questionnaire 

6 Questions

  • Q1. Oops concept examples?
  • Ans. 

    Examples of OOP concepts include inheritance, polymorphism, and encapsulation.

    • Inheritance: A child class inherits properties and methods from a parent class.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Encapsulation: Data and methods are bundled together in a class, hiding internal details.

  • Answered by AI
  • Q2. Different SQL queries?
  • Ans. 

    Different SQL queries are used to retrieve, manipulate, and manage data in a relational database.

    • SELECT query: retrieves data from one or more tables

    • INSERT query: inserts new data into a table

    • UPDATE query: modifies existing data in a table

    • DELETE query: removes data from a table

    • JOIN query: combines data from multiple tables based on a related column

    • GROUP BY query: groups data based on a specific column

    • ORDER BY query: so...

  • Answered by AI
  • Q3. Programme on file handling?
  • Ans. 

    A program on file handling is a software that allows users to create, read, update, and delete files on a computer system.

    • File handling involves operations such as opening, closing, reading, writing, and deleting files.

    • File handling can be done using various programming languages such as C, C++, Java, Python, etc.

    • Examples of file handling operations include creating a new file, reading data from a file, writing data to...

  • Answered by AI
  • Q4. Introduce yourself ?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Recent graduate with a degree in Computer Science

    • Passionate about software development

    • Experience with programming languages like Java and Python

  • Answered by AI
  • Q5. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Advancing to a senior software engineer role

    • Leading a team of developers on projects

    • Working on innovative and challenging projects

    • Continuing to learn and grow in the field

  • Answered by AI
  • Q6. What are your weakness and strength?
  • Ans. 

    My weakness is overthinking and my strength is attention to detail.

    • Weakness: tend to overthink situations, which can lead to indecision

    • Strength: strong attention to detail, ensuring accuracy in work

    • Weakness: difficulty delegating tasks, preferring to do everything myself

    • Strength: quick learner, able to pick up new technologies and concepts easily

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: I got a call for the interview from elitmus, after which first round was written round in which aptitude questions were asked from different topics such as number system, time and work, ratio, probability etc. And there were negative marks for wrong answers.
Tips: For elitmus prepare from R.S Agrawal and Arun Sharma, both are good books.
Don't try to just answer every question if there is negative marking for the wrong answer.
Duration: 45 minutes
Total Questions: 35

Round: Group Discussion
Experience: In this round, we have to speak about the given topic for about 10 minutes. So I spoke on both good and bad use of mobile phone.
Tips: just be confident and fluent.
Duration: 10 minutes

Round: Technical Interview
Experience: In this round basically, questions were asked from Java and SQL.
Tips: Have a proper knowledge about all the technical skills in your resume.
Cover all the topics so that you do not go blank in any question during the interview.

Round: Project Round
Experience: This round was all about my college project. About what my project was, how many members were there in my team, what was my role and involvement in the project and some technical questions about the project.
Tips: make sure that you know all about your project.
try to make your own project by yourself.

Round: HR Interview
Experience: This round was just general talk round with simple interaction to introduce myself and tell hobbies, my future plans, my strength, my weakness etc. And all about the salary and job role part.
Tips: just be yourself.

College Name: Radharaman Institute Of Technology And Science

Skills evaluated in this interview

GlobalLogic Interview FAQs

How many rounds are there in GlobalLogic Qa Automation Testing Engineer interview for experienced candidates?
GlobalLogic interview process for experienced candidates usually has 2 rounds. The most common rounds in the GlobalLogic interview process for experienced candidates are Technical and Resume Shortlist.
How to prepare for GlobalLogic Qa Automation Testing Engineer interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at GlobalLogic. The most common topics and skills that interviewers at GlobalLogic expect are Automation Testing, Selenium, Appium, Java and QA.
What are the top questions asked in GlobalLogic Qa Automation Testing Engineer interview for experienced candidates?

Some of the top questions asked at the GlobalLogic Qa Automation Testing Engineer interview for experienced candidates -

  1. selenium: what are selenium components, what are the different locators in sele...read more
  2. How do you convert json object to string and vice ver...read more
  3. Robot Framework : what are standard libraries in Robot Framework? Explain robot...read more

Tell us how to improve this page.

GlobalLogic Qa Automation Testing Engineer Interview Process for Experienced

based on 2 interviews

Interview experience

3
  
Average
View more
GlobalLogic Qa Automation Testing Engineer Salary
based on 8 salaries
₹13 L/yr - ₹18.5 L/yr
134% more than the average Qa Automation Testing Engineer Salary in India
View more details

GlobalLogic Qa Automation Testing Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Associate Analyst
4k salaries
unlock blur

₹1.2 L/yr - ₹5 L/yr

Senior Software Engineer
3.4k salaries
unlock blur

₹5.2 L/yr - ₹22.3 L/yr

Analyst
3.1k salaries
unlock blur

₹1.2 L/yr - ₹5.7 L/yr

Software Engineer
3k salaries
unlock blur

₹3 L/yr - ₹12.6 L/yr

Associate Consultant
2.9k salaries
unlock blur

₹9.2 L/yr - ₹33 L/yr

Explore more salaries
Compare GlobalLogic with

Genpact

3.8
Compare

DXC Technology

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview