i
Wipro
Filter interviews by
Encapsulation and decapsulation are processes used in data communication to wrap and unwrap data packets.
Encapsulation involves adding headers and trailers to data packets.
Example: In TCP/IP, data is encapsulated into segments with TCP headers.
Decapsulation is the reverse process, removing headers and trailers.
Example: At the receiving end, TCP segments are decapsulated to retrieve original data.
Spanning Tree Protocol (STP) prevents loops in network topologies by creating a tree structure of active paths.
STP identifies and disables redundant paths to prevent loops.
It uses a root bridge to determine the best path for data transmission.
Ports are placed in different states: blocking, listening, learning, and forwarding.
Example: In a network with multiple switches, STP will block certain links to ensure a sin...
Python has various built-in data types, including numeric, sequence, mapping, set, and boolean types, each serving different purposes.
1. Numeric Types: Includes int (e.g., 5), float (e.g., 5.0), and complex (e.g., 3 + 4j).
2. Sequence Types: Includes list (e.g., [1, 2, 3]), tuple (e.g., (1, 2, 3)), and range (e.g., range(5)).
3. Mapping Type: The dictionary (e.g., {'key': 'value'}) stores key-value pairs.
4. Set Type...
Inheritance in Python allows a class to inherit attributes and methods from another class, promoting code reuse.
Inheritance enables a new class (child) to inherit properties and methods from an existing class (parent).
Syntax: class ChildClass(ParentClass):
Example: class Animal: def speak(self): return 'Animal sound'; class Dog(Animal): def speak(self): return 'Bark'.
Supports single and multiple inheritance, allowi...
What people are saying about Wipro
The find elements method returns a list of web elements matching a specified locator. Window handles return type is a set of strings representing unique identifiers for browser windows.
Find elements method returns a list of web elements matching a specified locator
Window handles return type is a set of strings representing unique identifiers for browser windows
Cucumber options are configuration settings used in Cucumber to customize test execution.
Cucumber options can be used to specify features, tags, formats, and more in the test execution
Examples include specifying tags to run specific scenarios, setting output formats for test reports, and defining feature files to run
Credit memo and demit memo are financial documents used in accounting to record adjustments to accounts receivable and accounts payable.
Credit memo is issued by a seller to a buyer to reduce the amount owed by the buyer for goods or services provided.
Demit memo is issued by a buyer to a seller to request a reduction in the amount owed due to issues like damaged goods or incorrect billing.
Both credit memo and demit...
P2P (Procure-to-Pay) is the process of requisitioning, purchasing, receiving, paying for, and accounting for goods and services in a business.
Requisitioning: Requesting goods or services needed by the business.
Purchasing: Finding suppliers, negotiating prices, and creating purchase orders.
Receiving: Accepting and inspecting the goods or services received.
Paying for: Processing invoices and making payments to suppl...
Implicit wait is set globally for all elements, while explicit wait is applied to specific elements only.
Implicit wait is set using 'driver.manage().timeouts().implicitlyWait()' method
Explicit wait is implemented using WebDriverWait class with ExpectedConditions
Implicit wait is applied globally for all elements, while explicit wait is applied to specific elements only
Implicit wait is used to wait for elements to l...
I possess extensive knowledge in software testing methodologies, tools, and best practices to ensure high-quality software delivery.
Proficient in various testing types: unit, integration, system, and acceptance testing.
Experience with automation tools like Selenium and JUnit for efficient test execution.
Strong understanding of Agile methodologies and participation in Scrum ceremonies.
Ability to write clear and con...
I applied via Approached by Company and was interviewed in Aug 2024.Β There was 1 interview round.
In my project, I have used Oops concepts like Inheritance, Polymorphism, Encapsulation, and Abstraction.
Inheritance: Reusing code and creating a hierarchy of classes.
Polymorphism: Ability to present the same interface for different data types.
Encapsulation: Bundling data and methods that operate on the data into a single unit.
Abstraction: Hiding the implementation details and showing only the necessary features.
The find elements method returns a list of web elements matching a specified locator. Window handles return type is a set of strings representing unique identifiers for browser windows.
Find elements method returns a list of web elements matching a specified locator
Window handles return type is a set of strings representing unique identifiers for browser windows
I appeared for an interview in Jan 2025, where I was asked the following questions.
Encapsulation and decapsulation are processes used in data communication to wrap and unwrap data packets.
Encapsulation involves adding headers and trailers to data packets.
Example: In TCP/IP, data is encapsulated into segments with TCP headers.
Decapsulation is the reverse process, removing headers and trailers.
Example: At the receiving end, TCP segments are decapsulated to retrieve original data.
Spanning Tree Protocol (STP) prevents loops in network topologies by creating a tree structure of active paths.
STP identifies and disables redundant paths to prevent loops.
It uses a root bridge to determine the best path for data transmission.
Ports are placed in different states: blocking, listening, learning, and forwarding.
Example: In a network with multiple switches, STP will block certain links to ensure a single a...
Inheritance in Python allows a class to inherit attributes and methods from another class, promoting code reuse.
Inheritance enables a new class (child) to inherit properties and methods from an existing class (parent).
Syntax: class ChildClass(ParentClass):
Example: class Animal: def speak(self): return 'Animal sound'; class Dog(Animal): def speak(self): return 'Bark'.
Supports single and multiple inheritance, allowing a ...
Python has various built-in data types, including numeric, sequence, mapping, set, and boolean types, each serving different purposes.
1. Numeric Types: Includes int (e.g., 5), float (e.g., 5.0), and complex (e.g., 3 + 4j).
2. Sequence Types: Includes list (e.g., [1, 2, 3]), tuple (e.g., (1, 2, 3)), and range (e.g., range(5)).
3. Mapping Type: The dictionary (e.g., {'key': 'value'}) stores key-value pairs.
4. Set Types: In...
I applied via Indeed and was interviewed in Dec 2023.Β There was 1 interview round.
P2P (Procure-to-Pay) is the process of requisitioning, purchasing, receiving, paying for, and accounting for goods and services in a business.
Requisitioning: Requesting goods or services needed by the business.
Purchasing: Finding suppliers, negotiating prices, and creating purchase orders.
Receiving: Accepting and inspecting the goods or services received.
Paying for: Processing invoices and making payments to suppliers.
...
Scenario based questions
I appeared for an interview in Jan 2023.
Reasoning,logical question will be there and communication based english subject also there
Its about the knowledge of subject
I possess extensive knowledge in software testing methodologies, tools, and best practices to ensure high-quality software delivery.
Proficient in various testing types: unit, integration, system, and acceptance testing.
Experience with automation tools like Selenium and JUnit for efficient test execution.
Strong understanding of Agile methodologies and participation in Scrum ceremonies.
Ability to write clear and concise ...
I applied via Approached by Company and was interviewed before Jun 2023.Β There were 2 interview rounds.
Implicit wait is set globally for all elements, while explicit wait is applied to specific elements only.
Implicit wait is set using 'driver.manage().timeouts().implicitlyWait()' method
Explicit wait is implemented using WebDriverWait class with ExpectedConditions
Implicit wait is applied globally for all elements, while explicit wait is applied to specific elements only
Implicit wait is used to wait for elements to load b...
Encapsulation is the concept of bundling data and methods that operate on the data into a single unit, preventing direct access to the data from outside the unit.
Encapsulation helps in data hiding and abstraction
It allows for better control over data access and modification
Access to the data is restricted to methods within the class
Getters and setters are commonly used to access and modify encapsulated data
I applied via Naukri.com and was interviewed before Aug 2023.Β There was 1 interview round.
Interview went for 90mins. Basic coding questions related to data types were asked.
Alongwith past work experience.
I applied via Naukri.com and was interviewed before May 2023.Β There were 2 interview rounds.
I applied via LinkedIn and was interviewed before May 2023.Β There was 1 interview round.
This program searches for a specific character in a given sentence and returns its occurrences.
Use a loop to iterate through each character in the string.
Utilize the charAt() method to access individual characters.
Count occurrences of the specified character.
Example: For the sentence 'Hello World', searching for 'o' should return 2.
A program to generate Fibonacci series.
Declare two variables to store the first two numbers of the series
Loop through the series and add the previous two numbers to get the next number
Print the series or store it in an array
The duration of Wipro Senior Test Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 17 interview experiences
Difficulty level
Duration
based on 417 reviews
Rating in categories
Project Engineer
33.6k
salaries
| βΉ3.2 L/yr - βΉ7.5 L/yr |
Senior Software Engineer
23.5k
salaries
| βΉ6.6 L/yr - βΉ19.5 L/yr |
Senior Associate
21.5k
salaries
| βΉ1.8 L/yr - βΉ5.7 L/yr |
Technical Lead
20.5k
salaries
| βΉ16.6 L/yr - βΉ30 L/yr |
Senior Project Engineer
18.5k
salaries
| βΉ6.5 L/yr - βΉ18.4 L/yr |
TCS
Infosys
Tesla
Amazon