Upload Button Icon Add office photos
Engaged Employer

i

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

Ikokas Digital Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Ikokas Digital Technologies Senior QA Engineer Interview Questions, Process, and Tips

Updated 5 Oct 2021

Ikokas Digital Technologies Senior QA Engineer Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in Sep 2021. There were 5 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. What is Opps concepts
  • Ans. 

    Object-oriented programming (OOP) concepts are fundamental principles that help in designing and implementing software systems.

    • Encapsulation: bundling data and methods together in a class

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent different types

    • Abstraction: hiding unnecessary details and exposing only essential features

  • Answered by AI
  • Q2. What is STLC
  • Ans. 

    STLC stands for Software Testing Life Cycle, which is a process followed by QA teams to ensure quality software delivery.

    • STLC involves planning, designing, executing, and reporting of tests.

    • It includes various stages such as requirement analysis, test planning, test case development, test execution, and test closure.

    • STLC helps in identifying defects early in the development cycle, reducing the cost of fixing them later...

  • Answered by AI
  • Q3. What is Bug life cycle
  • Ans. 

    Bug life cycle is the process of identifying, reporting, fixing, retesting, and closing a software bug.

    • Bug is identified by tester

    • Bug is reported to development team

    • Development team fixes the bug

    • Tester retests the bug

    • If bug is fixed, it is closed

    • If bug is not fixed, it is reopened

  • Answered by AI
  • Q4. Differences between Get & post method ?
  • Ans. 

    Get method retrieves data from a server while post method submits data to be processed by a server.

    • Get method is used to retrieve data from a server while post method is used to submit data to be processed by a server.

    • Get method appends data to the URL while post method sends data in the request body.

    • Get method has a limit on the amount of data that can be sent while post method has no such limit.

    • Get method is not secu...

  • Answered by AI
  • Q5. What is soap & REST api?
  • Ans. 

    SOAP and REST are two types of web service protocols used for communication between systems.

    • SOAP (Simple Object Access Protocol) is a protocol used for exchanging structured information between systems using XML-based messages over HTTP or other transport protocols.

    • REST (Representational State Transfer) is a protocol used for creating web services that allow communication between systems using HTTP requests and respons...

  • Answered by AI
  • Q6. What is test cases & test scenarios?
  • Ans. 

    Test cases are specific conditions and inputs used to test a software application, while test scenarios are a series of test cases that simulate real-world usage.

    • Test cases are designed to ensure that the software meets the requirements and specifications.

    • Test scenarios are a collection of test cases that are used to test a particular feature or functionality.

    • Test cases and scenarios are documented and executed to iden...

  • Answered by AI
  • Q7. What is the tracebility matrix?
  • Ans. 

    Traceability matrix is a document that links requirements to test cases to ensure all requirements are tested.

    • It is used to track the relationship between requirements and test cases.

    • It ensures that all requirements are covered by test cases.

    • It helps in identifying any gaps in testing.

    • It is a useful tool for project management and quality assurance.

    • It can be created using a spreadsheet or specialized software.

    • It is oft

  • Answered by AI
  • Q8. What is validation & verification ?
  • Ans. 

    Validation is the process of evaluating a system or component during or at the end of the development process to determine whether it satisfies specified requirements. Verification is the process of evaluating a system or component to determine whether the products of a given development phase satisfy the conditions imposed at the start of that phase.

    • Validation ensures that the product meets the customer's requirements...

  • Answered by AI
  • Q9. What is method overlaoding ?
  • Ans. 

    Method overloading is a feature in object-oriented programming where a class can have multiple methods with the same name but different parameters.

    • Method overloading allows a class to have multiple methods with the same name but different parameters.

    • The methods must have different parameter types or a different number of parameters.

    • The compiler determines which method to call based on the arguments passed to it.

    • Example...

  • Answered by AI
  • Q10. What is method overriding?
  • Ans. 

    Method overriding is a feature in object-oriented programming where a subclass provides its own implementation of a method that is already provided by its parent class.

    • Method overriding is used to achieve runtime polymorphism.

    • The method signature of the overridden method in the subclass must match that of the method in the parent class.

    • The access level of the overridden method in the subclass cannot be more restrictive...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your basics about software testing work hard on explaining project

Skills evaluated in this interview

Interview questions from similar companies

I applied via Monster and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical selenium and architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with technical knowlage

Interview Questionnaire 

2 Questions

  • Q1. Basisc of cove java
  • Ans. 

    Core Java is the fundamental part of Java programming language.

    • Core Java includes basic concepts like data types, control structures, and object-oriented programming.

    • It is used to develop standalone applications, web applications, and mobile applications.

    • Examples of Core Java libraries include java.lang, java.util, and java.io.

    • Core Java is a prerequisite for learning advanced Java concepts like Spring and Hibernate.

  • Answered by AI
  • Q2. Framework designing and selenium questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Testing basic questions
Round 2 - HR 

(1 Question)

  • Q1. General HR questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Work on jva concepts

Round 2 - Coding Test 

Array and link list questions.

Round 3 - Technical 

(1 Question)

  • Q1. Rest Api and rest assured
Round 4 - HR 

(1 Question)

  • Q1. Negotiations regarding the post
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in May 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Java program string and array related
  • Q2. Core java questions
Round 2 - Technical 

(2 Questions)

  • Q1. Java program for array
  • Ans. 

    Java program to create and manipulate an array of strings

    • Declare and initialize an array of strings: String[] arrayName = new String[] {"string1", "string2", "string3"};

    • Access elements in the array using index: String element = arrayName[index];

    • Modify elements in the array: arrayName[index] = "newString";

    • Iterate through the array using a loop: for(String element : arrayName) { // do something with element }

  • Answered by AI
  • Q2. Java program for string
  • Ans. 

    Java program to manipulate an array of strings

    • Use a for loop to iterate through the array of strings

    • Use string methods like substring, indexOf, or replace to manipulate the strings

    • Use StringBuilder for efficient string manipulation

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. About your expertise.
  • Q2. Team management.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Match 14 characters before @ , given an url
  • Ans. 

    Extract the 14 characters before @ in a given URL

    • Use string manipulation to extract characters before @ symbol

    • Consider edge cases like no @ symbol or less than 14 characters before @

    • Handle special characters like %20 or %40

  • Answered by AI
  • Q2. Match Atleast one capital, once small case, 1 digit and 1 special character using regex?
  • Ans. 

    Regex pattern to match at least one capital letter, one small case letter, one digit, and one special character.

    • Use the regex pattern: (?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*[^A-Za-z0-9])

    • Example: Password@123

  • Answered by AI
  • Q3. Given a string ="This is my interview for QA engineer"; write code to give an output of each word with vowel count?
  • Ans. 

    Code to output each word with vowel count in a given string.

    • Split the string into words using space as delimiter

    • Iterate through each word and count the number of vowels

    • Store the word and its vowel count in an array of strings

  • Answered by AI
  • Q4. Given a 2X2 Matrix, find the maximum diagonal sum?
  • Ans. 

    To find the maximum diagonal sum in a 2X2 Matrix, sum the elements of the main diagonal and the opposite diagonal.

    • Sum the elements of the main diagonal (top left to bottom right) and the opposite diagonal (top right to bottom left).

    • Compare the sums of both diagonals and return the maximum sum.

    • Example: For a 2X2 Matrix [[1, 2], [3, 4]], the main diagonal sum is 1+4=5 and the opposite diagonal sum is 2+3=5. The maximum d

  • Answered by AI
  • Q5. How do you find the selected option text from dropdown in selenium?
  • Ans. 

    To find the selected option text from a dropdown in Selenium, you can use the getFirstSelectedOption() method.

    • Use the Select class to work with dropdown elements in Selenium

    • Use the getFirstSelectedOption() method to get the selected option

    • Retrieve the text of the selected option using getText() method

  • Answered by AI
  • Q6. Given a dropdown contains options with duplicates. Find those duplicates along with its occurrence/frequency?
  • Ans. 

    Find duplicates in a dropdown along with their occurrence/frequency.

    • Iterate through the dropdown options and store each option in a hashmap with its frequency.

    • Identify options with frequency greater than 1 as duplicates.

    • Return the duplicates along with their occurrence/frequency.

  • Answered by AI
  • Q7. How do you resolve merge conflicts in git?
  • Ans. 

    Resolve merge conflicts in git by using git commands and tools.

    • Pull the latest changes from the remote repository

    • Use 'git status' to identify conflicting files

    • Open the conflicting files and manually resolve the conflicts

    • Add the resolved files to the staging area using 'git add'

    • Commit the changes with a merge message using 'git commit'

  • Answered by AI
  • Q8. How to bring specific commit changes to your branch?
  • Ans. 

    Use git cherry-pick command to bring specific commit changes to your branch.

    • Identify the commit hash of the specific changes you want to bring to your branch.

    • Checkout to the branch where you want to apply the changes.

    • Use 'git cherry-pick <commit-hash>' command to apply the specific commit changes to your branch.

  • Answered by AI
  • Q9. How to switch to frame and come out of it in selenium?
  • Ans. 

    To switch to a frame in Selenium, use driver.switchTo().frame() method. To come out of a frame, use driver.switchTo().defaultContent() method.

    • Use driver.switchTo().frame() method to switch to a frame

    • Use driver.switchTo().defaultContent() method to come out of a frame

    • Example: driver.switchTo().frame("frameName");

    • Example: driver.switchTo().defaultContent();

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep doing any activity(remove/add/update resume, change skills etc..) in naukri/linkedin so that i catches recruiters attention
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. 1.Actions 2.Alerts 3.diff between string buffer and string builder 4. diff between hash map and hash table 5.program to find index of character in string 6.program to find character occurrences in a string...
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I was interviewed in Oct 2024.

Round 1 - Coding Test 

Interviewer gave a java program and asked output.

Ikokas Digital Technologies Interview FAQs

What are the top questions asked in Ikokas Digital Technologies Senior QA Engineer interview?

Some of the top questions asked at the Ikokas Digital Technologies Senior QA Engineer interview -

  1. what is test cases & test scenari...read more
  2. What is validation & verificatio...read more
  3. Differences between Get & post metho...read more

Tell us how to improve this page.

Ikokas Digital Technologies Senior QA Engineer Salary
based on 5 salaries
₹9.1 L/yr - ₹16.7 L/yr
6% more than the average Senior QA Engineer Salary in India
View more details

Ikokas Digital Technologies Senior QA Engineer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.5

Skill development

5.0

Work-life balance

4.5

Salary

4.5

Job security

4.5

Company culture

4.5

Promotions

4.5

Work satisfaction

Explore 2 Reviews and Ratings
QA Test Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Warehouse Developer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior QA Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

UI/UX Designer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ikokas Digital Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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