Upload Button Icon Add office photos

Filter interviews by

IPF-Vikram Interview Questions and Answers for Experienced

Updated 17 Jun 2024

IPF-Vikram Interview Experiences for Experienced

2 interviews found

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

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About your experience
  • Q2. About core electrical

Maintenance Engineer Executive Interview Questions & Answers

user image Pratyush Manas

posted on 20 Sep 2022

I applied via Referral and was interviewed before Sep 2021. There were 3 interview rounds.

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 tips
Round 2 - HR 

(1 Question)

  • Q1. Interaction with me
Round 3 - Technical 

(2 Questions)

  • Q1. About my past experience with other companies.
  • Q2. Some technical questions related to utility and production lines.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2017. There were 6 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Salary discussion and negotiation
  • Q2. Java related questions were asked.
  • Q3. Selenium waits and some program
  • Q4. Asked about Collection Framework and different usecases
  • Q5. Different testing Methodologies where they checking code skills
  • Q6. Questions around different scenario based coding
  • Q7. Asked about project and work done with the experience
  • Q8. Given exam in some app where you need to write, speak and hear english senetences.

I applied via Company Website and was interviewed in Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Why Byjus ?
  • Q2. Why this post?
  • Q3. Money matters or development?
  • Q4. About my self
  • Q5. One scenario of session with parents how long you want to be a part of the company and why?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself., don't lie.
And be clam and be confident

Debt Manager- Collection manager Interview Questions & Answers

ICICI Bank user image Anonymous

posted on 9 May 2018

Interview Questionnaire 

5 Questions

  • Q1. Its all about your current and past job profile. never get nervous while you explaining your job profile because its only that which you have done already so no preparation require in that
  • Q2. Current and past experience job profile. Family bqck ground
  • Q3. Current job profile
  • Q4. Just for location of posting.
  • Q5. Salary package negotiation

Interview Preparation Tips

Round: Resume Shortlist
Experience: Write your current job profile in details with all your work duties and responsibilities.

Interview Preparation Tips

Round: Test
Experience: In verbal, paragraphs, grammatical questions etc were asked. Reasoning was quite simple when compared to verbal.Normal and easy Quantitative questions were asked.
Tips: Keep your cool all through the interview. Be precise and don't give the the impression that you are missing the emphasis on what you are speaking.
Duration: 80 minutes

Round: HR Interview
Experience: Interview was pretty cool. I was interviewed by an experienced person and he made me feel comfortable all through.Type of questions asked are like: Tell me about your extra curricular activities from your childhood, Tell me something about your leadership qualities. Situational questions were also asked which were simple.

College Name: NIT WARANGAL

Interview Questionnaire 

4 Questions

  • Q1. Reverese the pin code of your area using jaca
  • Ans. 

    Reverse the pin code of your area using Java.

    • Convert the pin code to a string.

    • Use the StringBuilder class to reverse the string.

    • Convert the reversed string back to an integer.

  • Answered by AI
  • Q2. Company jast asked about their company profile
  • Q3. About your project
  • Q4. About your hobbies

Interview Preparation Tips

Round: Technical Interview
Experience: i answered that question very well.They jast check your confident level.
Tips: Whatever you know jast confident about that

Round: HR Interview
Experience: It was nice experienced.Talking with HR people is somewhat difficult than TR people
Tips: go through your resume.Do the google search about the company for which u are giving interview

General Tips: Do not show any overconfidence.Be calm and humble
Skill Tips: Be aware of your programming language
Skills: Technical Questions
College Name: Vidyalankar Institute Of Technology
Motivation: for working in an competitave environment.
Funny Moments: in TR round they asked me about the travelling cost..

Skills evaluated in this interview

I was interviewed before May 2016.

Interview Questionnaire 

1 Question

  • Q1. Asked to describe myself n then am I flexible enough to work in chennai

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had submitted my resume in cognizant portal and it got shortlisted after which I got ? for aptitude round

Round: Test
Experience: Had questions on reasoning, puzzles, quantity,English language
Duration: 1 hour 30 minutes
Total Questions: 120

Round: Technical Interview
Experience: I was asked questions on the subject I am more comfortable..asked few sql queries and then asked about my technical skills mentioned in resume.. Also project I had worked on was asked to explain

Skills: SQL

I was interviewed before Jul 2016.

Interview Questionnaire 

2 Questions

  • Q1. Related to networking
  • Q2. Basic question about my self

Interview Preparation Tips

Round: Technical Interview
Experience: Very difficult this round but awesome
Tips: Basic knowledge our job related questions

Round: HR Interview
Experience: Very difficult this round but awesome
Tips: Basic knowledge our job related questions

Skills: Network Protocols

I was interviewed before Aug 2016.

Interview Questionnaire 

9 Questions

  • Q1. What is inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reusability and saves time and effort in writing new code.

    • The existing class is called the parent or base class, and the new class is called the child or derived class.

    • The child class inherits all the properties and methods of the parent class and can also add its ...

  • Answered by AI
  • Q2. What are different classes in Java?
  • Ans. 

    Different classes in Java are used to define objects and their behavior.

    • Classes are the building blocks of Java programs.

    • They define the properties and methods of objects.

    • Some commonly used classes in Java are String, Integer, ArrayList, etc.

    • Classes can be inherited to create new classes with additional features.

    • Java provides a rich set of predefined classes, and developers can create their own classes.

  • Answered by AI
  • Q3. What is inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows for code reuse and promotes a hierarchical organization of code.

    • The existing class is called the superclass or parent class, and the new class is called the subclass or child class.

    • The subclass inherits all the properties and methods of the superclass, and can also add ...

  • Answered by AI
  • Q4. What are different classes in Java?
  • Ans. 

    Java has four different classes: abstract, final, public and default.

    • Abstract class cannot be instantiated and is used as a base class for other classes

    • Final class cannot be inherited and is used to prevent further modification

    • Public class can be accessed from anywhere in the program

    • Default class can only be accessed within the same package

    • Example: public class MyClass {}

  • Answered by AI
  • Q5. How useful is it to create a class public and private in Java ? And which one to prefer for whom?
  • Ans. 

    Creating public and private classes in Java is useful for encapsulation and access control.

    • Creating a class as public allows it to be accessed from any other class.

    • Creating a class as private restricts its access to only within the same class.

    • Public classes are typically used for classes that need to be accessed by other classes or modules.

    • Private classes are typically used for helper classes or internal implementation...

  • Answered by AI
  • Q6. Write a program that contain 8 loops?
  • Ans. 

    A program with 8 loops

    • Loops can be of different types like for, while, do-while, foreach, etc.

    • The loops can be nested within each other to create complex logic.

    • The program can perform various operations within the loops like printing, calculating, etc.

  • Answered by AI
  • Q7. What is the biggest achievement till date?
  • Q8. Why do u wanna join HCl?
  • Ans. 

    I want to join HCl because of their strong reputation in the software industry and their focus on innovation and career growth opportunities.

    • HCl has a strong reputation in the software industry for delivering high-quality products and services.

    • They have a culture of innovation and encourage employees to think creatively and come up with new ideas.

    • HCl offers excellent career growth opportunities and invests in the profe...

  • Answered by AI
  • Q9. What was ur project in college?

Interview Preparation Tips

Round: Resume Shortlist
Experience: It was based on academics marks of MCA
(60%)

Round: Technical Interview
Experience: It was based on academics marks of MCA
(60%)

Round: Technical Interview
Experience: It was not an easy round but with proper preparation and knowledge it can be cracked

Skills evaluated in this interview

IPF-Vikram Interview FAQs

How many rounds are there in IPF-Vikram interview for experienced candidates?
IPF-Vikram interview process for experienced candidates usually has 2 rounds. The most common rounds in the IPF-Vikram interview process for experienced candidates are Technical, HR and Resume Shortlist.
What are the top questions asked in IPF-Vikram interview for experienced candidates?

Some of the top questions asked at the IPF-Vikram interview for experienced candidates -

  1. Some technical questions related to utility and production lin...read more
  2. about core electri...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 IPF-Vikram interviews
WalkIn
Referral
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all

IPF-Vikram Reviews and Ratings

based on 15 reviews

3.7/5

Rating in categories

3.4

Skill development

3.9

Work-Life balance

3.6

Salary & Benefits

4.2

Job Security

3.4

Company culture

3.3

Promotions/Appraisal

3.4

Work Satisfaction

Explore 15 Reviews and Ratings
Instrument Engineer
5 salaries
unlock blur

₹2.6 L/yr - ₹4.1 L/yr

Executive Assistant
4 salaries
unlock blur

₹2.2 L/yr - ₹3.8 L/yr

Security Incharge
4 salaries
unlock blur

₹5.1 L/yr - ₹6.1 L/yr

Dispatch Executive
4 salaries
unlock blur

₹3.5 L/yr - ₹3.5 L/yr

Manufacturing Officer
4 salaries
unlock blur

₹5.4 L/yr - ₹7.2 L/yr

Explore more salaries
Compare IPF-Vikram with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview