Upload Button Icon Add office photos

Vision India Services

Compare button icon Compare button icon Compare

Filter interviews by

Vision India Services Software Developer Interview Questions and Answers

Updated 10 Jan 2025

Vision India Services Software Developer Interview Experiences

2 interviews found

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
  • Ans. 

    Vision India Services Pvt Ltd is a leading software development company known for its innovative solutions and client satisfaction.

    • Vision India Services Pvt Ltd is known for its expertise in software development and IT services

    • The company has a strong reputation for delivering high-quality solutions to clients

    • Vision India Services Pvt Ltd values employee growth and provides opportunities for career advancement

    • I wish to...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. What did you like the best in Job Description
  • Ans. 

    I enjoyed the opportunity to work on cutting-edge technologies and collaborate with a talented team.

    • Exciting projects using the latest technologies

    • Collaboration with a talented team

    • Opportunity for professional growth and learning

  • Answered by AI
  • Q2. Get me 2 best reason we should hire you
  • Ans. 

    I have a strong technical background and a proven track record of delivering high-quality software solutions.

    • Extensive experience in software development with proficiency in multiple programming languages such as Java, Python, and JavaScript

    • Strong problem-solving skills and ability to work well in a team environment, demonstrated by successful completion of complex projects on time and within budget

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read JD description properly & prepare accordingly

Software Developer Interview Questions & Answers

user image Sandesh Narvariya

posted on 10 Jan 2025

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

I appeared for an interview before Jan 2024.

Round 1 - Technical 

(1 Question)

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

    I have a strong understanding of Web Forms, ASP.NET, .NET Core, and SQL Server.

    • Proficient in creating web forms using ASP.NET

    • Experience with .NET Core for building modern web applications

    • Skilled in working with SQL Server for database management

    • Knowledge of integrating ASP.NET with SQL Server for data-driven applications

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Fundamental knowledge of Webform, .NET, and SQL Server.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2023. There were 5 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 - Technical 

(4 Questions)

  • Q1. Java related questions
  • Q2. Some coding questions
  • Q3. OOPs concepts, JVM related questions
  • Q4. Sql queries and joins
Round 3 - Technical 

(5 Questions)

  • Q1. Call with VP of company
  • Q2. Project and its overview
  • Ans. 

    Developed a web-based project management tool for a startup

    • Used React for the frontend and Node.js for the backend

    • Implemented features such as task assignment, progress tracking, and file sharing

    • Integrated with Google Drive API for seamless file management

    • Deployed on AWS using EC2 and RDS for scalability and reliability

  • Answered by AI
  • Q3. Some case study questions
  • Q4. Discuss some process and tools questions
  • Q5. And general discussion
Round 4 - HR 

(3 Questions)

  • Q1. Salary anddiscussion
  • Q2. Policies related discussion
  • Q3. Leave policies discussion
Round 5 - HR 

(2 Questions)

  • Q1. Salary negotiation again
  • Q2. HR and policies discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple and quick process if everything fine then they will immediately hire

Interview Questionnaire 

1 Question

  • Q1. Time management

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on DSA were discussed.

  • Q1. 

    Ninja and Sorted Array Merging Problem

    Ninja is tasked with merging two given sorted integer arrays ARR1 and ARR2 of sizes 'M' and 'N', respectively, such that the merged result is a single sorted array w...

  • Ans. 

    Merge two sorted arrays into one sorted array within the first array.

    • Create a pointer for the last index of ARR1 and ARR2 to start merging from the end.

    • Compare elements from both arrays and place the larger element at the end of ARR1.

    • Continue this process until all elements are merged in sorted order within ARR1.

  • Answered by AI
  • Q2. 

    Reverse Alternate Levels of a Perfect Binary Tree Problem Statement

    Given a perfect binary tree consisting of 'N' nodes, reverse the nodes at alternate levels in the tree (i.e., reverse level 2, level 4, ...

  • Ans. 

    Reverse alternate levels of a perfect binary tree by reversing nodes at even levels starting from level 2.

    • Traverse the tree in level order and store nodes at even levels in a separate list.

    • Reverse the list of nodes at even levels.

    • Update the tree with the reversed nodes at even levels.

    • Repeat the process for alternate levels starting from level 2.

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on OS, Java were discussed.

  • Q1. What are the characteristics of distributed file systems?
  • Ans. 

    Characteristics of distributed file systems include scalability, fault tolerance, and data replication.

    • Scalability: Distributed file systems can easily scale to accommodate a large amount of data and users.

    • Fault tolerance: They are designed to continue functioning even if some components fail, ensuring high availability.

    • Data replication: Data is often replicated across multiple nodes to ensure reliability and performan...

  • Answered by AI
  • Q2. Design a file sharing mechanism between two users.
  • Ans. 

    Design a file sharing mechanism between two users.

    • Implement a secure login system for both users.

    • Allow users to upload files to a shared server.

    • Provide a way for users to view and download files shared by the other user.

    • Implement access control to ensure only authorized users can access the shared files.

  • Answered by AI
  • Q3. What is ConcurrentHashMap in Java?
  • Ans. 

    ConcurrentHashMap is a thread-safe implementation of the Map interface in Java.

    • ConcurrentHashMap allows multiple threads to read and write to the map concurrently without causing any issues like deadlocks or data corruption.

    • It achieves thread-safety by dividing the map into segments, each of which can be locked independently.

    • ConcurrentHashMap is more efficient than using synchronized maps for concurrent access.

    • Example:...

  • Answered by AI
  • Q4. How do you analyze the usage history of an application?
  • Ans. 

    Analyzing usage history involves tracking user interactions, patterns, and trends to improve application performance.

    • Collect and store user interaction data such as clicks, page views, and time spent on each feature.

    • Use analytics tools to generate reports and visualize usage patterns.

    • Identify popular features, user preferences, and areas for improvement based on usage data.

    • Implement A/B testing to compare different ver...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAHike interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPS, Operating SystemsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. One coding question.
  • Q2. Questions on Data Structures
  • Q3. Logical Question: You are a captive. If you say the right answer, the assasin will hang you, if you say the wrong answer, he will shoot you. How do you escape?
  • Q4. Other aptitude questions

Interview Preparation Tips

Round: Other Interview
Experience: One year since I took the interview, so no idea exactly what questions they asked. But I was asked to write the code on paper in front of him and was asked to debug it. Some puzzles and aptitude questions along with other basic coding questions. It was great that the guy was interactive and started asking about my projects and college life.
Btw the answer to the logical question is: I should say " you will shoot me". Paradoxical.
Tips: Feel free to ask anything that you would like to know from them. Also frankly say that you don't know a certain topic if you have no clue what it is about. They don't like people wasting their time.

Round: HR Interview
Experience: This was not exactly a technical interview. He asked me to write a code to find the day of week when a certain date in any year of the calendar is given. I answered it and then he starting asking general questions as to why do u want to join the company, etc.
I gave answers to most of them convincingly. But I kept him engaged by explaining my life at college, the extra curriculars I did at college. Also I asked him about his experience as a software engineer. I asked him to reflect upon his career and how I should approach about my career.
Tips: The best part about HR interviews is they expect you to ask them lots and lots of questions. The more they are engaged, the more are your chances of impressing and getting selected. And more importantly, ask the interviewer about his experience with the present firm. This also works with my manager when ever he has a one on one with me :P
Cheers and all the best.

Skills: Soft Skills, General Aptitude, LOGICAL THINKING ABILITIES, Coding Skills And Knowledge On Data Structures
College Name: IIT Hyderabad

I appeared for an interview in Aug 2017.

Interview Preparation Tips

Round: Test
Duration: 1 hour
Total Questions: 50

Round: Technical Interview
Experience: Questions about database and programming

Round: HR Interview
Tips: Be specific

Skills: Attitude
College Name: Cummins College Of Engineering For Women (CCOEW)

I appeared for an interview in Jan 2017.

Interview Preparation Tips

Round: Resume Shortlist
Experience: BASIC KNWLEDGE OF CORE JAVA
Tips: READ HTML CSS JS

Round: Test
Experience: normal computer language qustions
Tips: languages
Duration: 1 hour
Total Questions: 20

College Name: IGNOU University

I appeared for an interview before Sep 2016.

Interview Preparation Tips

Round: Test
Experience: given a binary tree, print the pre order traversal in recursive and iterative way.
people are standing in a queue when viewed from the front, m heads are visible, and n heads from the end. Find the number of possible arrangements such that m&n remains same when viewed from front and end respectively
These are the questions
Duration: 1 hour
Total Questions: 2

Round: Test
Experience: What is the minimum number of straight lines to connect all the dots on this grid?
Duration: 1 hour
Total Questions: 1

College Name: NIT Trichy

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Waterfall model, Software development life cycle
  • Q2. How do you arrive at factorial without recursive function
  • Ans. 

    Factorial can be calculated using a loop by multiplying numbers from 1 to n.

    • Initialize a variable to 1

    • Use a loop to multiply the variable with numbers from 1 to n

    • Return the variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your fundamental skills

Vision India Services Interview FAQs

How many rounds are there in Vision India Services Software Developer interview?
Vision India Services interview process usually has 1-2 rounds. The most common rounds in the Vision India Services interview process are One-on-one Round and Technical.

Tell us how to improve this page.

Vision India Services Software Developer Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Ven Consulting Interview Questions
3.5
 • 19 Interviews
TELUS Health Interview Questions
4.0
 • 17 Interviews
Gi Group Interview Questions
3.8
 • 15 Interviews
Xeam Ventures Interview Questions
3.7
 • 12 Interviews
Qdigi Services Interview Questions
3.8
 • 9 Interviews
View all
Vision India Services Software Developer Salary
based on 5 salaries
₹2.4 L/yr - ₹4.5 L/yr
58% less than the average Software Developer Salary in India
View more details

Vision India Services Software Developer Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

3.1

Skill development

3.1

Work-life balance

3.1

Salary

4.0

Job security

3.1

Company culture

3.1

Promotions

3.1

Work satisfaction

Explore 2 Reviews and Ratings
Junior Executive
67 salaries
unlock blur

₹4.4 L/yr - ₹5.5 L/yr

Team Lead
31 salaries
unlock blur

₹1.4 L/yr - ₹3.1 L/yr

Executive Accountant
26 salaries
unlock blur

₹2.8 L/yr - ₹4 L/yr

HR Executive
19 salaries
unlock blur

₹1.8 L/yr - ₹6.5 L/yr

Senior Executive
19 salaries
unlock blur

₹2.5 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Vision India Services with

Gi Group

3.8
Compare

Ven Consulting

3.4
Compare

Verifacts Services

3.6
Compare

Xeam Ventures

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