i
Wipro
Filter interviews by
Mounting Databricks with a storage account allows seamless data access and management within Azure Databricks environments.
Use Azure Blob Storage or Azure Data Lake Storage as the storage account.
Create a storage account in Azure and obtain the access key.
In Databricks, use the 'dbutils' library to mount the storage account.
Example: dbutils.fs.mount(source = 'wasbs://<container>@<storage_account>.blob....
Dbutils is a utility library in Databricks for managing files, secrets, and other resources in Azure environments.
Provides methods for file management, such as dbutils.fs.ls() to list files in a directory.
Enables access to secrets stored in Azure Key Vault using dbutils.secrets.get().
Facilitates notebook workflows with dbutils.notebook.run() to call other notebooks.
Supports managing libraries and clusters with dbu...
Union combines results from two queries, removing duplicates; Union All includes all results, retaining duplicates.
Union removes duplicate rows from the result set.
Union All retains all rows, including duplicates.
Example of Union: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;
Example of Union All: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;
Union may be slower due to duplicate rem...
Widgets in Databricks enhance interactivity in notebooks, allowing users to create dynamic visualizations and input controls.
Widgets allow users to create dropdowns, sliders, and text boxes for parameter inputs.
They enable dynamic visualization updates based on user input, enhancing data exploration.
For example, a dropdown widget can let users select a specific dataset to visualize.
Widgets can be used to filter da...
What people are saying about Wipro
Exception handling in Databricks ensures robust data processing by managing errors effectively during ETL operations.
Use try-except blocks to catch exceptions in Python code within Databricks notebooks.
Leverage the `dbutils.notebook.run` method to handle exceptions when calling other notebooks.
Implement logging to capture error details for debugging purposes.
Use `spark.sql` with exception handling to manage SQL qu...
Handling dynamic dates and dropdowns in Selenium requires specific strategies for element interaction and date selection.
Use WebDriverWait to handle dynamic elements: `WebDriverWait(driver, 10).until(ExpectedConditions.visibilityOfElementLocated(By.id('calendarId')))`.
For calendar selection, identify the month and year dropdowns and select the desired values using Select class: `Select month = new Select(driver.fi...
ITIL processes help manage IT services effectively, ensuring quality and efficiency in service delivery.
ITIL stands for Information Technology Infrastructure Library, a set of practices for IT service management.
Key processes include Incident Management, Change Management, and Problem Management.
Incident Management focuses on restoring normal service operation as quickly as possible.
Change Management ensures that ...
A snapshot is a point-in-time copy of data, often used for backup and recovery in systems and virtual environments.
Snapshots capture the state of a system at a specific moment.
They are commonly used in virtual machines (e.g., VMware, Hyper-V).
Snapshots allow for quick recovery from failures or data corruption.
Example: A snapshot can be taken before a major software update.
They can consume significant storage space...
Changing the hostname involves modifying system files and using commands to ensure the new name is recognized by the system.
For Linux, use the command: 'hostnamectl set-hostname new-hostname'.
Edit the '/etc/hostname' file to reflect the new hostname.
Update the '/etc/hosts' file to map the new hostname to the IP address.
Reboot the system or use 'systemctl restart systemd-hostnamed' to apply changes.
For Windows, use...
A clone is an exact copy of an object, system, or data, often used in computing for backup or replication purposes.
In computing, cloning can refer to duplicating a hard drive or server setup.
Virtual machines can be cloned to create identical environments for testing.
Database cloning allows for creating a copy of a database for development or backup.
In genetics, cloning refers to creating a genetically identical or...
I appeared for an interview in Jun 2025, where I was asked the following questions.
Dynamic talent acquisition professional with a passion for connecting talent with opportunity, eager to contribute to your team.
Background in HR and recruitment, with 3 years of experience in sourcing and interviewing candidates.
Strong communication skills, demonstrated by successfully conducting over 100 interviews in my previous role.
Proficient in using ATS systems and social media for talent sourcing, leading to a 3...
I navigated conflicts, tight deadlines, failures, and prioritization effectively in my previous roles.
Conflict with a teammate: We disagreed on project direction; I initiated a discussion to understand their perspective and we reached a compromise.
Tight deadline: Managed a project with a 24-hour turnaround by breaking tasks into smaller parts and collaborating with team members.
Failure: I missed a project deadline due ...
Wipro commits to returning 70% of net income to shareholders, with plans for a bonus issue and interim dividend.
Wipro increased shareholder payout commitment from 45-50% to at least 70% of net income over three years.
A bonus issue of 1:1 is planned for Q2, meaning shareholders will receive one additional share for each share held.
An interim dividend of โน6 is set to be distributed in Q3, providing immediate returns to s...
Wipro faces share price pressure but shows confidence through capital allocation and tech investments, awaiting Q1 results for clarity.
Wipro's share price decline is influenced by TCS's quarterly results, reflecting broader sector challenges.
The management's increased capital allocation indicates a commitment to enhancing shareholder returns.
Investments in quantum computing and AI-driven services highlight Wipro's stra...
I applied via Naukri.com and was interviewed before Nov 2021.ย There was 0 interview round.
I appeared for an interview in Feb 2025.
A one-on-one interview is a personal discussion where candidates showcase their skills and experiences to potential employers.
Prepare a brief personal introduction, highlighting your background and key achievements. For example, 'I have 5 years of experience in digital marketing.'
Use the STAR method (Situation, Task, Action, Result) to structure your responses. For instance, 'In my last role, I increased sales by 20% b...
The coding test refers to coding practice and solving all questions during the interview.
Group discussions involve participants asking questions during an interview.
I have participated in several HR interviews, gaining insights into the process and enhancing my communication skills.
I have been interviewed by HR managers for various roles, which helped me understand their expectations.
During one interview, I was asked behavioral questions that required me to provide specific examples from my past experiences.
I learned the importance of researching the company beforehand, which allo...
An assignment refers to a task given to individuals, such as an assignment to complete during an interview.
The case study indicates that there were general knowledge questions included in the interview.
The term 'technical' refers to the specialized knowledge and systems that enabled the internet's development and functionality.
Technical aspects include protocols like TCP/IP, which govern data transmission.
The development of hardware such as routers and servers was crucial for internet infrastructure.
Programming languages like HTML and JavaScript were essential for creating web content.
Technical standards, such as tho...
Group activities enhance collaboration by building trust, improving communication, and fostering a sense of belonging among employees.
Encourages teamwork: Group activities require employees to work together towards a common goal, enhancing their ability to collaborate effectively.
Builds trust: Engaging in shared experiences helps employees develop trust in one another, which is crucial for open communication.
Enhances c...
The assignment was given during the interview.
A coding test typically consists of questions that are asked during an interview.
A one-on-one interview round involves a direct conversation between a candidate and an interviewer, focusing on skills and fit.
Personalized interaction: The candidate receives undivided attention from the interviewer.
In-depth assessment: Allows for deeper exploration of the candidate's qualifications and experiences.
Tailored questions: Interviewers can ask specific questions based on the candidate's resume.
Example: A c...
What does the assignment mean for people in the interview?
A case study provides insights into the expectations during an interview.
I appeared for an interview in May 2025, where I was asked the following questions.
This program identifies and returns even numbers from a given array of integers.
Define an array of integers, e.g., [1, 2, 3, 4, 5, 6].
Use a loop to iterate through each element of the array.
Check if each number is even using the modulus operator (%).
If a number is even (i.e., number % 2 == 0), add it to a result array.
Return or print the result array containing only even numbers.
Example: For input [1, 2, 3, 4, 5, 6], t...
ESG stands for Environmental, Social, and Governance, assessing a company's responsible practices.
Environmental: Focuses on sustainability, e.g., reducing carbon footprint and waste management.
Social: Involves employee welfare and community engagement, e.g., diversity initiatives and charitable contributions.
Governance: Pertains to corporate ethics and transparency, e.g., board diversity and anti-corruption policies.
ESG stands for Environmental, Social, and Governance, focusing on sustainable and ethical business practices.
Environmental: Assessing carbon emissions and energy consumption.
Social: Promoting diversity and ensuring employee rights.
Governance: Upholding ethical leadership and transparency.
This program identifies and returns all even numbers from a given array of integers.
Iterate through each number in the array.
Check if the number is even using the modulus operator (%).
If even, append it to the result list.
Return the list of even numbers.
Example: For array [1, 2, 3, 4], output will be [2, 4].
I appeared for an interview in Jun 2025, where I was asked the following questions.
Wipro faces share price pressure but shows confidence through capital allocation and tech investments in AI and quantum computing.
Wipro's share price decline is influenced by TCS's quarterly results, indicating sector-wide challenges.
Increased capital allocation signals management's confidence in future growth and commitment to enhancing shareholder value.
Investments in quantum computing and AI-driven services position...
Wipro's capital return policy reflects strong financial health and commitment to shareholder value through bonus shares and dividends.
Increased capital return indicates Wipro's confidence in its financial stability and future growth prospects.
Bonus shares can enhance liquidity and attract more investors, as seen in companies like Infosys that have successfully implemented similar strategies.
Interim dividends provide im...
I appeared for an interview in Apr 2025, where I was asked the following questions.
I appeared for an interview 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?
Wipro is a leading global information technology, consulting, and business process services company based in India.
Founded in 1945, originally as a vegetable oil manufacturer.
Offers services in IT consulting, application development, and business process outsourcing.
Operates in over 50 countries, serving clients across various industries.
Known for its commitment to sustainability and corporate social responsibility.
Par...
I want to work at Wipro to grow my skills in a dynamic environment and contribute to innovative projects that impact the industry.
Wipro's commitment to innovation aligns with my passion for technology and continuous learning.
The opportunity to work on diverse projects will enhance my problem-solving skills and adaptability.
Wipro's strong emphasis on sustainability and corporate responsibility resonates with my values.
I...
I excel in problem-solving and collaboration, but I sometimes struggle with time management under tight deadlines.
Strength: Strong problem-solving skills - I enjoy tackling complex coding challenges, like optimizing a slow-loading webpage.
Strength: Effective collaboration - I thrive in team environments, having successfully worked on group projects using Git for version control.
Weakness: Time management - I occasionall...
In two years, I envision myself as a skilled Frontend Developer, contributing to impactful projects and growing my expertise.
I aim to deepen my knowledge of JavaScript frameworks like React or Vue.js, contributing to complex projects.
I plan to take on more responsibilities, possibly leading small teams or mentoring interns.
I hope to work on user-centric designs, enhancing my skills in UX/UI principles.
I aspire to stay ...
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 appeared for an interview in Jun 2025, where I was asked the following questions.
For example, a โน10 LPA CTC could mean an in-hand salary of โน70,000โโน75,000 per month, depending on deductions and benefits.
โจ ๐ฃ๐ฟ๐ผ ๐ง๐ถ๐ฝ: Always request a detailed salary structure during negotiationsโitโs your roadmap to making informed decisions
๐๐ง๐ ๐๐ ๐๐ป-๐๐ฎ๐ป๐ฑ ๐ฆ๐ฎ๐น๐ฎ๐ฟ๐: ๐ง๐ต๐ฒ ๐ฅ๐ฒ๐ฎ๐น๐ถ๐๐ ๐๐ต๐ฒ๐ฐ๐ธ ๐๐๐ฒ๐ฟ๐ ๐ฃ๐ฟ๐ผ๐ณ๐ฒ๐๐๐ถ๐ผ๐ป๐ฎ๐น ๐ก๐ฒ๐ฒ๐ฑ๐!
Weโve all been thereโexcitedly discussing job offers and hearing about the impressive CTC (Cost to Company). But when payday arrives, you wonder
Some of the top questions asked at the Wipro interview -
The duration of Wipro interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 5k interview experiences
Difficulty level
Duration
based on 58.1k reviews
Rating in categories
Project Engineer
33.3k
salaries
| โน3.2 L/yr - โน7.4 L/yr |
Senior Software Engineer
23.3k
salaries
| โน6.4 L/yr - โน19.2 L/yr |
Senior Associate
21.9k
salaries
| โน1.8 L/yr - โน5.5 L/yr |
Technical Lead
20.3k
salaries
| โน16.6 L/yr - โน30 L/yr |
Senior Project Engineer
18.6k
salaries
| โน6.4 L/yr - โน18.3 L/yr |
TCS
Infosys
Tesla
Amazon