Upload Button Icon Add office photos

Filter interviews by

IVP (India) Interview Questions, Process, and Tips

Updated 16 Oct 2024

Top IVP (India) Interview Questions and Answers

View all 13 questions

IVP (India) Interview Experiences

Popular Designations

13 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

MCQ round on OOPS (java) , JS, C#, SQL(dbms)

Round 2 - Technical 

(4 Questions)

  • Q1. Two DSA questions , Happy Number (leetcode Q.202) , First Unique character in String (leetcode Q.387)
  • Q2. Polymorphism, Function Overloading & Overriding (code), Constructor, Access Specifier
  • Q3. Project (about nextjs, diff. b/w next & react, advantage of nextjs, SPA, some discussion about tailwind, miui (library), js)
  • Q4. DBMS query of second highest employee , find employeeid of manager whose employee name is 'something' (based on self join & only one table)
  • Ans. 

    Use self join in a DBMS query to find the employeeid of the manager whose employee name is 'something'.

    • Use a self join on the table to compare employee and manager names

    • Order the results by employeeid in descending order to get the second highest employee

    • Select the manager's employeeid where the employee name is 'something'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn OOPS concept in deep (very deep) , DBMS in deep (especially joins queries) , well prepare for DSA & your projects.

Skills evaluated in this interview

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

It was easy with no negative marking

Round 2 - Technical 

(1 Question)

  • Q1. Journal entries and finance questions
Round 3 - Technical 

(1 Question)

  • Q1. What is dirty price
  • Ans. 

    Dirty price is the price of a bond including accrued interest.

    • Dirty price includes both the current market price of the bond and the accrued interest since the last coupon payment.

    • It is also known as the full price or invoice price of a bond.

    • Dirty price is used to calculate the total cost of purchasing a bond.

    • For example, if a bond has a face value of $1,000 and the accrued interest is $20, the dirty price would be $1,

  • Answered by AI

Fund Accountant Interview Questions asked at other Companies

Q1. What was the journal entry for prepaid rent which has paid at beginning of the month for the whole year and entry at the end of month ?? Which is entry affects the networth??
View answer (5)
IVP (India) Interview Questions and Answers for Freshers
illustration image

Software Developer Interview Questions & Answers

user image MCA22 Gaurav Prakash

posted on 13 Aug 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. What is arrow function in JS
  • Ans. 

    Arrow functions are a concise way to write functions in JavaScript.

    • Arrow functions have a shorter syntax compared to regular functions.

    • They do not have their own 'this' keyword, and instead inherit 'this' from the parent scope.

    • Arrow functions are best suited for non-method functions, and cannot be used as constructors.

    • Example: const add = (a, b) => a + b;

  • Answered by AI
  • Q2. What is runtime polymerphism
  • Ans. 

    Runtime polymorphism is the ability of a subclass to override a method from its superclass during runtime.

    • Runtime polymorphism is achieved through method overriding in object-oriented programming.

    • It allows a subclass to provide a specific implementation of a method that is already defined in its superclass.

    • The actual method called is determined by the type of object at runtime.

    • Example: Animal class has a method 'makeSo...

  • Answered by AI
  • Q3. What is abstraction in oops
  • Ans. 

    Abstraction in OOP is the concept of hiding complex implementation details and showing only the necessary features to the outside world.

    • Abstraction allows us to focus on what an object does rather than how it does it

    • It helps in reducing complexity and improving maintainability of code

    • Example: A car is an abstraction of various components like engine, wheels, etc. Users interact with the car without needing to know the

  • Answered by AI
Round 3 - Coding Test 

DSA questions Reverse the linkedlist

Round 4 - One-on-one 

(2 Questions)

  • Q1. Explain your project
  • Q2. He asked two SQL queries

Skills evaluated in this interview

Top IVP (India) Software Developer Interview Questions and Answers

Q1. What is arrow function in JS
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all Resume tips
Round 2 - Aptitude Test 

Tricky questions from js, sql, c#

Round 3 - Technical 

(2 Questions)

  • Q1. Uses of B Tree
  • Ans. 

    B Trees are used for indexing in databases and file systems.

    • Used for efficient searching, insertion, and deletion operations in databases.

    • Helps in maintaining sorted data for quick retrieval.

    • Commonly used in file systems to store large amounts of data efficiently.

    • Each node in a B Tree can have multiple children, reducing the height of the tree.

  • Answered by AI
  • Q2. What is CTE in sql
  • Ans. 

    CTE stands for Common Table Expression in SQL, used to create temporary result sets that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

    • CTEs improve readability and maintainability of complex queries

    • CTEs can be recursive, allowing for hierarchical data querying

    • CTEs are defined using the WITH keyword followed by the CTE name and query

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Program to reverse a linked list
  • Ans. 

    Reverse a linked list by changing the next pointers of each node to point to the previous node.

    • Start with three pointers: current, prev, and next.

    • Iterate through the linked list, updating the next pointers to point to the previous node.

    • Update prev, current, and next pointers in each iteration until the end of the list is reached.

  • Answered by AI
  • Q2. Puzzles from geeksforgeeks
Round 5 - HR 

(1 Question)

  • Q1. General HR questions like difficulties, strength weakness etc.

Skills evaluated in this interview

Top IVP (India) Software Developer Interview Questions and Answers

Q1. What is arrow function in JS
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

IVP (India) interview questions for popular designations

 Software Developer

 (3)

 Qc Chemist Executive

 (1)

 Business Analyst

 (1)

 Plant Engineer

 (1)

 Production Officer

 (1)

 Java Developer Trainee

 (1)

 Fund Accountant

 (1)

 Area Sales Manager

 (1)

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Assignment 

Only DSa and aptitude was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are lucky, you will be selected.
dene wala toh bhagwan hi hota h.

Top IVP (India) Software Developer Interview Questions and Answers

Q1. What is arrow function in JS
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Get interview-ready with Top IVP (India) Interview Questions

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

All cod sample testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Pricoution of hards chemical

Jobs at IVP (India)

View all
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. What reactor bolier chilling pump (types of pump)
  • Ans. 

    Reactor boiler chilling pumps include centrifugal pumps, positive displacement pumps, and axial flow pumps.

    • Centrifugal pumps are commonly used for high flow and low-pressure applications.

    • Positive displacement pumps are used for high-pressure applications.

    • Axial flow pumps are used for high flow and low-pressure applications.

    • Examples of reactor boiler chilling pumps include end suction pumps, split case pumps, and vertic

  • Answered by AI
  • Q2. Working principal of chiller (cycle of chiller brine chilling)
  • Ans. 

    A chiller works by circulating a refrigerant through a cycle of evaporation, compression, condensation, and expansion.

    • The chiller uses a refrigerant to absorb heat from the water or air being chilled

    • The refrigerant evaporates at low pressure and absorbs heat

    • The refrigerant is then compressed, which increases its temperature

    • The compressed refrigerant then condenses, releasing the heat it absorbed

    • The refrigerant is then ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Knowledge of plant maintenance all equipment.

Plant Engineer Interview Questions asked at other Companies

Q1. Types of hydraulic, pneumatic, which types of machine and how many machines in yours organization,
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your current role?
  • Ans. 

    I am currently working as a Business Analyst at a technology company.

    • Analyzing business processes and requirements

    • Creating reports and dashboards for stakeholders

    • Collaborating with cross-functional teams to gather and analyze data

  • Answered by AI
  • Q2. About basic finance
Round 2 - Technical 

(2 Questions)

  • Q1. What is hedge fund?
  • Ans. 

    A hedge fund is an investment fund that pools capital from accredited individuals or institutional investors and invests in a variety of assets.

    • Hedge funds are typically only available to accredited investors due to their complex and risky nature.

    • They often use leverage and derivatives to amplify returns.

    • Hedge funds charge both a management fee and a performance fee based on the fund's profits.

    • They can invest in a wide...

  • Answered by AI
  • Q2. What are derivatives ?
  • Ans. 

    Derivatives are financial instruments whose value is derived from an underlying asset or group of assets.

    • Derivatives can be used for hedging, speculation, or arbitrage.

    • Common types of derivatives include options, futures, forwards, and swaps.

    • Derivatives allow investors to take positions on the price movements of assets without owning the assets themselves.

    • They are often used to manage risk in financial markets.

    • Derivati...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why do you wan to change?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for professional growth and development

    • Interest in exploring new industries or sectors

    • Seeking a more collaborative work environment

    • Opportunity to work on more impactful projects

    • Desire for better work-life balance

  • Answered by AI
  • Q2. Salary discussion

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Work experience, location,salary details, background verification etc
Round 2 - Technical 

(1 Question)

  • Q1. About daily routine tests, instruments handling and calibration, molarity,normality ,boiling point of solvents,Reactions, titration etc...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, go with formal wear, say what things u know properly...

Executive Quality Control Interview Questions asked at other Companies

Q1. How many weights are the in a balance calibration weight box.?
View answer (7)

Area Sales Manager Interview Questions & Answers

user image PRADEEP KR. GAUTAM

posted on 21 Feb 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There were 4 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Work experience & decipline with team.
Round 2 - Technical 

(1 Question)

  • Q1. Market knowledge & Market research
Round 3 - One-on-one 

(1 Question)

  • Q1. Ability to sale speciality product
  • Ans. 

    I have a proven track record of successfully selling specialty products by understanding customer needs and providing tailored solutions.

    • Identify target market for specialty product

    • Understand unique selling points of the product

    • Tailor sales pitch to highlight benefits for customers

    • Provide excellent customer service to build trust and loyalty

    • Track sales performance and adjust strategies as needed

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary & notice period

Area Sales Manager Interview Questions asked at other Companies

Q1. How to handling position and how to coverage rout and sales teams
View answer (29)
Contribute & help others!
anonymous
You can choose to be anonymous

IVP (India) Interview FAQs

How many rounds are there in IVP (India) interview?
IVP (India) interview process usually has 2-3 rounds. The most common rounds in the IVP (India) interview process are Technical, HR and Aptitude Test.
How to prepare for IVP (India) interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at IVP (India). The most common topics and skills that interviewers at IVP (India) expect are Linux, Agile, Auditing, Backend and Change Management.
What are the top questions asked in IVP (India) interview?

Some of the top questions asked at the IVP (India) interview -

  1. DBMS query of second highest employee , find employeeid of manager whose employ...read more
  2. What reactor bolier chilling pump (types of pu...read more
  3. Working principal of chiller (cycle of chiller brine chilli...read more

Recently Viewed

COMPANY BENEFITS

Appsquadz Software

No Benefits

PHOTOS

Appsquadz Software

No Photos

SALARIES

Appsquadz Software

No Salaries

JOBS

RC Plasto Tanks And Pipes

No Jobs

REVIEWS

Appsquadz Software

No Reviews

JOBS

Appsquadz Software

No Jobs

LIST OF COMPANIES

Appsquadz Software

Overview

PHOTOS

RC Plasto Tanks And Pipes

No Photos

INTERVIEWS

Fukoku

No Interviews

INTERVIEWS

Everest

No Interviews

Tell us how to improve this page.

IVP (India) Interview Process

based on 10 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
Bodal Chemicals Interview Questions
3.7
 • 12 Interviews
View all

IVP (India) Reviews and Ratings

based on 58 reviews

4.1/5

Rating in categories

3.5

Skill development

4.1

Work-life balance

3.4

Salary

4.2

Job security

3.8

Company culture

3.3

Promotions

3.8

Work satisfaction

Explore 58 Reviews and Ratings
Assistant Manager - IT

Mumbai

3-4 Yrs

Not Disclosed

Officer / Executive - Production

Mumbai

2-5 Yrs

Not Disclosed

Explore more jobs
Executive Production
43 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Production Officer
41 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager - Production
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare IVP (India) with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview