i
Jade
Global
Filter interviews by
Different exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, TimeoutException, StaleElementReferenceException, and WebDriverException.
NoSuchElementException: Thrown when an element could not be found in the DOM.
ElementNotVisibleException: Thrown when an element is present in the DOM but not visible.
TimeoutException: Thrown when a command does not complete in the specified time.
Stale...
Java programs related to strings involve manipulating and working with text data.
Use String class methods like length(), charAt(), substring(), indexOf(), etc.
Concatenate strings using the + operator or StringBuilder class.
Split strings using the split() method.
Convert strings to uppercase or lowercase using toUpperCase() and toLowerCase() methods.
Compare strings using equals() or compareTo() methods.
Different locators used in Selenium include ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, XPath, and CSS Selector.
ID - unique identifier for an element
Name - name attribute of an element
Class Name - class attribute of an element
Tag Name - HTML tag of an element
Link Text - exact text of a link element
Partial Link Text - partial text of a link element
XPath - XML Path Language to locate elements
CSS Se...
Abstraction is the process of hiding complex details and showing only the essential features of an object or system.
Abstraction allows developers to focus on high-level design without worrying about implementation details.
It helps in reducing complexity and improving efficiency in software development.
For example, in object-oriented programming, abstract classes and interfaces are used to define common behaviors w...
Yes, barcodes can be automated using barcode scanning software and tools.
Use barcode scanning software to automate the process of reading and decoding barcodes
Integrate barcode scanning tools with testing frameworks to automate barcode testing
Utilize APIs provided by barcode scanning software to automate barcode verification
Examples: ZBar, Dynamsoft Barcode Reader, ZXing
Scenario-based questions assess a candidate's problem-solving skills in real-world testing situations.
Describe a time when you found a critical bug late in the development cycle. How did you handle it?
Explain how you would prioritize testing tasks when facing tight deadlines.
Discuss a scenario where you had to collaborate with developers to resolve a testing issue.
Test strategies define the overall approach to testing, while test planning involves creating detailed plans for executing tests.
Test strategies outline the goals, scope, resources, and timelines for testing.
Test planning involves creating test cases, test scripts, test data, and schedules for executing tests.
Test strategies focus on the big picture, while test planning focuses on the specifics of how testing will be c...
Different locators used in Selenium include ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, XPath, and CSS Selector.
ID - unique identifier for an element
Name - name attribute of an element
Class Name - class attribute of an element
Tag Name - HTML tag of an element
Link Text - exact text of a link element
Partial Link Text - partial text of a link element
XPath - XML Path Language to locate elements
CSS Selecto...
Yes, barcodes can be automated using barcode scanning software and tools.
Use barcode scanning software to automate the process of reading and decoding barcodes
Integrate barcode scanning tools with testing frameworks to automate barcode testing
Utilize APIs provided by barcode scanning software to automate barcode verification
Examples: ZBar, Dynamsoft Barcode Reader, ZXing
Different exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, TimeoutException, StaleElementReferenceException, and WebDriverException.
NoSuchElementException: Thrown when an element could not be found in the DOM.
ElementNotVisibleException: Thrown when an element is present in the DOM but not visible.
TimeoutException: Thrown when a command does not complete in the specified time.
StaleEleme...
Abstraction is the process of hiding complex details and showing only the essential features of an object or system.
Abstraction allows developers to focus on high-level design without worrying about implementation details.
It helps in reducing complexity and improving efficiency in software development.
For example, in object-oriented programming, abstract classes and interfaces are used to define common behaviors withou...
Java programs related to strings involve manipulating and working with text data.
Use String class methods like length(), charAt(), substring(), indexOf(), etc.
Concatenate strings using the + operator or StringBuilder class.
Split strings using the split() method.
Convert strings to uppercase or lowercase using toUpperCase() and toLowerCase() methods.
Compare strings using equals() or compareTo() methods.
Scenario-based questions assess a candidate's problem-solving skills in real-world testing situations.
Describe a time when you found a critical bug late in the development cycle. How did you handle it?
Explain how you would prioritize testing tasks when facing tight deadlines.
Discuss a scenario where you had to collaborate with developers to resolve a testing issue.
Upon discovering a bug in production, I would follow a structured approach to ensure it is addressed promptly and effectively.
Immediately document the bug with detailed steps to reproduce it, including screenshots if possible.
Assess the severity and impact of the bug on users and the system, prioritizing critical issues.
Notify the relevant stakeholders, such as the development team and project manager, to ensure they a...
Top trending discussions
I applied via Naukri.com and was interviewed before Mar 2020. There were 4 interview rounds.
Hashtable is synchronized while hashmap is not.
Hashtable is thread-safe while hashmap is not.
Hashtable does not allow null keys or values while hashmap allows one null key and multiple null values.
Hashtable is slower than hashmap due to synchronization.
Hashtable is a legacy class while hashmap is a newer implementation.
Hashmap is not thread-safe while Concurrent Hashmap is thread-safe.
Hashmap is not suitable for multi-threaded environments as it can lead to race conditions and data inconsistencies.
Concurrent Hashmap allows multiple threads to access and modify the map concurrently without any data inconsistencies.
Concurrent Hashmap uses a technique called lock striping to achieve thread-safety.
Concurrent Hashmap is slower than Hashma...
posted on 14 Mar 2015
Java is an object-oriented language while C is a procedural language.
Java is platform-independent while C is platform-dependent.
Java has automatic garbage collection while C requires manual memory management.
Java has built-in support for multithreading while C requires external libraries.
Java has a larger standard library compared to C.
Java is more secure than C due to its strong type checking and exception handling.
C ...
Aggregation functions are used to perform calculations on groups of data in a database.
Aggregation functions include COUNT, SUM, AVG, MAX, and MIN.
They are used with the GROUP BY clause to group data based on a specific column.
COUNT function returns the number of rows in a table or the number of non-null values in a column.
SUM function returns the sum of values in a column.
AVG function returns the average of values in ...
Two ways to write a sentence in mirror image form in Java: reverse string function and array conversion.
Use the reverse() method of the String class to reverse the sentence
Convert the sentence to a character array, then swap the first and last characters, second and second-to-last characters, and so on until the middle is reached
Example: 'Hello World' becomes 'dlroW olleH'
Static is used in public static void main to allow the method to be called without creating an instance of the class.
Static methods belong to the class and not to any instance of the class.
The main method is the entry point of a Java program and needs to be called without creating an object of the class.
The static keyword allows the main method to be called directly from the class, without creating an instance of the c...
Abstract classes, interfaces, and enums provide abstraction and modularity in Java.
Abstract classes provide a partial implementation of a class and cannot be instantiated.
Interfaces define a set of methods that a class must implement and can be used for multiple inheritance.
Enums provide a set of named constants.
All three are used for abstraction and modularity in Java.
Abstract classes and interfaces are used for polym...
Object-oriented software engineering is a framework for designing and developing software using objects.
Object-oriented software engineering is a methodology for designing and developing software using objects.
It involves creating classes and objects that encapsulate data and behavior.
Frameworks are pre-built structures that provide a foundation for building software applications.
Frameworks can include libraries, APIs,...
Java is an object-oriented language with features like inheritance, encapsulation, and polymorphism.
Inheritance allows classes to inherit properties and methods from other classes.
Encapsulation hides the implementation details of a class from other classes.
Polymorphism allows objects to take on multiple forms or behaviors.
Java also supports abstraction, interfaces, and exception handling.
Example: class Car extends Vehi...
Normalization is a process of organizing data in a database to reduce redundancy and dependency.
Normalization is used to eliminate data redundancy and improve data integrity.
It involves dividing a database into two or more tables and defining relationships between them.
There are different levels of normalization, such as first normal form (1NF), second normal form (2NF), and so on.
Normalization helps in efficient data ...
ADBMS stands for Advanced Database Management System which is an extension of DBMS with additional features.
ADBMS has advanced features like data mining, data warehousing, and online analytical processing.
ADBMS is used for handling large and complex data sets.
DBMS is a basic system for managing data and is used for small and simple data sets.
DBMS does not have advanced features like ADBMS.
Examples of ADBMS are Oracle, ...
I am a software engineer with 5 years of experience in developing web applications.
Proficient in programming languages such as Java, Python, and JavaScript
Experience in developing RESTful APIs and microservices
Familiarity with front-end technologies such as HTML, CSS, and React
Strong understanding of database management systems like MySQL and MongoDB
Experience in Agile development methodologies
I want to gain practical experience and contribute to the industry while also learning on the job.
I believe that hands-on experience is invaluable in the software engineering field
I am eager to apply my skills and knowledge to real-world projects
I am excited to work with a team and learn from experienced professionals
I am not currently pursuing post-graduation as I feel that gaining industry experience is more importan...
I would leverage my Java skills to quickly learn .NET and demonstrate my adaptability and problem-solving abilities.
Identify transferable skills: Both Java and .NET share object-oriented principles, making it easier to adapt.
Engage in self-study: Utilize online resources like Microsoft Learn or Pluralsight to gain .NET knowledge.
Build a small project: Create a simple application using .NET to showcase my ability to lea...
I applied via Naukri.com and was interviewed before May 2018. There were 5 interview rounds.
I appeared for an interview in Sep 2019.
I applied via Recruitment Consultant and was interviewed before Jan 2020. There were 5 interview rounds.
I am proficient in Java, Python, and C++. I have 2 years of experience in software development. I have excellent communication skills for client interaction.
Proficient in Java, Python, and C++
2 years of software development experience
Excellent communication skills for client interaction
I applied via LinkedIn and was interviewed before Jun 2020. There were 3 interview rounds.
I applied via first naukari and was interviewed before Oct 2020. There were 4 interview rounds.
To find the shortest path in a graph stored in SQL, use algorithms like Dijkstra's or A* with SQL queries for traversal.
Use Dijkstra's algorithm for weighted graphs to find the shortest path efficiently.
For unweighted graphs, consider using Breadth-First Search (BFS).
Store graph edges in a table with columns for source, destination, and weight.
Example SQL query: SELECT * FROM edges WHERE source = 'A' AND destination = ...
I appeared for an interview before Nov 2020.
based on 1 interview experience
Technical Analyst
251
salaries
| ₹10.4 L/yr - ₹18 L/yr |
Associate Analyst
195
salaries
| ₹2.8 L/yr - ₹7 L/yr |
Senior Associate Analyst
184
salaries
| ₹3.5 L/yr - ₹9.5 L/yr |
Senior Technical Analyst
140
salaries
| ₹17.2 L/yr - ₹31 L/yr |
Lead Specialist
119
salaries
| ₹19.3 L/yr - ₹34 L/yr |
Xoriant
Photon Interactive
CitiusTech
Iris Software