Upload Button Icon Add office photos

Filter interviews by

Vdart Software Services Interview Questions and Answers

Updated 20 Jun 2024

Vdart Software Services Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell about Yourself
  • Q2. Some technical questions
Round 2 - Coding Test 

Oops concept array based questions

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 (43)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Aptitude questions logical thinking

Round 2 - Coding Test 

Array concept oops concept

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 (43)

Interview questions from similar companies

I appeared for an interview before Jul 2021.

Round 1 - Aptitude Test 

This will be a general apptitude test where a questionnaire is consist of reasoning, English and Maths questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Tell us about yourself
  • Q2. What do you know about our company
  • Q3. Where do you see yourself in the next 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself for general apptitude. And for interview one-on-one, Stay calm and focused. Just be yourself, know you gonna provide to the company

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

The test was started in the evening 4pm approx.
It was flexible due to Corona so we gave the test from our home only.
It had listening skill activity too according to which we were marked .
Interviewer was very supportive because of which it was easier for us to open up easily .

  • Q1. 

    Arithmetic Expression Evaluation Problem Statement

    You are provided with a string expression consisting of characters '+', '-', '*', '/', '(', ')' and digits '0' to '9', representing an arithmetic express...

  • Ans. 

    Evaluate arithmetic expressions in infix notation with given operators and precedence rules.

    • Parse the infix expression to postfix using a stack and then evaluate the postfix expression using another stack

    • Use a stack to keep track of operators and operands while parsing the expression

    • Handle operator precedence and associativity rules while converting to postfix and evaluating the expression

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string of parentheses is balanced or not.

    • Iterate through the characters of the string and use a stack to keep track of opening parentheses.

    • When encountering an opening parenthesis, push it onto the stack. When encountering a closing parenthesis, check if it matches the top of the stack.

    • If the stack is empty at the end or there are unmatched parentheses, the string is not balanced.

    • Exa...

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Medium

Interview

  • Q1. 

    Reverse Number Problem Statement

    Ninja is exploring new challenges and desires to reverse a given number. Your task is to assist Ninja in reversing the number provided.

    Note:

    If a number has trailing ze...

  • Ans. 

    Implement a function to reverse a given number, omitting trailing zeros.

    • Create a function that takes an integer as input and reverses it while omitting trailing zeros

    • Use string manipulation to reverse the number and remove any trailing zeros

    • Handle test cases where the number has leading zeros as well

    • Ensure the reversed number is printed for each test case on a new line

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaCGPA above 6.5 and no active backlogsAccenture interview preparation:Topics to prepare for the interview - Oops, dmbs, rdbms, mysql, SDLC, projects, data structure and basic electronics.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : confidence is the key.
Tip 2 : focus on communication skills.
Tip 3 : be honest and well prepared about your projects and trainings .

Application resume tips for other job seekers

Tip 1 : it should be to the point.
Tip 2 : be honest. And one should know everything that is written down there.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java. Spring boot, micro service, hibernate
Round 2 - HR 

(1 Question)

  • Q1. Salary, technical, company details

Interview Preparation Tips

Topics to prepare for Accenture Software Developer interview:
  • Java
  • Spring Boot
  • Micro service
  • Hibernate
  • JSP
Interview preparation tips for other job seekers - Java, spring boot, micro service, hibernate

I applied via LinkedIn and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is garbage collection?
  • Ans. 

    Garbage collection is an automatic memory management process.

    • It frees up memory that is no longer being used by the program.

    • It helps prevent memory leaks and crashes caused by running out of memory.

    • Examples of languages that use garbage collection are Java, Python, and Ruby.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to study basic level code

Skills evaluated in this interview

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They totally asked me on Java and we have to be confident while answering them.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be genuine don't keep the thing's in the Resume which you donno

Interview Questionnaire 

3 Questions

  • Q1. Tell me something about yourself
  • Ans. 

    I am a passionate software developer with 5 years of experience in developing web applications using various technologies.

    • 5 years of experience in software development

    • Proficient in developing web applications

    • Skilled in using various technologies

    • Passionate about coding and problem-solving

  • Answered by AI
  • Q2. What is the difference between encapsulation and polymorphism?
  • Ans. 

    Encapsulation is hiding implementation details while polymorphism is using a single interface for multiple types.

    • Encapsulation is achieved through access modifiers like private, protected, and public.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • Encapsulation is about data hiding and abstraction while polymorphism is about behavior.

    • Example of encapsulation: a class with...

  • Answered by AI
  • Q3. What do you mean by deadlock in OS?
  • Ans. 

    Deadlock is a situation in which two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Deadlock occurs when two or more processes are stuck in a circular waiting state.

    • It happens when processes compete for resources and each process holds a resource that another process needs.

    • Four necessary conditions for deadlock are mutual exclusion, hold and wait, no preemption, and ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: We were asked to solve a questionnaire containing 25 questions based on logical reasoning and basic mathematics. We went to the test center in their recruitment center where there were many desktops for the candidates to sit and give the test. At the entrance, they checked the letter we got from them to authenticate us.Then they gave us a login ID and password. Exactly when the test started, the portal became active and we were asked to enter the credentials. I completed the test in half the time as it was pretty easy and straightforward.
Tips: Practice simple aptitude questions for greater speed and accuracy.
Duration: 1 hour
Total Questions: 20

Round: Group Discussion
Experience: Ten candidates who were shortlisted from the written test attended the group discussion. The topic given to us was fairly simple and lucky for me, I used to work as an anchor, and being a strong feminist person, I had a lot of valid points to put forward. I was the one to start the discussion, and I felt I was the best speaker there. The topic was something that I follow regularly, yet I came across a few unique points from the other candidates.
Tips: Improve your English speaking skills. Be assertive and speak concisely.
Duration: 15 minutes

Round: HR Interview
Experience: The interview basically revolved around this one question which had a few follow-up questions, such as who all are there in my family, what are my strengths and weaknesses, and why am I fit for this job.
Tips: Be confident and honest about yourself.

Round: Technical Interview
Experience: I tried to be as calm and confident as possible during the whole of the interview

College Name: Guru Nanak Institute of Technology (GNIT)

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain yourself?
  • Q2. I am soujanya i have complted my btech in 2020 passed out.

Interview Preparation Tips

Interview preparation tips for other job seekers - I want to start my carrer with IT company.I need this job to become an a independent girl.

I applied via Campus Placement and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me your strengths and weaknesses ?
  • Q2. Why did you choose this field?

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall tough one if u dnt prepare well

Vdart Software Services Interview FAQs

How many rounds are there in Vdart Software Services interview?
Vdart Software Services interview process usually has 2 rounds. The most common rounds in the Vdart Software Services interview process are Coding Test, HR and Assignment.
How to prepare for Vdart Software Services 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 Vdart Software Services. The most common topics and skills that interviewers at Vdart Software Services expect are AWS, Communication Skills, Java, Javascript and SQL.

Tell us how to improve this page.

Vdart Software Services Interview Process

based on 3 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.2k 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
Genpact Interview Questions
3.8
 • 3.1k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
DXC Technology Interview Questions
3.7
 • 796 Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
NTT Data Interview Questions
3.8
 • 624 Interviews
View all

Vdart Software Services Reviews and Ratings

based on 31 reviews

3.8/5

Rating in categories

3.8

Skill development

3.7

Work-life balance

3.3

Salary

3.2

Job security

4.2

Company culture

3.2

Promotions

3.9

Work satisfaction

Explore 31 Reviews and Ratings
Technical Recruiter
16 salaries
unlock blur

₹1.4 L/yr - ₹5.4 L/yr

US IT Recruiter
14 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

US Recruiter
12 salaries
unlock blur

₹1.9 L/yr - ₹3.3 L/yr

Senior Technical Recruiter
7 salaries
unlock blur

₹2.3 L/yr - ₹4.1 L/yr

Senior Recruiter
6 salaries
unlock blur

₹2.2 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Vdart Software Services with

Accenture

3.8
Compare

Wipro

3.7
Compare

Capgemini

3.7
Compare

IBM

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