Filter interviews by
16 questions based on qa
I applied via Company Website and was interviewed before Nov 2022. There were 3 interview rounds.
Top trending discussions
posted on 23 Feb 2022
I applied via Recruitment Consulltant and was interviewed before Feb 2021. There was 1 interview round.
The get method is used to retrieve a value from a data structure, while the quit method is used to terminate a program or session.
The get method is commonly used in programming languages to access elements from arrays, lists, dictionaries, etc.
The quit method is typically used to gracefully exit a program or session, closing any open resources or connections.
Example: In Python, the get method is used to retrieve values...
TakescreenShot sudo code captures the screen and saves it as an image file.
Import necessary libraries for capturing the screen and saving images
Define a function to capture the screen
Specify the file format and location to save the screenshot
Call the function to capture and save the screenshot
Exception handling process involves identifying, catching, and handling errors in the software.
Identify potential exceptions and define exception classes
Catch exceptions using try-catch blocks
Handle exceptions appropriately, either by logging or displaying error messages
Implement a fallback mechanism to handle unexpected exceptions
Test exception handling scenarios thoroughly
Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in its superclass.
Overloading is compile-time polymorphism while overriding is runtime polymorphism.
Overloading is used to provide different implementations of the same method for different input parameters.
Overriding is used to provide a specific ...
To select a checkbox in Selenium, locate the checkbox element and use the 'click' method.
Locate the checkbox element using any of the available locators in Selenium
Use the 'click' method to select the checkbox
Verify that the checkbox is selected using the 'isSelected' method
How to skip a specific test case in TestNG?
Use @Test(enabled = false) annotation to skip a test case
Use @Test(groups = {"skip"}) annotation and exclude the group from test execution
Use ITestResult.SKIP status to skip a test case programmatically
Absolute Xpath is the complete path from the root element while relative Xpath is the path from the current element.
Absolute Xpath starts with a single forward slash (/) and is used to locate an element from the root node.
Relative Xpath starts with a double forward slash (//) and is used to locate an element from the current node.
Absolute Xpath is more specific and less flexible while relative Xpath is more flexible an...
Cucumber framework executes feature files using step definitions and generates reports.
Cucumber reads feature files written in Gherkin syntax
Step definitions are written in programming language
Cucumber matches steps in feature file with step definitions
Cucumber generates reports after execution
Scenario outlines are templates for scenarios with placeholders for input values.
Scenario outlines are used in BDD frameworks like Cucumber.
They allow for the creation of multiple scenarios with different input values.
Scenario outlines use placeholders like
Example: Given a
Scenario outlines are more flexible and reusable than regular scenar
TestNG annotations are executed in a specific order to ensure proper test execution.
BeforeSuite
BeforeTest
BeforeClass
BeforeMethod
Test
AfterMethod
AfterClass
AfterTest
AfterSuite
posted on 29 Mar 2024
I applied via Approached by Company and was interviewed before Mar 2023. There was 1 interview round.
Word wrap coding problem involves breaking a string into lines of a specified length without breaking words.
Use a loop to iterate through the input string and break it into lines of specified length
Make sure to not break words in the middle, move the word to the next line if needed
Consider edge cases like words longer than the specified line length
posted on 28 Jul 2024
I applied via Company Website and was interviewed before Jul 2023. There were 2 interview rounds.
Quantitive question were asked and mathematical questions
A palindrome is a word, phrase, number, or other sequence of characters which reads the same backward as forward.
Palindrome examples: 'radar', 'madam', 'level', '12321'
Ignore spaces and punctuation when checking for palindromes
Can be applied to words, phrases, numbers, or even entire sentences
Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.
Fibonacci series starts with 0 and 1, and each subsequent number is the sum of the two preceding numbers.
The series goes like: 0, 1, 1, 2, 3, 5, 8, 13, 21, and so on.
It is a common mathematical sequence used in various algorithms and applications.
posted on 3 Jul 2024
I applied via Walk-in and was interviewed before Jul 2023. There were 4 interview rounds.
Contained math questions
Contained questions on coding, test cases, debugging
posted on 22 Mar 2024
I applied via Company Website and was interviewed in Sep 2023. There was 1 interview round.
SDLC stands for Software Development Life Cycle, a process used by software development teams to design, develop, and test high-quality software.
SDLC is a systematic process that consists of several phases including planning, analysis, design, implementation, testing, and maintenance.
Each phase has its own set of activities and deliverables that must be completed before moving on to the next phase.
SDLC helps ensure tha...
I was interviewed in Sep 2024.
An aptitude test evaluates an individual's potential to excel in a specific area by assessing their strengths and weaknesses in particular abilities.
An assessment that measures an individual's inherent abilities and potential for success in a specific activity.
A coding test is a programming assessment designed to evaluate a candidate's coding skills. It is a standard component of the technical hiring process for software developers and programmers.
Assessment that evaluates a candidate's coding skills
Group discussion (GD) topics for interviews may cover areas such as business, social issues, and current affairs. GDs serve to evaluate a candidate's communication, leadership, and teamwork abilities.
Discussion assignments are prompts that your teacher may assign to you. By participating in these discussions, you can reflect on your learning, share ideas and opinions, or ask and answer questions. Discussions may require you to respond to individual questions or provide multiple responses to an ongoing conversation.
Angular is a popular open-source front-end web application framework developed by Google.
Angular is used for building dynamic web applications.
It allows for the creation of single-page applications.
Angular uses TypeScript for building applications.
It provides features like data binding, dependency injection, and routing.
Angular has a large community and ecosystem of libraries and tools.
Examples: AngularJS, Angular 2, A
Routing is the process of selecting a path for network traffic to travel from source to destination.
Routing involves determining the best path for data packets to travel through a network
Routers use routing tables to make decisions on where to send data packets
Routing protocols like OSPF and BGP help routers communicate and update routing information
There are various types of forms, such as physical forms, digital forms, legal forms, etc.
Physical forms: Paper-based forms that are filled out by hand.
Digital forms: Electronic forms that are filled out online or through software.
Legal forms: Forms used for legal purposes, such as contracts or agreements.
Lazy loading in Angular is a technique used to load modules only when they are needed, improving performance by reducing initial load time.
Lazy loading helps in reducing the initial bundle size of the application by loading modules asynchronously.
It improves the performance of the application by only loading the modules that are required at a particular time.
Lazy loading is achieved by using the loadChildren property i...
The rxjs operator in Angular is used for reactive programming and handling asynchronous data streams.
RxJS operators are functions that build on the observables foundation to enable sophisticated manipulation of asynchronous data streams.
Operators can be used to filter, transform, combine, and more on observables.
Example: map(), filter(), mergeMap(), switchMap()
Testing frameworks are tools that help automate the process of testing software applications.
Testing frameworks provide a structure for writing and executing test cases.
They offer features like test data management, test case organization, and reporting.
Examples include JUnit for Java, NUnit for .NET, and pytest for Python.
To load an Angular application, you can use the Angular CLI command 'ng serve' to start a development server.
Use the Angular CLI command 'ng serve' to start a development server
Navigate to the project directory in the terminal and run 'ng serve'
Open a web browser and go to 'http://localhost:4200/' to view the application
All was apptitude question and was mcq.
Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.
Allows for code reusability and promotes the concept of 'is-a' relationship
Derived class inherits properties and behaviors of the base class
Can have multiple levels of inheritance (multi-level inheritance)
Example: Class 'Car' can inherit from class 'Vehicle', inheriting attributes like 'color' and
OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.
OOPS is a programming paradigm that uses objects to design applications.
It focuses on data encapsulation, inheritance, polymorphism, and abstraction.
Examples of OOPS languages include Java, C++, and Python.
Introduction is a brief overview of oneself, including background, experience, and skills.
Introduce yourself by stating your name and current position.
Provide a summary of your educational background and relevant experience.
Highlight key skills and accomplishments that are relevant to the position.
Conclude with your career goals and why you are interested in the role.
In five years, I see myself as a senior system engineer leading a team of talented professionals, implementing cutting-edge technologies, and contributing to the success of the organization.
Leading a team of system engineers
Implementing cutting-edge technologies
Contributing to the success of the organization
based on 2 interviews
Interview experience
based on 2 reviews
Rating in categories
TCS
Accenture
Wipro
Cognizant