Upload Button Icon Add office photos

VPS

Compare button icon Compare button icon Compare
3.1

based on 70 Reviews

Filter interviews by

VPS Trainee Interview Questions and Answers for Freshers

Updated 31 Mar 2023

VPS Trainee Interview Experiences for Freshers

1 interview found

Trainee Interview Questions & Answers

user image Anonymous

posted on 31 Mar 2023

Interview experience
4
Good
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 tips
Round 2 - Aptitude Test 

Aptitude Test was a bit on harder side.

Round 3 - HR 

(2 Questions)

  • Q1. Re-location posibility.
  • Ans. 

    Yes, I am open to relocation for the Trainee position.

    • I am flexible and willing to move to a new location for the opportunity.

    • I understand that relocation may be required for career growth and development.

    • I have previously relocated for educational purposes and adapted well to new environments.

  • Answered by AI
  • Q2. What was my Salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are fresher, Just use the skills from a competitive exam.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Relations of Bond price & Interest rate
  • Ans. 

    Bond prices and interest rates have an inverse relationship - as interest rates rise, bond prices fall, and vice versa.

    • When interest rates rise, newly issued bonds offer higher yields, making existing bonds with lower yields less attractive, causing their prices to decrease.

    • Conversely, when interest rates fall, newly issued bonds offer lower yields, making existing bonds with higher yields more valuable, causing their ...

  • Answered by AI
  • Q2. Swap, Currency swap & cross currency swap intro

Interview Preparation Tips

Interview preparation tips for other job seekers - rarely they go into technical questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. About personal interview round
Round 2 - Aptitude Test 

About a mathematical question

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Baisc apti questions

Round 2 - Coding Test 

3 coding questions fkr 60 min

Round 3 - Technical 

(2 Questions)

  • Q1. Linked list reverssal
  • Q2. Hash map implementation
  • Ans. 

    A hash map is a data structure that allows for efficient storage and retrieval of key-value pairs.

    • Hash maps use a hash function to convert keys into array indices.

    • Collisions can occur when multiple keys hash to the same index, requiring a collision resolution strategy.

    • Common collision resolution strategies include chaining and open addressing.

    • Hash maps have constant-time average case complexity for insertion, deletion,...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Normal hr round

Skills evaluated in this interview

I applied via campus placement at Delhi School of Economics, Delhi and was interviewed in Nov 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

30 minutes. Reasoning, English, Quant, DI

Round 2 - Technical 

(1 Question)

  • Q1. 1. Introduce yourself 2. Explain a project (Excel based research project on my CV) 3. How did you clean the data and prepare it for analysis 4. CLRM assumptions 5. Define multicollinearity. Did you find it...
Round 3 - One-on-one 

(1 Question)

  • Q1. 1. Why amex 2. what is closed loop model of amex 3. What are the factors that you look into for setting the credit limit of a customer. Give an optimization equation 4. Give an instance of when you have wo...
  • Ans. 

    Answers to questions asked in an interview for Management Trainee at Amex

    • 1. Amex is a reputed financial services company with a strong focus on customer service and innovation.

    • 2. Closed loop model of Amex refers to the fact that Amex issues its own cards, processes transactions, and provides customer service, all within its own network.

    • 3. Factors for setting credit limit include credit score, income, debt-to-income rat...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for American Express Management Trainee interview:
  • Credit card economics
  • Econometrics
  • Statistics
Interview preparation tips for other job seekers - Please read about the business model of amex, closed loop model and credit card economics. Knowledge of coding is not compulsory but be thorough with the projects mentioned in your CV.
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 - Coding Test 

The coding test was for 60 minutes. The questions were of easy to medium level difficulty. Only C++ and Java languages were allowed.

Round 3 - Technical 

(2 Questions)

  • Q1. Technical interview was primarily based on resume,
  • Q2. They asked few questions on DBMS, OOPS, and some questions related to cloud computing and software methodologies.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in your answers and put only the things that you know very well on your resume.

I was interviewed in Mar 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

2 programming questions, MCQs based on OS, DBMS, OOPS and web fundamentals

  • Q1. Search In A 2D Matrix

    You have been given a 2-D array 'MAT' of size M x N where 'M' and 'N' denote the number of rows and columns, respectively. The elements of each row are sorted ...

  • Ans. Brute Force

    We have a brute force solution to this problem. We can simply traverse the matrix and check if ‘TARGET’ exists or not. 

    Space Complexity: O(1)Explanation:

    O(1)
     

    Since, we are not using any extra space to find the number of pairs. Therefore, the overall space complexity will be O(1).

    Time Complexity: O(m*n) - For 2d arraysExplanation:

    O(M*N) where ‘M’ and ‘N’ denote the number of rows and columns in ‘M...

  • Answered by CodingNinjas
  • Q2. Reverse Linked List
    Input Format :
    The first line of input contains a single integ...
  • Ans. Recursive Approach

    One way is to use recursion to reverse the list. Divide the linked list in two halves, the first node and the rest of the list. Reverse the second half using recursion and append the first half, that is the first node at the end of the reversed linked list. Return the head of the reversed linked list.

     

    Algorithm

     

    • If the list contains only one node, return the head of the list.
    • Else, divide the ...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(5 Questions)

Round duration - 40 minutes
Round difficulty - Easy

This round had 2 coding questions and some basic questions revolving around OOPs

  • Q1. Palindromic Linked List

    You are given a singly Linked List of integers. Your task is to return true if the given singly linked list is a palindrome otherwise returns false.

    For example:
    The given linked ...
  • Ans. Using Stack
    1. The idea is to traverse the Linked List from head to tail and push every encountered node data into the stack.
    2. Then we traverse the Linked List and for each node, we pop the top element from the stack and compare it with current node data of the Linked List. If they mismatch then the current linked list is not palindrome else if all elements match then the linked list is a palindrome.
    Space Complexity: O(n)Exp...
  • Answered by CodingNinjas
  • Q2. Find the maximum level sum among all the levels in the Binary Tree

    Given a Binary Tree with integer nodes, your task is to find the maximum level sum among all the levels in the Binary Tree. The sum of any...

  • Ans. Recursive Approach

    Let’s traverse the given Binary tree using Recursion.The idea is to recursively store the sum of nodes of every level separately in a map.

     

    • Take a map to store the sum of each level. 
    • The recursive function has ‘ROOT’, current level, and map as its parameters.
      • Base Condition:  If ‘ROOT’ is NULL, return.
      • Add the value of the current node to the value mapped to the current level in the map.
      • Re...
  • Answered by CodingNinjas
  • Q3. OOPS Question

    How is an abstract class different from an interface?

  • Q4. OOPS Question

    What is the difference between overloading and overriding?

  • Q5. OOPS Question

    What is meant by static polymorphism?

Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

Was conducted a couple of hours after the previous Tech round. The round was a HR one, behavioral questions and discussion around my hobbies :)

  • Q1. Basic HR Questions

    Had mentioned badminton as a hobby - He asked what' the weight of the shuttle is, what does a score of 0-7 imply, etc.
    Asked about why I would be a good fit for HSBC
    Had a discussion around...

  • Ans. 

    Tip 1 : Be very honest
    Tip 2 : Try to have a light-hearted conversation with the interviewer. HR is mostly there to accept you, not reject unless they find a very big red flag. Find some common point if you can and play on that!
     

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Trainee Software Engineer in HyderabadEligibility criteriaAbove 7 CGPAHSBC interview preparation:Topics to prepare for the interview - Data Structures, OOPS, C++ Language specific paradigms, SQL, OSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Be very thorough with your resume. You will be properly grilled.
Tip 2 : Be clear with the basics of atleast one programming language, and have competitive programming experience
Tip 3 : Have projects in your resume from different domains. For a fresher, HSBC looks for a jack of all trades instead of a master of one, so having projects in different domains with be greatly beneficial

Application resume tips for other job seekers

Tip 1 : Have multiple projects
Tip 2 : Have a decent skillset, with good educational background

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via campus placement at Dwarkadas J Sanghvi College of Engineering, Mumbai and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

General aptitude were asked and also 2 dsa question

Round 2 - Technical 

(3 Questions)

  • Q1. Basic oops, sql, one array based dsa quest, resume based
  • Q2. Merge sort, real time example of abstraction and encapsulation
  • Q3. Internship and project experience
Round 3 - HR 

(1 Question)

  • Q1. Why ubs, family background etc
  • Ans. 

    I am interested in UBS due to its reputation for excellence and global presence. My family background includes a strong work ethic and emphasis on education.

    • UBS is known for its strong reputation in the financial industry

    • I am attracted to UBS's global presence and opportunities for international experience

    • My family has instilled in me a strong work ethic and value for education

    • I believe UBS aligns with my career goals

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2023. There were 3 interview rounds.

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 tips
Round 2 - Aptitude Test 

General Mathematical questions

Round 3 - One-on-one 

(1 Question)

  • Q1. English Test and Face to Face interview

Interview Preparation Tips

Interview preparation tips for other job seekers - If possible please avoid going to HDFC SALES as there is a huge work pressure of Sales with minimum salary.

Interview Questionnaire 

1 Question

  • Q1. Why American Express

Interview Preparation Tips

Round: Curriculum vitae submission
Experience: Only an initial shortlist of around 30 students was done based on CV.
Tips: Mention your academic credentials, math/statistics based work done (if any).

Round: Test
Experience: It consisted of two subjective questions based on probability theory and some common understanding of credit card division (like 'What is score card?'). Students were free to ask any specifics in the questions. One question was solely based on conditional probability and the second one was intuitive with general probability fundamentals.Quantify your results, don't leave them halfway through. State your assumptions clearly.
Tips: Quantify your results, don't leave them halfway through. State your assumptions clearly.
Duration: NA minute
Total Questions: 2

Round: Technical Interview
Experience: 10 students were shortlisted. The interview started with a general overview of the CV and common questions like 'Why American Express?". Then they discussed about my project and internship, why I opted FRM and why I did not apply for higher studies. It concluded with a case study question on credit card division and a puzzle.
Tips: Practice puzzles and case study questions. One must have good communication skills.Have a good understanding of your projects, especially if it is based on statistics/quant/pattern recognition.The people who come for interview know their stuff very well.

General Tips: At one point of time, the interviewer himself was trying to convince me that Iam better suited for the profile offered by Nomura because of my interest in finance. Luckily,I had done some good background study of the company and stated a few facts about thefirm which made them realize that my FRM is also a very good asset for their credit carddivision as it involved credit risk management. It was a very peaceful/friendly interview. Beconfident with your resume and use the hints they give you during the case interview.
Skill Tips: "Practice puzzles and case study questions. One must have good communication skills.Have a good understanding of your projects, especially if it is based on statistics/quant/pattern recognition.The people who come for interview know their stuff very well."
Skills: Probability
College Name: IIT Kharagpur

VPS Interview FAQs

How many rounds are there in VPS Trainee interview for freshers?
VPS interview process for freshers usually has 3 rounds. The most common rounds in the VPS interview process for freshers are Resume Shortlist, Aptitude Test and HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 550 Interviews
HSBC Group Interview Questions
4.0
 • 483 Interviews
American Express Interview Questions
4.2
 • 352 Interviews
UBS Interview Questions
4.0
 • 345 Interviews
BNY Interview Questions
4.0
 • 325 Interviews
Morgan Stanley Interview Questions
3.7
 • 297 Interviews
Citicorp Interview Questions
3.7
 • 275 Interviews
BNP Paribas Interview Questions
3.8
 • 175 Interviews
View all
Audit Executive
64 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Auditor
9 salaries
unlock blur

₹0.8 L/yr - ₹3 L/yr

Internal Audit Executive
7 salaries
unlock blur

₹1.1 L/yr - ₹2.2 L/yr

Internal Auditor
7 salaries
unlock blur

₹1.2 L/yr - ₹3.2 L/yr

Assistant Manager
6 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Explore more salaries
Compare VPS with

Blue Dart Express

4.1
Compare

GATI-KWE

4.0
Compare

Patel Integrated Logistics

4.2
Compare

TCI Express

3.9
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