Upload Button Icon Add office photos

Filter interviews by

VHR SOLUTIONS Senior Software Engineer Interview Questions and Answers

Updated 20 Jan 2023

VHR SOLUTIONS Senior Software Engineer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Dec 2022. There were 5 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. Asking my profile related question my current CTC and Expected CTC
Round 3 - Technical 

(1 Question)

  • Q1. Client was Reliance JIO Asked Tech Question related C# , .NET, SQL, Optimization
Round 4 - Behavioral 

(1 Question)

  • Q1. L2 round by client Reliance JIO - Related My profile and Past experience
Round 5 - HR 

(1 Question)

  • Q1. Salary details and took all salary documents

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst experience ever, don't go for VHR solutions
Opportunity was with client Reliance JIO and Payroll was VHR Solutions.
Initially they asked about my current package and expectation than they schedules 2 round with client Reliance JIO
L1 - Technical
L2 - Managerial
After that they took my last 3 salary slips and also My offer letter from previous organization.
Then again wanted my last to last organization offer letter.
Then then replied me as client says they don't have budget so max will match you current package.
I said OK
But still they didn't given me offer letter. Saying client budget is too less they can't even match my current package.
So if client have strict budget why you scheduled 2 rounds with client?
Why they took my documents (Salary slip and previous organization offer letter)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Have you read the job description
  • Q2. What you know about Vision India Services Pvt Ltd and Why do you wish to join us
Round 2 - One-on-one 

(2 Questions)

  • Q1. What did you like the best in Job Description
  • Q2. Get me 2 best reason we should hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Read JD description properly & prepare accordingly
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic from language
  • Q2. Question from project if have done any
Round 2 - Coding Test 

For designer have to create page
And for coder simple coding questions

Round 3 - HR 

(1 Question)

  • Q1. Ready to work with low salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Before joining ask for job type will they are going to hire you as IC role or on company role because if u will go as IC(freelance) role so in future tcs like company not consider your experience
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Group Discussion 

About web development

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

I was interviewed before Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. What is your basic knowledge of Web Forms, ASP.NET, .NET Core, and SQL Server?

Interview Preparation Tips

Interview preparation tips for other job seekers - Fundamental knowledge of Webform, .NET, and SQL Server.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Ramaiah Institute of Technology, Bengaluru and was interviewed in Aug 2022. There were 4 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 - Coding Test 

On Platform called EDUTRILL . Two easy coding questions where asked to solve in an hour .
Both were based on arrays and not of difficult level.
basic understanding of if else statements , loops was enough.

Round 3 - One-on-one 

(2 Questions)

  • Q1. It was based on Resume . They'll ask few questions about your projects in college , and any one programming language understanding . Its better if its JavaScript.
  • Q2. Some basic SQL queries , Based on JOINS , PRIMARY KEY , EMPLOYEE ID based queries . DIFFICULTY LEVEL : 7/10
Round 4 - HR 

(1 Question)

  • Q1. Mix of technical and HR questions from Any Senior from the company . DIFFICULLY LEVEL : 6/10

Interview Preparation Tips

Interview preparation tips for other job seekers - Please include only the things you are familiar in your Resume . and prepare on the those.
Knowledge of ANY ONE programming language.
HTML,CSS, JavaScript is a plus.

I was interviewed in Jan 2021.

Round 1 - Video Call 

(5 Questions)

Round duration - 105 minutes
Round difficulty - Medium

Yes, here comes the technical Round. Like other casual Interviews, it started with my introduction. and then the Interviewer asked me about OOPs Concepts and for every concept he asked for an example code. it took around 20 mins for this round and next he started asking questions from my project ( in which I mentioned ML Project ). From this he has asked Like why do you choose this algorithm and why did you learned ML. After That he moved to the problem solving part. He asked 6 questions on Problem solving. this took me around 30 mins to solve. I'll mention those problems in the below section. And he started asking me about tree's implementation. I answered him the theoretical part for the questions asked. and furtherly he asked me 6-7 SQL queries which took me around 20mins I remember. And from there he started asking questions about CN and OS. As I don't know about them- I replied Like i didn't have much Knowledge In these Sessions but I have Learned Some new technologies that are trending in the market. So, the key point for every Interview is like- we need not to be know everything it is up to us to in which area we are having interest and finally you should be able to show that you are expert in that and one more thing- Any job role is not expecting to be good at only one area of tech- So you should be able to convince the Interviewer that you are capable of understanding, learning new tech and to be have good team working skills.

  • Q1. Cycle Detection in a Singly Linked List

    You have given a Singly Linked List of integers, determine if it forms a cycle or not.

    A cycle occurs when a node's next points back to a previous node in the ...

  • Ans. Outer And Inner Loop

    We are going to have two loops outer-loop and inner-loop 

    1. Maintain a count of the number of nodes visited in outer-loop.
    2. For every node of the outer-loop, start the inner loop from head.
    3. If the inner-loop visits the node next to the outer-loop node, then return true, else repeat the process for the next iteration of outer-loop.
    4. If outer-loop reaches the end of list or null, then return false.
    Space ...
  • Answered Anonymously
  • Q2. Merge Sort Linked List

    You are given a Singly Linked List of integers. Sort the Linked List using merge sort.

    Merge Sort is a Divide and Conquer algorithm. It divides the input into two halves, calls its...

  • Ans. Merge Sort

    We will use the ‘Merge Sort’ algorithm to sort the given linked list. Merge Sort is a Divide and Conquer algorithm. In this algorithm, we will divide the list into two parts, recursively sort the two parts and finally merge them such that the resultant list will be sorted.

     

    Algorithm:

     

    1. If the list contains only one node, return the head of the list.
    2. Else, divide the list into two sublists. For this, we...
  • Answered Anonymously
  • Q3. Matrix Is Symmetric

    You are given a square matrix, return true if the matrix is symmetric otherwise return false.

    A symmetric matrix is that matrix whose transpose is equal to the matrix itself.

    Exampl...

  • Ans. Brute Force
    • Create another matrix ‘TRANSPOSE’ of the same size initially having all zeros.
    • Now replace ‘TRANSPOSE’ (i,j) with ‘MATRIX’ (j,i).
    • And now traverse both matrixes element by element if anywhere there is inequality return false, else continue.
    • In the end, return true as you traverse.
    Space Complexity: O(1)Explanation:

     O(N ^ 2), Where ‘N’ is the size of the square matrix.

     

    Since an extra matrix of size ‘N’...

  • Answered Anonymously
  • Q4. Spiral Matrix

    You are given a N x M matrix of integers, return the spiral path of the matrix

    Example Of Spiral Path

    Input Format:
    The first line contains an integer 'T' which denotes the numb...

  • Ans. Spiral Matrix

    Divide the matrix into loops. Print all the elements in the clockwise order from the first-outer layer, followed by the elements from the second outer layer, and so on. Use four loops to print all the elements. Every ‘for’ loop defines a single direction movement along with the matrix. The first loop represents the movement from left to right, the second loop represents the movement from top to bottom, the...

  • Answered Anonymously
  • Q5. Height of the Binary Tree

    You have been given the Inorder Traversal and Level Order Traversal of a Binary Tree of integers. Your task is to calculate the height of the Binary tree without constructing it.

    ...
  • Ans. Queue Solution
    • The first element of the Level order Traversal is necessarily the root of the binary tree.
    • The nodes which appear left of the root in the inorder traversal are necessarily in the left subtree, and those which appear in the right are in the right subtree of the right subtree.
    • We can make use of the fact that the nodes of a subtree of the binary tree will form a continuous segment in the inorder array.
    • We can ...
  • Answered Anonymously
Round 2 - HR 

Round duration - 45 minutes
Round difficulty - Medium

In this round Company Director for India team and HR has joined.
I started with my Introduction and he has asked what I know about the Company. I started saying everything from google and Wikipedia and from their official site. As this is a off campus recruitment he started explaining about the company what they do and the job role I have applied for. He said that the job was very challenging one and we'll be closely dealing with clients and meeting their expectations is quite challenging for the role. and then he started asking some real HR questions. for which I have answered in a cool way

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BengaluruEligibility criteriaBachelor’s degree in Engineering or a relevant fieldSymphony Talent, LLC interview preparation:Topics to prepare for the interview - Java, DBMS, SQL, HTML, CSS, JS, Standards and FrameWorks of JSP, Maven, Junit, Log4j, Collections.Time required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Basics of technology you know and work proof ( can be projects or events you have conducted ) for that particular technology is must.
Tip 2 : Even if you are not good at a particular technology, try to be best at some other technology.
Tip 3 : Never show of your weakness. and never in technology. There must be some, be you good at a particular thing. so find it out and become expertise in that.

Application resume tips for other job seekers

Tip 1 : Hide some interesting facts about you in the resume, So that you can impress the recruiter during the interview.
Tip 2 : Don't try online resumes, Instead you can make your own resume in MS Word to stand out from others. For me it took 2-3 hours to learn making resume in word and to complete it.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

Had to give at least 10 MCQ tests with 5 questions each with 60% accuracy .(each round takes 3 min approx) 

Then an easy coding question was asked.
It was an online test.
The webcam was on.
EduThrill would have the candidates go through filtering rounds consisting of questions around data structures, algorithms, problem-solving, etc.
And instant % was visible after each round

  • Q1. Count characters

    Write a program to count and print the total number of characters (lowercase english alphabets only), digits (0 to 9) and white spaces (single space, tab i.e. '\t' and newline i.e....

  • Ans. Space Complexity: O(1)Explanation: Time Complexity: O(1)Explanation:
  • Answered Anonymously

Interview Preparation Tips

Eligibility criteria6 CGPA and must be in final yearSymphony Talent, LLC interview preparation:Topics to prepare for the interview - Data Structures, Core Java, DBMS, Operating Systems, Networking, AlgorithmsHTML, CSS & JavaScriptTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Code Daily
Tip 2 : Be Confident 
Tip 3 : Study the fundamental Subjects and Concepts Deeply
Tip 4 : Add Skills to Resume
Tip 5 : Participate in Co-Curricular Activities too

Application resume tips for other job seekers

Tip 1 : Mention your non-technical skills as well. eg: a member of college club.
Tip 2 : One good project is enough
Tip 3 : Mention the tools and technologies of tools as well
Tip 4 : Use more technical terms
Tip 5 : Give details of important things. i.e. "What was your project about? What tools & technologies you used? What was the impact of the project?

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How many numbers consulting in this year?

Interview Preparation Tips

Interview preparation tips for other job seekers - Introduction your self. project. skills

VHR SOLUTIONS Interview FAQs

How many rounds are there in VHR SOLUTIONS Senior Software Engineer interview?
VHR SOLUTIONS interview process usually has 5 rounds. The most common rounds in the VHR SOLUTIONS interview process are HR, Resume Shortlist and Technical.
What are the top questions asked in VHR SOLUTIONS Senior Software Engineer interview?

Some of the top questions asked at the VHR SOLUTIONS Senior Software Engineer interview -

  1. L2 round by client Reliance JIO - Related My profile and Past experie...read more
  2. Client was Reliance JIO Asked Tech Question related C# , .NET, SQL, Optimizat...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Quess Interview Questions
3.9
 • 384 Interviews
Randstad Interview Questions
3.8
 • 258 Interviews
Team Lease Interview Questions
3.9
 • 194 Interviews
ABC Consultants Interview Questions
3.9
 • 178 Interviews
Adecco Group Interview Questions
3.7
 • 85 Interviews
PeopleStrong Interview Questions
3.4
 • 50 Interviews
ManpowerGroup Interview Questions
3.9
 • 49 Interviews
Iksula Interview Questions
3.5
 • 27 Interviews
View all
VHR SOLUTIONS Senior Software Engineer Salary
based on 5 salaries
₹10.5 L/yr - ₹15 L/yr
21% less than the average Senior Software Engineer Salary in India
View more details

VHR SOLUTIONS Senior Software Engineer Reviews and Ratings

based on 2 reviews

3.9/5

Rating in categories

2.4

Skill development

3.9

Work-life balance

3.2

Salary

2.4

Job security

3.9

Company culture

2.4

Promotions

3.2

Work satisfaction

Explore 2 Reviews and Ratings
Senior IT Recruiter
11 salaries
unlock blur

₹2.2 L/yr - ₹4.8 L/yr

Information Technology Recruiter
11 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Software Engineer
9 salaries
unlock blur

₹5.1 L/yr - ₹10.5 L/yr

Executive Accountant
8 salaries
unlock blur

₹2.5 L/yr - ₹3.5 L/yr

Software Developer
7 salaries
unlock blur

₹5 L/yr - ₹18 L/yr

Explore more salaries
Compare VHR SOLUTIONS with

ABC Consultants

3.9
Compare

Randstad

3.8
Compare

Team Lease

3.9
Compare

Quess

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