i
Wipro
Filter interviews by
I applied via Walk-in and was interviewed in Feb 2024. There were 2 interview rounds.
Basics maths and reasoning and they will give you one topic based on that you have write story with 200 words with the given time
OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.
OOPS focuses on creating objects that contain data in the form of fields (attributes) and code in the form of procedures (methods).
Encapsulation, inheritance, and polymorphism are key principles of OOPS.
Encapsulation refers to the bundling of data with the methods that operate on that data.
Inheritance allows...
A class is a blueprint for creating objects in object-oriented programming, while a variable is a container for storing data.
A class defines the properties and behaviors of objects, while a variable holds a value that can be changed or manipulated.
Classes can be used to create multiple instances of objects with the same properties and behaviors.
Variables can be of different data types such as int, string, boolean, etc.
...
println adds a new line after printing, while print does not
println adds a new line character at the end of the output
print does not add a new line character, so the next output will be on the same line
Example: println('Hello') will print 'Hello' on a new line, while print('Hello') will print 'Hello' on the same line
I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.
Time vs money, time time time
Dsa, python sql etl ssis
A database is a structured collection of data that is organized in a way that allows for easy access, management, and retrieval.
A database typically consists of tables, which store data in rows and columns.
It uses a query language, such as SQL, to retrieve and manipulate data.
Examples of databases include MySQL, Oracle, and MongoDB.
A database is a structured collection of data that is organized in a way that allows for easy access, management, and retrieval.
A database is used to store and organize large amounts of data.
It allows for efficient data retrieval and manipulation.
Common types of databases include relational databases (e.g. MySQL, Oracle) and NoSQL databases (e.g. MongoDB).
What people are saying about Wipro
I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.
I am a dedicated and experienced professional with a strong background in project management and team leadership.
Over 8 years of experience in project management
Proven track record of successfully leading cross-functional teams
Strong communication and interpersonal skills
Proficient in budget management and resource allocation
Certified Project Management Professional (PMP)
I will discuss the impact of artificial intelligence on the future of work.
AI is expected to automate routine tasks, leading to job displacement in some industries.
AI can also create new job opportunities in fields like data science and machine learning.
There are concerns about the ethical implications of AI in the workplace, such as bias in algorithms.
Companies are investing in upskilling their workforce to adapt to t...
Wipro interview questions for popular designations
I applied via Approached by Company and was interviewed in Dec 2023. There were 2 interview rounds.
Professional lighting business involves providing high-quality lighting solutions for various industries and events.
Understanding of different types of lighting fixtures and their applications
Knowledge of lighting design principles and techniques
Ability to create customized lighting solutions for clients
Familiarity with the latest lighting technologies and trends
Experience in managing lighting projects and teams
Strong ...
There are four main types of Performance Testing: Load Testing, Stress Testing, Endurance Testing, and Spike Testing.
Load Testing: Testing the system under normal and peak load conditions to ensure it can handle expected user traffic.
Stress Testing: Testing the system beyond its normal capacity to identify breaking points.
Endurance Testing: Testing the system under sustained load to ensure it can handle prolonged use.
S...
I would explain to the client the importance of performance testing in ensuring the project's success and meeting user expectations.
Explain the benefits of performance testing in identifying and resolving performance issues before they impact end users
Provide examples of how performance testing can help optimize application performance and scalability
Highlight the risks of not conducting performance testing, such as po...
OOPs (Object-Oriented Programming) concept is a programming paradigm based on the concept of objects, which can contain data and code.
OOPs focuses on creating reusable code and organizing it into objects
Key principles of OOPs include Inheritance, Encapsulation, Polymorphism, and Abstraction
Examples of OOPs languages include Java, C++, and Python
Implicit wait is used to tell the WebDriver to wait for a certain amount of time before throwing a No Such Element Exception, while explicit wait is used to wait for a certain condition to occur before proceeding further.
Implicit wait is set globally for the WebDriver and is applied to all elements, while explicit wait is applied only to specific elements.
Implicit wait is defined once and is used throughout the entire ...
Thry gave us some aptitude questions to crack
There was a topic which was given by HR we need to discuss
I have a strong technical background, problem-solving skills, and a passion for learning and growing in the field of software engineering.
I have a Bachelor's degree in Computer Science and X years of experience in software development.
I am proficient in multiple programming languages such as Java, Python, and JavaScript.
I have a track record of successfully delivering high-quality projects on time and within budget.
I a...
I applied via Job Portal and was interviewed in Nov 2023. There were 3 interview rounds.
Generate and print a random IP address.
Use the random module to generate random numbers for each octet of the IP address.
Ensure that the generated IP address is valid by checking that each octet is within the range of 0-255.
Join the octets together with periods to form the complete IP address.
Print the generated IP address.
The input is checked for order and the result is printed as true or false.
Check if the input is ordered by comparing opening and closing brackets
Use a stack to keep track of opening brackets
If a closing bracket is encountered, pop the top element from the stack and check if it matches the closing bracket
If the stack is empty at the end, the input is ordered
The code snippet prints the reverse of a given string using a for loop.
Initialize an empty string to store the reversed string.
Iterate through each character in the original string using a for loop.
Append each character to the beginning of the reversed string.
Print the reversed string.
A decorator is a design pattern in Python that allows a user to add new functionality to an existing object or function.
Decorators are denoted by the @ symbol followed by the name of the decorator function.
They are used to modify the behavior of the decorated object or function without directly changing its source code.
Decorators can be used for adding logging, timing, caching, authentication, and other cross-cutting c...
Automated the testing of a web application by creating test scripts using Python and Selenium.
Developed automated test scripts using Python and Selenium
Executed test scripts to validate the functionality of a web application
Generated test reports and identified defects for further investigation
Improved test efficiency and reduced manual effort by automating repetitive tasks
A dict in Python is an unordered collection of key-value pairs.
Dicts are enclosed in curly braces {}
Each key-value pair is separated by a colon :
Keys must be unique and immutable (strings, numbers, or tuples)
Values can be of any type and can be duplicated
Dicts are mutable and can be modified by adding, updating, or deleting key-value pairs
Web application testing is the process of evaluating the functionality, usability, and security of a web application.
It involves testing the application's features, such as forms, navigation, and user interactions.
It also includes checking for compatibility across different browsers and devices.
Security testing is crucial to identify vulnerabilities and protect against attacks.
Performance testing ensures the applicatio...
Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.
Inheritance allows code reuse and promotes modularity.
The class that is being inherited from is called the parent class or base class.
The class that inherits from the parent class is called the child class or derived class.
The child class can access all the public and protected members of the paren...
Lists and tuples are both sequence data types in Python, but they have some key differences.
Lists are mutable, meaning their elements can be changed, added, or removed.
Tuples are immutable, meaning their elements cannot be changed once defined.
Lists use square brackets [], while tuples use parentheses ().
Lists are typically used for collections of similar items, while tuples are used for heterogeneous data.
Lists have m...
I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.
Communication with all group numbers
AWS Solution architecture Route 53
The duration of Wipro interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 910 interviews
Interview experience
based on 52.2k reviews
Rating in categories
Hyderabad / Secunderabad,
Bangalore / Bengaluru
7-12 Yrs
Not Disclosed
Project Engineer
32.7k
salaries
| ₹1.8 L/yr - ₹8.3 L/yr |
Senior Software Engineer
23.1k
salaries
| ₹5.8 L/yr - ₹23 L/yr |
Senior Associate
21.3k
salaries
| ₹0.9 L/yr - ₹5.5 L/yr |
Senior Project Engineer
20.4k
salaries
| ₹5 L/yr - ₹19.5 L/yr |
Technical Lead
18.7k
salaries
| ₹8.3 L/yr - ₹36.5 L/yr |
TCS
Infosys
Tesla
Amazon