i
_VOIS
Filter interviews by
I applied via Naukri.com and was interviewed before Feb 2023. There were 2 interview rounds.
Good math question asked in interview
Palindrome problem, Factorial problem, Reverese string
posted on 10 Jun 2021
I applied via LinkedIn and was interviewed in Jul 2023. There were 3 interview rounds.
Use SQL query to compare two tables and fetch records based on condition
Use JOIN clause to compare two tables
Add a WHERE clause to specify the condition for fetching records
Select the desired columns from the tables
Test cases should be written based on scenarios or requirements to ensure thorough testing coverage.
Understand the scenario or requirement thoroughly before writing test cases
Identify different test scenarios based on the given scenario or requirement
Write test cases that cover positive, negative, and edge cases
Include preconditions and expected outcomes in each test case
Ensure test cases are clear, concise, and easy t...
I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.
To create a new folder using VB SCRIPT, integrate with Jenkins, use Selenium Xpath for testing, and perform regression and retest.
Use VB SCRIPT to create a new folder by using the FileSystemObject
Integrate with Jenkins for automation and continuous integration
Utilize Selenium Xpath for locating elements on web pages during testing
Perform regression testing to ensure new changes do not affect existing functionality
Retes...
posted on 24 Dec 2022
I applied via Naukri.com and was interviewed in Nov 2022. There were 3 interview rounds.
Aptitude test having 70 Questions that need to solve in 60 min.
Cannot answer without knowing the java program
Need to know the code to determine output
Output can vary based on input and logic
Can provide answer if given the program
posted on 23 Oct 2021
Abstract is a concept in object-oriented programming that allows for the creation of classes that cannot be instantiated.
Abstract classes are used as blueprints for other classes to inherit from.
They contain abstract methods that must be implemented by the inheriting class.
An abstract class cannot be instantiated on its own.
The keyword 'abstract' is used to define an abstract class or method.
posted on 23 Dec 2021
I applied via Other and was interviewed in Nov 2021. There were 3 interview rounds.
posted on 24 Jan 2022
I applied via Job Fair and was interviewed in Sep 2022. There were 2 interview rounds.
posted on 13 Mar 2022
I was interviewed in Sep 2021.
Round duration - 60 Minutes
Round difficulty - Medium
In this round, the interviewer first started asking me questions around basics of Software Testing. Then he switched to Agile Testing and at the end asked some more questions related to SQL.
Explain STLC.
STLC (Software Testing Life Cycle) is a fundamental part of SDLC which is used to test software and ensure that the quality standards are met. It generally involves both verification activities and validation activities. In this, different activities are executed in a specific order throughout the software testing process. There are basically six different phases in STLC. They are as follows :
1) Requirement Analy...
Write the difference between Test Stub and Test Driver.
Test driver and test stub, both are types of test harness that are used to provide a simulation environment for testing a module or component. They both are dummy modules specially created for test purposes.
Test stubs: Test stubs are used in a top-down testing approach and allow testing of the upper levels of the code when the lower levels of the code are not developed yet. It is used as ‘called programs’ when su...
What is the importance of agile testing?
Agile testing is basically a software testing process that uses agile methodologies i.e., follow test-first design paradigm. It evaluates the software from the customer's point of view. It does not require any development team to complete coding for starting QA, instead of testing and coding can go hand in hand. Features are tested as they are developed. Some of its advantages include :
1) Boosts the performance a...
What is Spike and Zero Sprint in Agile?
Spike: It generally refers to a too large and complex user story in software development that cannot be estimated until the development team runs a timeboxed investigation. These stories can be used for various activities like research, design, exploration, prototyping, etc. Spikes are usually created to resolve some technical issues and design problems in the project.
Zero Sprint: It generally refers to the first...
What is the difference between Agile and Scrum?
Agile :
1) It is a methodology that is used for software management and project management.
2) It emphasizes the incremental and iterative model known as sprints.
3) It is best suited for projects that usually involve a small team of experts.
4) It is a long-term process.
5) It requires simple and straightforward design and execution.
6) In this, all tasks are handled and managed by the project head.
Scrum :
...
How many Aggregate functions are available in SQL?
SQL Aggregate functions determine and calculate values from multiple columns in a table and return a single value.
There are 7 aggregate functions in SQL :
1) AVG(): Returns the average value from specified columns.
2) COUNT(): Returns number of table rows.
3) MAX(): Returns the largest value among the records.
4) MIN(): Returns smallest value among the records.
5) SUM(): Returns the sum of specified column values.
6) FIRST()...
What are triggers?
Triggers in SQL is kind of stored procedures used to create a response to a specific action performed on the table such as INSERT, UPDATE or DELETE. You can invoke triggers explicitly on the table in the database.
Action and Event are two main components of SQL triggers. When certain actions are performed, the event occurs in response to that action.
Syntax :
CREATE TRIGGER name {BEFORE|AFTER} (event [OR..]}
ON table_name ...
Round duration - 60 Minutes
Round difficulty - Medium
This round had questions revolving around Automation Testing , Selenium and Cucumber.
How do you automate the testing of CAPTCHA?
It’s not possible to automate the testing of CAPTCHA. That is the goal behind any good CAPTCHA strategy. By
definition, a computer can’t automate it. If it could, then it’s not a good challenge that you can use in your application.
However, if you need to test an application that uses CAPTCHA, you have to work with the development team to
build a workaround or a back door that allows the automated test to bypass the CAPTC...
What is Protractor?
Protractor is an open-source automated testing framework that allows you to perform end-to-end testing of your web
applications. It’s built on top of WebDriverJS. Protractor is developed by Google and is especially used for testing
Angular applications.
Protractor runs the tests against the web application by running it in real web browsers. It also interacts with the
application like an end-user would, e.g. clicking butto...
Why should Selenium be selected as a testing tool for web applications or systems?
Selenium provides the following advantages, which make it an excellent automated testing framework :
1) It is free and open-source software with a large user base and supports providing community.
2) It has cross-browser compatibility and supports multiple browsers like Google Chrome, Mozilla Firefox, Internet Explorer, Edge, Opera, Safari, etc.
3) It supports multiple operating systems such as Windows, Linux, macOS, etc.
...
Explain what are the JUnits annotation linked with Selenium?
The JUnits annotation linked with Selenium are :
1) @Before public void method() – It will perform the method () before each test, this method can prepare the test
2) @Test public void method() – Annotations @Test identifies that this method is a test method environment
3) @After public void method() - To execute a method before this annotation is used, test method must start with test@Before
What are annotations in Cucumber?
An annotation is a type of text that has been pre-defined and has a specified meaning. It tells the compiler/interpreter what to do when the program runs. The annotations on Cucumber are as follows:
1) Given : It specifies the requirements for running the test.
Example : Given I have an account on Interviewbit.
2) When : It establishes the starting point for any test scenario.
Example : When I log in to Interviewbit.
3) The...
Explain briefly how Behavioral Driven Development works?
There are majorly three steps in the working of BDD. They are as follows:-
1) Behaviour Description : We list down the features of our application first in the feature file.
2) Making the Step Definition file : The mapping between each step of the scenario defined in the feature file and a code of the function to be executed is stored in the steps definition file.
3) Testing and running : We run the test cases to check if...
Difference between Selenium and Cucumber.
Open-source testing tools, Selenium and Cucumber are both used for functional testing. However, there are some distinctions between them.
Here are some key distinctions between Selenium and Cucumber :
1) Cucumber is a behavior-driven development automation tool that may be used with Selenium. Selenium is a web browser automation tool for web projects (or Appium).
2) Cucumber is used for acceptance testing, while Selenium ...
Round duration - 30 Minutes
Round difficulty - Easy
This was a Technical Cum HR round where I was first asked some basic Java related concepts and then we discussed
about my expectations from the company , learnings and growth in the forthcomig years. I would suggest be honest and
try to communicate your thoughts properly in these type of rounds to maximise your chances of getting selected.
Why should we hire you ?
Tip 1 : The cross questioning can go intense some time, think before you speak.
Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.
Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round,
like what are the projects currently the company is investing, which team you are mentoring. How all is the ...
Why are you looking for a job change?
Tip : For an experienced professional seeking a change, this is a common question. The easiest method to respond
to this question is to state that you are leaving your current work in order to advance your career. Make sure you don't
criticize or speak poorly about the company where you now work.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
Deputy Manager
519
salaries
| ₹8 L/yr - ₹23.4 L/yr |
Assistant Manager
451
salaries
| ₹5 L/yr - ₹13.5 L/yr |
Senior Executive
378
salaries
| ₹3.5 L/yr - ₹8.2 L/yr |
Manager
245
salaries
| ₹13.2 L/yr - ₹32.5 L/yr |
Senior Manager
126
salaries
| ₹19.1 L/yr - ₹40 L/yr |
Bharti Airtel
Jio
TCS
Infosys