i
Ikokas Digital Technologies
Filter interviews by
I applied via LinkedIn and was interviewed in Sep 2021. There were 5 interview rounds.
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
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...
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
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...
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...
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...
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
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...
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...
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...
Top trending discussions
I applied via Monster and was interviewed before Oct 2020. There were 3 interview rounds.
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.
posted on 7 Mar 2024
I applied via LinkedIn and was interviewed in Sep 2023. There were 4 interview rounds.
Work on jva concepts
Array and link list questions.
posted on 29 Nov 2024
I was interviewed in May 2024.
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 }
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
I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.
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
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
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
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
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
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.
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'
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.
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();
I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.
I was interviewed in Oct 2024.
Interviewer gave a java program and asked output.
based on 2 reviews
Rating in categories
QA Test Engineer
10
salaries
| ₹0 L/yr - ₹0 L/yr |
Data Warehouse Developer
10
salaries
| ₹0 L/yr - ₹0 L/yr |
Softwaretest Engineer
6
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior QA Engineer
5
salaries
| ₹0 L/yr - ₹0 L/yr |
UI/UX Designer
4
salaries
| ₹0 L/yr - ₹0 L/yr |
TCS
Infosys
Wipro
HCLTech