i
Wipro
Filter interviews by
The Saga pattern manages distributed transactions by breaking them into smaller, manageable steps with compensating actions.
Saga pattern is used in microservices to handle long-running transactions.
It consists of a series of local transactions, each followed by a compensating transaction.
Example: In an e-commerce application, placing an order may involve inventory check, payment processing, and shipping.
If payment...
Sort an array of strings using the map function in JavaScript.
Use the map function to create a new array with the strings you want to sort.
Apply the sort method on the new array to sort the strings alphabetically.
Example: const sortedArray = array.map(str => str).sort();
The map function is not necessary for sorting but can be used for transformations before sorting.
The code's output depends on its logic and data structures used, which need to be analyzed for a precise answer.
Identify the programming language to understand syntax and semantics.
Check for any loops or conditional statements that affect output.
Examine variable initializations and data types for potential issues.
Consider edge cases that might alter expected results.
.NET Core is a cross-platform, open-source framework for building modern applications, supporting multiple languages and platforms.
.NET Core is designed for building cloud-based applications and microservices.
It supports multiple programming languages, including C#, F#, and Visual Basic.
Applications built with .NET Core can run on Windows, macOS, and Linux.
It includes a modular architecture, allowing developers to...
What people are saying about Wipro
MVC is a software architectural pattern that separates an application into three interconnected components: Model, View, and Controller.
Model: Represents the data and business logic (e.g., a database or data structure).
View: Displays the data to the user (e.g., HTML/CSS in web applications).
Controller: Handles user input and updates the Model and View accordingly (e.g., routing in web frameworks).
Example: In a web...
Use a subquery to find the second highest rank in a dataset.
Use a subquery to select the maximum rank from the dataset.
Then use another subquery to select the maximum rank that is less than the maximum rank found in the first subquery.
A simple program using modulo operator to determine if a number is odd or even.
Use the modulo operator (%) to check if the number divided by 2 leaves a remainder
If the remainder is 0, the number is even. If the remainder is 1, the number is odd
Example: num % 2 == 0 (even), num % 2 == 1 (odd)
Middleware is software that connects different applications or services, enabling them to communicate and manage data exchange.
Acts as a bridge between different software applications.
Facilitates communication and data management in distributed systems.
Examples include message brokers like RabbitMQ and API gateways.
Can provide services like authentication, logging, and transaction management.
Commonly used in web a...
Dependency Injection (DI) in ASP.NET Core is a design pattern used to achieve Inversion of Control (IoC) between classes and their dependencies.
DI promotes loose coupling by allowing classes to receive their dependencies from an external source rather than creating them internally.
ASP.NET Core has built-in support for DI, making it easy to register services in the Startup class using the ConfigureServices method.
E...
Threading is a programming technique that allows concurrent execution of code, improving performance and resource utilization.
Threading enables multiple threads to run in parallel, sharing the same memory space.
It is commonly used in applications that require multitasking, such as web servers and GUI applications.
Example: In a web server, one thread can handle incoming requests while another processes data.
Threadi...
I applied via Company Website and was interviewed in Dec 2024. There was 1 interview round.
Use a subquery to find the second highest rank in a dataset.
Use a subquery to select the maximum rank from the dataset.
Then use another subquery to select the maximum rank that is less than the maximum rank found in the first subquery.
A simple program using modulo operator to determine if a number is odd or even.
Use the modulo operator (%) to check if the number divided by 2 leaves a remainder
If the remainder is 0, the number is even. If the remainder is 1, the number is odd
Example: num % 2 == 0 (even), num % 2 == 1 (odd)
I applied via Job Portal and was interviewed in Nov 2024. There was 1 interview round.
Dependency Injection (DI) in ASP.NET Core is a design pattern used to achieve Inversion of Control (IoC) between classes and their dependencies.
DI promotes loose coupling by allowing classes to receive their dependencies from an external source rather than creating them internally.
ASP.NET Core has built-in support for DI, making it easy to register services in the Startup class using the ConfigureServices method.
Exampl...
Middleware is software that connects different applications or services, enabling them to communicate and manage data exchange.
Acts as a bridge between different software applications.
Facilitates communication and data management in distributed systems.
Examples include message brokers like RabbitMQ and API gateways.
Can provide services like authentication, logging, and transaction management.
Commonly used in web applic...
Threading is a programming technique that allows concurrent execution of code, improving performance and resource utilization.
Threading enables multiple threads to run in parallel, sharing the same memory space.
It is commonly used in applications that require multitasking, such as web servers and GUI applications.
Example: In a web server, one thread can handle incoming requests while another processes data.
Threading ca...
I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.
You can upload a file using Selenium WebDriver by sending the file path to the file input element.
Locate the file input element on the webpage using WebDriver
Use the sendKeys() method to send the file path to the file input element
Ensure the file path is accessible from the machine running the test
To enable a disabled textbox, set the 'disabled' attribute to false.
Find the textbox element using its ID or class
Set the 'disabled' attribute to false using JavaScript
Selenium automation testing
I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.
Basic java MCQ questions was asked
Yes, static methods can be overridden in Java using the concept of method hiding.
Static methods can be hidden in subclasses by declaring a static method with the same signature as the one in the superclass.
The method in the subclass is said to hide the method in the superclass, but it is not truly overridden as in the case of instance methods.
Example: public class Parent { public static void display() { S...
Hash map is a data structure that stores key-value pairs and uses a hash function to map keys to their corresponding values in an array.
Hash map uses an array to store key-value pairs.
A hash function is used to determine the index of the array where a key-value pair will be stored.
Collision resolution techniques like chaining or open addressing are used to handle cases where multiple keys map to the same index.
Hash map...
I appeared for an interview in May 2025, where I was asked the following questions.
The Saga pattern manages distributed transactions by breaking them into smaller, manageable steps with compensating actions.
Saga pattern is used in microservices to handle long-running transactions.
It consists of a series of local transactions, each followed by a compensating transaction.
Example: In an e-commerce application, placing an order may involve inventory check, payment processing, and shipping.
If payment fail...
The Circuit Breaker pattern prevents system failure by stopping requests to a failing service temporarily.
Monitors service calls and tracks failures.
Opens the circuit to prevent further calls when failures exceed a threshold.
After a timeout, it allows a limited number of test calls to check if the service is back.
Example: In a payment processing microservice, if the payment gateway fails repeatedly, the circuit breaker...
FLEXCUBE is a core banking software used by financial institutions for various parameters and behaviors.
FLEXCUBE is a comprehensive core banking software solution provided by Oracle.
It allows financial institutions to manage various banking operations such as customer accounts, loans, and deposits.
FLEXCUBE parameters include configuration settings for different modules like retail banking, corporate banking, and treasu...
I applied via Walk-in and was interviewed in Jul 2024. There was 1 interview round.
CSS code to change button color when clicked
Use :active pseudo-class to style the button when clicked
Set the desired color using the background-color property
Example: button:active { background-color: red; }
Use jQuery to remove the first element in a div
Use the :first-child selector to target the first element in the div
Use the remove() method to delete the selected element
I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.
Aggregation is a 'has-a' relationship where one object contains another object, while composition is a stronger form of aggregation where the child object cannot exist without the parent object.
Aggregation is a weaker relationship where the child object can exist independently of the parent object.
Composition is a stronger relationship where the child object is part of the parent object and cannot exist without it.
Aggr...
Find the highest string value from an array of strings based on lexicographical order.
Use Java Streams to sort the array of strings: `Arrays.stream(array).sorted().findFirst().get()`.
Example: For input `['apple', 'banana', 'cherry']`, the highest value is `cherry`.
Consider edge cases like empty arrays: `[]` should return an appropriate message or null.
Use `Comparator.reverseOrder()` for descending order if needed.
The duration of Wipro Senior Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 128 interview experiences
Difficulty level
Duration
based on 1.8k reviews
Rating in categories
Project Engineer
33.3k
salaries
| ₹3.2 L/yr - ₹7.3 L/yr |
Senior Software Engineer
23.2k
salaries
| ₹6.2 L/yr - ₹19 L/yr |
Senior Associate
21.8k
salaries
| ₹1.8 L/yr - ₹5.5 L/yr |
Technical Lead
20.1k
salaries
| ₹16.6 L/yr - ₹30 L/yr |
Senior Project Engineer
18.7k
salaries
| ₹6.4 L/yr - ₹18.4 L/yr |
TCS
Infosys
Tesla
Amazon