i
Wipro
Filter interviews by
I applied via Recruitment Consulltant and was interviewed before Aug 2023. There were 3 interview rounds.
The .NET Framework is a software framework developed by Microsoft that provides a large library of pre-coded solutions to common programming problems.
Developed by Microsoft
Provides a large library of pre-coded solutions
Supports multiple programming languages
Used for building applications for Windows, web, mobile, and cloud
Consists of Common Language Runtime (CLR) and class library
LINQ stands for Language Integrated Query.
LINQ is a set of features introduced in .NET Framework that allows for querying data from different data sources using a uniform syntax.
LINQ can be used to query objects, databases, XML, and more.
LINQ provides a consistent model for working with data regardless of the data source.
Example: var query = from c in customers where c.City == 'London' select c;
Clustered index determines the physical order of data in a table, while non-clustered index does not.
Clustered index physically reorders the table data based on the indexed column
Non-clustered index creates a separate structure to store the index data
Clustered index is faster for retrieval but slower for insert and update operations
Non-clustered index is slower for retrieval but faster for insert and update operations
UNION combines the result sets of two or more SELECT statements, while UNION ALL does the same but includes duplicate rows.
UNION removes duplicate rows from the result set, while UNION ALL includes all rows
UNION is slower than UNION ALL because it performs a distinct operation
UNION requires that all SELECT statements have the same number of columns with compatible data types
Example: SELECT column1 FROM table1 UNION SEL...
Expected salary should be based on industry standards, experience, skills, and responsibilities of the role.
Research industry standards for the specific role and location
Consider your level of experience and skills
Factor in the responsibilities and expectations of the position
Be prepared to negotiate based on the company's budget and benefits package
I would join your company because of its reputation for innovation and growth opportunities.
Reputation for innovation in the industry
Opportunities for growth and advancement
Positive company culture and values
Exciting projects and challenges to work on
I applied via Referral and was interviewed before Feb 2022. There were 4 interview rounds.
Optimizing a React application involves reducing bundle size, improving rendering performance, and implementing code splitting.
Use code splitting to load only necessary code for each page
Minimize bundle size by removing unused dependencies and optimizing images
Use React.memo and shouldComponentUpdate to prevent unnecessary re-renders
Use lazy loading to defer loading of non-critical components
Use server-side rendering t...
Shadow DOM is a way to encapsulate the styling and behavior of a web component.
Shadow DOM allows for creating isolated DOM trees within a larger document.
It helps to prevent CSS conflicts and JavaScript collisions between different parts of a web page.
Shadow DOM can be used to create reusable web components that can be easily shared and used across different projects.
It is supported by all modern browsers including Chr
useMemo is used for memoization of a value, while useCallback is used for memoization of a function.
useMemo returns a memoized value, while useCallback returns a memoized function.
useMemo is used to optimize expensive computations, while useCallback is used to optimize expensive function creation.
useMemo takes a function and an array of dependencies, while useCallback takes a function and an array of dependencies and r...
A pure function is a function that always returns the same output for a given input and has no side effects.
Pure functions are deterministic and have no side effects.
They only depend on their input parameters and not on any external state.
Pure functions are easier to test and reason about than impure functions.
Examples of pure functions include mathematical functions like sin(x) and cos(x).
I applied via Recruitment Consulltant and was interviewed before May 2023. There were 2 interview rounds.
I applied via Recruitment Consultant and was interviewed in May 2021. There was 1 interview round.
I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.
I applied via Company Website and was interviewed in Nov 2024. There were 3 interview rounds.
Standard quantitative questions accompanied by logical reasoning and related topics.
OOP concepts include encapsulation, inheritance, polymorphism, and abstraction.
Encapsulation: Bundling data and methods that operate on the data into a single unit (class).
Inheritance: Allows a class to inherit properties and behavior from another class.
Polymorphism: Objects of different classes can be treated as objects of a common superclass.
Abstraction: Hides complex implementation details and only shows the necessa
React is a JavaScript library for building user interfaces.
React allows developers to create reusable UI components.
It uses a virtual DOM for efficient rendering.
React uses a declarative approach to define how the UI should look based on the application state.
It supports server-side rendering for improved performance.
React can be used with other libraries like Redux for state management.
I am a software engineer with a passion for coding and problem-solving. I come from a close-knit family with supportive parents and siblings.
Software engineer with coding and problem-solving skills
Close-knit family with supportive parents and siblings
My strengths include problem-solving and teamwork, while my weaknesses are time management and public speaking. I am addressing my weaknesses by taking time management courses and practicing public speaking.
Strengths: problem-solving, teamwork
Weaknesses: time management, public speaking
Addressing weaknesses: taking time management courses, practicing public speaking
The return statement in Java is used to explicitly return a value from a method.
The return statement is followed by the value that is to be returned from the method.
It can only be used within a method body.
Once a return statement is executed, the control is transferred back to the caller of the method.
Get set methods are used in object-oriented programming to retrieve and update the values of private variables.
Get methods are used to retrieve the value of a private variable.
Set methods are used to update the value of a private variable.
They are commonly used to ensure data encapsulation and control access to class variables.
Interface is a contract specifying methods that a class must implement, while abstract class can have both implemented and abstract methods.
Interface cannot have method implementations, while abstract class can have both implemented and abstract methods.
A class can implement multiple interfaces but can only extend one abstract class.
Interfaces are used to achieve multiple inheritance in Java.
Abstract classes can have c...
Implement a stack in Java using an array
Create an array to store the elements of the stack
Keep track of the top of the stack using an index variable
Implement push() to add elements to the stack
Implement pop() to remove elements from the stack
Example: String[] stackArray = new String[10];
HashMap is unordered and uses hashing to store key-value pairs, while TreeMap is ordered and uses a red-black tree to store key-value pairs.
HashMap uses hashing to store key-value pairs, allowing for O(1) time complexity for get and put operations.
TreeMap uses a red-black tree to store key-value pairs, maintaining order based on the keys.
HashMap does not guarantee any specific order of elements, while TreeMap maintains...
It was good . 3 question
It was hard, 5 questions
I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.
Interview questions for Software Engineer position covering OOPS concepts, exception handling, SOLID principles, Java 8 features, and Streams.
Abstraction in OOPS: Hiding implementation details. Example: Abstract class Shape with method draw().
Encapsulation in OOPS: Bundling data and methods that operate on the data. Example: Class Employee with private fields and public getters/setters.
Inheritance in OOPS: Reusing code...
The interview questions cover various topics related to Spring framework, REST vs SOAP, JPA repository, Feign client, circuit breaker, and Spring Security.
Spring Boot provides a simpler and faster way to set up and run Spring applications compared to traditional Spring.
Common annotations in Spring include @Controller, @Service, @Repository, @Autowired, @Component, @RequestMapping, @GetMapping, @PostMapping, @PutMapping...
based on 26 reviews
Rating in categories
Project Engineer
32.6k
salaries
| ₹1.8 L/yr - ₹8.3 L/yr |
Senior Software Engineer
23k
salaries
| ₹5.8 L/yr - ₹22.5 L/yr |
Senior Associate
21.2k
salaries
| ₹0.8 L/yr - ₹5.5 L/yr |
Senior Project Engineer
20.5k
salaries
| ₹5 L/yr - ₹19 L/yr |
Technical Lead
18.6k
salaries
| ₹8.3 L/yr - ₹36.5 L/yr |
TCS
Infosys
Tesla
Amazon