Upload Button Icon Add office photos

Filter interviews by

KOKO Networks Software Qa Automation Engineer Interview Questions and Answers for Freshers

Updated 19 Nov 2023

KOKO Networks Software Qa Automation Engineer Interview Experiences for Freshers

1 interview found

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

I applied via Referral and was interviewed before Nov 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Test case writing skills and understanding
Round 2 - Technical 

(1 Question)

  • Q1. Automation error code display reasoning
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and work culture introduction

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(9 Questions)

  • Q1. Difference between absolute and relative Xpath
  • Ans. 

    Absolute Xpath starts from the root element, while relative Xpath starts from any node in the DOM structure.

    • Absolute Xpath starts with a single forward slash (/) and starts selection from the root node.

    • Relative Xpath starts with a double forward slash (//) and starts selection from the current node or any node in the DOM structure.

    • Absolute Xpath is more brittle and prone to breaking if the structure of the page changes...

  • Answered by AI
  • Q2. What would be return if multiple tabs are open
  • Ans. 

    The return would be the number of tabs open in the browser.

    • The return value would be an integer representing the count of open tabs.

    • For example, if there are 5 tabs open, the return value would be 5.

  • Answered by AI
  • Q3. What are the waits in selenium
  • Ans. 

    Types of waits in Selenium include Implicit Wait, Explicit Wait, and Fluent Wait.

    • Implicit Wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit Wait: Waits for a certain condition to occur before proceeding further in the code.

    • Fluent Wait: Waits for a condition to be true with a defined polling frequency.

    • Example: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

  • Answered by AI
  • Q4. Exceptions in selenium
  • Ans. 

    Exceptions in Selenium are errors that occur during test execution, disrupting the flow of the test script.

    • Exceptions are thrown when there is an unexpected behavior in the application under test or in the test script itself.

    • Common exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, TimeoutException, and StaleElementReferenceException.

    • Handling exceptions in Selenium can be done using try-...

  • Answered by AI
  • Q5. What is feature and step definitions in cucumber BDD
  • Ans. 

    Feature files contain high-level description of the functionality to be tested, while step definitions are the implementation of the steps in the feature file using code.

    • Feature files are written in Gherkin syntax and describe the behavior of the application in plain text.

    • Step definitions are written in programming languages like Java, Ruby, etc., and map the steps in the feature file to automation code.

    • Feature files a...

  • Answered by AI
  • Q6. How to input data in cucumber
  • Ans. 

    Data can be input in Cucumber using feature files and step definitions.

    • Data can be input in feature files using scenarios and scenario outlines

    • Step definitions can be used to define the actions to be taken with the input data

    • Data tables can be used in feature files to input structured data

    • Examples keyword can be used in scenario outlines to provide multiple sets of input data

  • Answered by AI
  • Q7. Basic Java questions like access modifiers, method overloading and overriding
  • Q8. What is Test case, Test plan and Test Secenarios
  • Ans. 

    Test case is a set of conditions or variables under which a tester will determine whether a system under test satisfies requirements. Test plan is a document outlining the scope, approach, resources, and schedule of testing activities. Test scenarios are detailed descriptions of possible interactions with the system.

    • Test case: specific conditions to be tested, expected results, steps to execute

    • Test plan: overall strate...

  • Answered by AI
  • Q9. Hooks in Java
  • Ans. 

    Hooks in Java are methods that allow subclasses to override or extend the behavior of a superclass.

    • Hooks are commonly used in frameworks like JUnit and TestNG for test automation.

    • They are often used for setup and teardown operations before and after test methods.

    • Examples include @Before, @After, @BeforeClass, and @AfterClass annotations in JUnit.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The second round interview was quite challenging, with numerous questions focused on core Java topics such as data structures and linked lists. It felt less like a testing interview and more akin to a developer interview.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in May 2024.

Round 1 - Technical 

(10 Questions)

  • Q1. Basics of Selenium(Windowhandles,Screenshot,Actions class,Selector Class,) with syntax
  • Q2. Asked to write Automation Framework architecture
  • Q3. What are the different gherkin words
  • Ans. 

    Gherkin words are keywords used in Gherkin syntax for writing test scenarios in Behavior Driven Development (BDD).

    • Feature

    • Scenario

    • Given

    • When

    • Then

    • And

    • But

  • Answered by AI
  • Q4. What we will use in plugin
  • Ans. 

    Plugins are used to extend the functionality of a software application.

    • Plugins are additional software components that can be added to an existing application to provide new features or functionalities.

    • They can be used to customize the behavior of the application without modifying its core code.

    • Examples of plugins include browser extensions, WordPress plugins, and Adobe Photoshop filters.

  • Answered by AI
  • Q5. How to run runner class
  • Ans. 

    To run a runner class, you can use a test runner tool like JUnit or TestNG in your automation testing framework.

    • Use a test runner tool like JUnit or TestNG to execute the runner class

    • Add the @RunWith annotation in JUnit or specify the runner class in TestNG XML file

    • Make sure the runner class includes the necessary setup and teardown methods for test execution

  • Answered by AI
  • Q6. Java oops, strings , exception handling
  • Q7. How to run parallel mode in testng,groups,priority
  • Ans. 

    TestNG allows running tests in parallel mode using groups and priorities.

    • Use 'parallel' attribute in testng.xml file to specify parallel mode (e.g. )

    • Use 'groups' attribute in testng.xml file to group tests that should run in parallel (e.g. )

    • Use 'priority' attribute in testng.xml file to specify the order in which tests should run (e.g.

  • Answered by AI
  • Q8. Write Merge Sort Programme
  • Ans. 

    Merge Sort is a divide and conquer algorithm that divides the input array into two halves, sorts them, and then merges them back together.

    • Divide the array into two halves recursively

    • Sort each half using Merge Sort recursively

    • Merge the sorted halves back together

  • Answered by AI
  • Q9. Write Reverse a string programme
  • Ans. 

    Program to reverse a string using array of characters

    • Create an array of characters from the input string

    • Iterate through the array in reverse order and append each character to a new string

    • Return the reversed string

  • Answered by AI
  • Q10. Write syntax of data driven testing (XSSF Workbook) Syntax
  • Ans. 

    Data driven testing syntax using XSSF Workbook

    • Create XSSFWorkbook object

    • Get the sheet from the workbook

    • Iterate through rows and columns to fetch test data

    • Use test data in your test cases

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Selenium basics ( window handles , screenshot,reports, file upload and download, Add extension, Headless mode)

Interview Preparation Tips

Interview preparation tips for other job seekers - I would say it is easy to crack Service based Companies. Just prepare all the concepts of Selenium, Java,TestNG,Maven,GitHub and basic 20 Programmes.

For Selenium and BDD(Cucumber)Learn Rahul Shetty Udemy course
For Java search and learn top 200 interview questions.
Basic programmes like ( Duplicate characters,reverse string,unique characters, string anagram, Bubble sort , merge sort, quick sort and some more) .

How I switched from my current company.
Do’s
Uninstall social media apps.
Stop watching movies.
Stop eating Junk food.
Study at least 1-2 hours daily.
Listen motivational songs.
Make connections on LinkedIn.
Make single page resume by creating on overleaf website.

How to apply to companies.
Don’t apply directly on company website(Big mistake)
Send resumes to hr directly(u will get their mails on some posts on LinkedIn)
Ask referral on LinkedIn.
Update Naukri daily 9am and put notice period to 30 or 15days.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions of selenium.
  • Q2. Some java conceptual questions
Round 2 - Technical 

(1 Question)

  • Q1. Asked to write code of how read data from excel and explain the entire project structure.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write a program to reverse a string
  • Ans. 

    Program to reverse a string

    • Create a char array from the input string

    • Use two pointers to swap characters from start and end

    • Continue swapping until pointers meet in the middle

  • Answered by AI
  • Q2. In API testing in postman when do we get 408 status
  • Ans. 

    A 408 status in API testing in Postman is received when the server times out while waiting for a request.

    • 408 status code indicates that the server did not receive a complete request within the time that it was prepared to wait.

    • This can happen if the client takes too long to send the request or if the server is overloaded.

    • It is important to adjust timeout settings in Postman to avoid receiving 408 status codes.

    • Example: ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
No response

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

Round 1 - Coding Test 

1. Write a java code to print smallest and largest word in the given sentence.
2.Java code to print the statement in reverse.
3. In notepad,interviewer asked us to write the code POM class and how to call it - (Basically they wanted to check the knowledge of PageFactory class.)
4.How to write the code from config file and excel sheet.
5.All Git command

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. OOPS Concept Interface Inheritance Method Overloading Hashmap, Hashtable Agile methodology Bug cycle Defect management tool Different types of Xpath How to generate report in selenium
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 Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

Reversing string "I am Rahul"

Interview Preparation Tips

Topics to prepare for CGI Group Automation Test Engineer interview:
  • Java
  • Core Java
  • Selenium
  • SQL
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Selenium interview questions
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(5 Questions)

  • Q1. What is Automation and advantages
  • Ans. 

    Automation is the use of technology to perform tasks without human intervention.

    • Increases efficiency and productivity

    • Reduces errors and improves accuracy

    • Saves time and money

    • Allows for 24/7 operation

    • Enables scalability and consistency

    • Examples include robotic process automation, industrial automation, and test automation

  • Answered by AI
  • Q2. What is plc and advantages
  • Ans. 

    PLC stands for Programmable Logic Controller. It is an industrial computer used to automate processes and control machinery.

    • PLCs are highly reliable and can operate in harsh environments

    • They can be easily programmed and reprogrammed to accommodate changes in the manufacturing process

    • PLCs can communicate with other devices and systems, allowing for seamless integration

    • They can improve efficiency and productivity while r...

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

    Instrumentation refers to the use of instruments or devices to measure, control, or monitor a process or system.

    • Instruments are used to gather data about a process or system

    • Data is then used to control or monitor the process or system

    • Examples include sensors, gauges, and meters

    • Instrumentation is used in various industries such as manufacturing, energy, and transportation

  • Answered by AI
  • Q4. What is panel design
  • Ans. 

    Panel design refers to the process of designing and creating electrical control panels for industrial automation systems.

    • Panel design involves selecting appropriate components such as circuit breakers, relays, and switches.

    • The design must also consider factors such as wiring, labeling, and safety standards.

    • CAD software is often used to create detailed panel layouts and schematics.

    • Examples of industrial automation syste...

  • Answered by AI
  • Q5. Define transformer and why use transformer
  • Ans. 

    A transformer is an electrical device that transfers electrical energy from one circuit to another through electromagnetic induction.

    • Transformers are used to increase or decrease the voltage of an alternating current (AC) power supply.

    • They are used in power distribution systems to step up the voltage for long-distance transmission and step it down for local distribution.

    • Transformers are also used in electronic devices ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My name Pritam Singh I am from jammu and kashmir I did my diploma in Electrical Engineering from government polytechnic College Ramban

Skills evaluated in this interview

KOKO Networks Interview FAQs

How many rounds are there in KOKO Networks Software Qa Automation Engineer interview for freshers?
KOKO Networks interview process for freshers usually has 4 rounds. The most common rounds in the KOKO Networks interview process for freshers are Technical, Resume Shortlist and HR.
What are the top questions asked in KOKO Networks Software Qa Automation Engineer interview for freshers?

Some of the top questions asked at the KOKO Networks Software Qa Automation Engineer interview for freshers -

  1. Test case writing skills and understand...read more
  2. Automation error code display reason...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 KOKO Networks interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Accenture Interview Questions
3.9
 • 8k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
DXC Technology Interview Questions
3.7
 • 801 Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
Publicis Sapient Interview Questions
3.5
 • 601 Interviews
View all
Software Engineer
9 salaries
unlock blur

₹10.5 L/yr - ₹15.7 L/yr

Full Stack Developer
7 salaries
unlock blur

₹12 L/yr - ₹14.4 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹18.5 L/yr - ₹36.6 L/yr

Senior QA Engineer
5 salaries
unlock blur

₹16.5 L/yr - ₹28 L/yr

Odoo Python Developer
4 salaries
unlock blur

₹5.4 L/yr - ₹11 L/yr

Explore more salaries
Compare KOKO Networks with

DCMN Bangalore

5.0
Compare

Simpa Energy

4.4
Compare

Selco Solar Light

4.6
Compare

Husk Power Systems

3.4
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview