Filter interviews by
I applied via Recruitment Consulltant and was interviewed in Apr 2024. There was 1 interview round.
I applied via Company Website and was interviewed before May 2023. There was 1 interview round.
I applied via Naukri.com and was interviewed in Sep 2021. There were 3 interview rounds.
Top trending discussions
I was interviewed in Feb 2025.
If you're asked, "Can you provide details for the assessment?", the answer depends on the context.
For a Job Interview Assessment at Wipro:
"The assessment typically includes sections on aptitude (quantitative, logical reasoning, verbal ability), coding (for technical roles), and sometimes an essay or business communication test. The coding section usually involves problem-solving in languages like Python, Java, or C++. The difficulty level varies based on the role, and candidates are evaluated on accuracy, efficiency, and problem-solving skills."
For an Employee Performance Assessment:
"The assessment process at Wipro evaluates employees based on key performance indicators (KPIs), project contributions, skill development, and feedback from peers and managers. It helps in career growth, identifying training needs, and aligning with organizational goals."
If you need specific details about an assessment you are preparing for, let me know!
If you're asked, "Details of the coding?" in the context of a Wipro assessment or interview, here’s a structured response:
For Wipro’s Hiring Assessment (Elite NTH, Turbo, etc.):
"The coding section typically includes two to three problems that test algorithmic thinking, data structures, and problem-solving skills. The difficulty ranges from easy to medium-hard, covering topics such as arrays, strings, recursion, dynamic programming, and sorting algorithms. Candidates are expected to write optimized and error-free code in languages like Python, Java, C, or C++. The evaluation is based on correctness, efficiency, and execution time."
For Wipro’s Internal Coding Assessments or Training:
"Wipro conducts periodic coding assessments to upskill employees. These may include competitive programming challenges, hackathons, and hands-on projects covering real-world problem-solving, automation, and software development best practices."
Would you like specific coding questions or topics to prepare for?
The Aptitude Test in Wipro's hiring process assesses a candidate's problem-solving abilities, logical reasoning, and numerical proficiency. While specific answers depend on the given test, the assessment typically includes:
1. Quantitative Aptitude:
Topics: Arithmetic (percentages, profit & loss, time & work), algebra, number series, and probability.
Approach: Focus on accuracy and time management, as these sections often have a time limit.
2. Logical Reasoning:
Topics: Patterns, seating arrangements, syllogisms, blood relations, and data interpretation.
Approach: Use logical deduction and elimination techniques to enhance efficiency.
3. Verbal Ability:
Topics: Reading comprehension, sentence correction, synonyms/antonyms, and para jumbles.
Approach: Improve vocabulary and practice grammar rules for better accuracy.
As the specific test questions vary, preparation through mock tests and previous Wipro placement papers is advisable. Would you like recommendations for resources to practice?
I applied via Walk-in and was interviewed in Dec 2024. There were 2 interview rounds.
"Attitude text" typically refers to written content that conveys or reflects a specific attitude, perspective, or tone. This could involve motivational quotes, personality-focused descriptions, or writings that highlight one’s outlook on life or situations.
Here are some types of attitude texts:
1. Motivational Attitude Texts
These inspire positivity and resilience:
"Your attitude determines your direction. Stay positive and keep moving forward."
"A great attitude is like a magnet for success."
2. Positive Attitude Texts
These encourage optimism:
"A positive attitude can turn a storm into a sprinkle of rain."
"Focus on the good, and the good will get better."
3. Confident Attitude Texts
These reflect self-assurance:
"Confidence isn’t walking into a room thinking you’re better than everyone. It’s walking in not needing to compare yourself to anyone."
"I am who I am. Your approval isn’t needed."
4. Attitude for Life
These focus on life perspectives:
"Life is 10% what happens to you and 90% how you react to it."
"Your vibe attracts your tribe. Stay true to yourself."
5. Sassy/Edgy Attitude Texts
These have a bold or playful tone:
"I’m not bossy; I just know what you should be doing."
"Don’t confuse my personality with my attitude. My personality is who I am; my attitude depends on who you are."
If you're looking for a specific type of attitude text, let me know, and I can tailor it further!
Experienced security professional with a background in law enforcement and strong leadership skills.
Former law enforcement officer with 10+ years of experience
Proven track record of effectively managing security teams
Skilled in risk assessment and emergency response protocols
I heard about Company through a job search website.
I found the job posting on Indeed
I saw the job listing on LinkedIn
A friend recommended Company to me
Passion for ensuring safety and security in the workplace.
Strong background in security and law enforcement
Desire to lead and mentor a team of security personnel
Commitment to maintaining a safe environment for employees and visitors
Opportunity to implement and improve security protocols
Passion for preventing and responding to security threats
I prioritize tasks, stay organized, communicate effectively, and remain calm under pressure.
Prioritize tasks based on urgency and importance
Stay organized by creating a detailed action plan
Communicate effectively with team members and stakeholders
Remain calm by taking deep breaths and focusing on solutions
Delegate tasks when necessary to meet deadlines
During a security breach, I had to quickly assess the situation and make decisions to ensure the safety of the premises and individuals.
Received an alert about a possible break-in at the facility
Immediately coordinated with security team to secure the area and evacuate occupants
Utilized surveillance footage to track the intruders and provide information to law enforcement
Implemented emergency protocols to prevent furth...
posted on 4 Mar 2025
I was interviewed in Sep 2024.
Implementation of ordered and unordered map
Remove duplicate characters in a string and find the length of a substring
Reading the data from csv file
Challenges in automation include dynamic UI elements, data synchronization, and maintenance of test scripts.
Dynamic UI elements can be challenging to automate as they may change frequently.
Data synchronization between different systems can be difficult to achieve in automation.
Maintenance of test scripts can be time-consuming, especially when application changes frequently.
To read data and assert with db value in API automation, use API response to extract data and compare with database query result.
Extract data from API response using JSON parsing libraries like Gson or Jackson
Execute database query to retrieve expected value
Compare the extracted data with the database value using assertion libraries like TestNG or JUnit
posted on 7 Jan 2025
I applied via Approached by Company and was interviewed in Dec 2024. There were 3 interview rounds.
I was interviewed in Jan 2025.
The Java Virtual Machine (JVM) is an abstract computing machine that enables a computer to run Java programs.
JVM is platform-independent and converts Java bytecode into machine code.
It consists of class loader, runtime data areas, execution engine, and native method interface.
JVM memory is divided into method area, heap, stack, and PC register.
Examples of JVM implementations include Oracle HotSpot, OpenJ9, and GraalVM.
The default connection pooling in Spring Boot is HikariCP, which can be customized through properties in the application.properties file.
HikariCP is the default connection pooling library in Spring Boot, known for its high performance and low overhead.
To customize the connection pooling, you can modify properties like 'spring.datasource.hikari.*' in the application.properties file.
For example, you can set maximum pool ...
Best practices for optimizing a Spring Boot application
Use Spring Boot Actuator to monitor and manage application performance
Implement caching mechanisms like Spring Cache to reduce database calls
Optimize database queries and indexes for better performance
Use asynchronous processing with Spring's @Async annotation for non-blocking operations
Profile and analyze application performance using tools like VisualVM or JProfi
A heap dump is a snapshot of the memory usage of a Java application at a specific point in time.
Heap dumps can be generated using tools like jmap or VisualVM.
They provide detailed information about objects in memory, their sizes, and references.
Analyzing a heap dump can help identify memory leaks by pinpointing objects that are consuming excessive memory.
Common signs of memory leaks in a heap dump include a large numbe...
Diagonally iterate through and print elements of a 2D array of strings.
Use nested loops to iterate through rows and columns of the 2D array.
Calculate the diagonal elements by incrementing row and column indices together.
Print the elements as you iterate through the diagonal of the array.
based on 3 interviews
Interview experience
based on 37 reviews
Rating in categories
Staff Nurse
14
salaries
| ₹0.9 L/yr - ₹5 L/yr |
Pharmacist
5
salaries
| ₹2 L/yr - ₹5.7 L/yr |
Lab Technician
4
salaries
| ₹0.8 L/yr - ₹4.8 L/yr |
Technical Expert
4
salaries
| ₹2.4 L/yr - ₹5.9 L/yr |
Technician
4
salaries
| ₹1.4 L/yr - ₹3 L/yr |
Apollo Hospitals
Fortis Healthcare
Narayana Health
Manipal Hospitals