Upload Button Icon Add office photos

Filter interviews by

Vitrana Software Technologist Interview Questions and Answers

Updated 27 Dec 2023

Vitrana Software Technologist Interview Experiences

2 interviews found

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

I applied via Referral and was interviewed before Dec 2022. 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 - Technical 

(1 Question)

  • Q1. Oracle SQL/plsql
Round 3 - Technical 

(1 Question)

  • Q1. Oracle SQL/plsql

I applied via Approached by Company and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic core Java questions, spring boot, hibernate and jpa
Round 2 - One-on-one 

(1 Question)

  • Q1. Understanding of our technical interests and discussion on how Vitrana can support in that journey
Round 3 - HR 

(1 Question)

  • Q1. Discussion on package and basic company policies

Interview Preparation Tips

Interview preparation tips for other job seekers - Concepts and understanding of the worked technologies should be strong.

Software Technologist Interview Questions Asked at Other Companies

Interview questions from similar companies

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

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(5 Questions)

  • Q1. What is the iterator, generator in python. Write an example of it. What is .pyc file, when is it generate, generate and show it.
  • Ans. 

    Iterator and generator are used in Python to iterate over a sequence of elements. .pyc files are compiled Python files.

    • Iterator in Python is an object that enables a programmer to traverse a container, like a list.

    • Generator in Python is a function that returns an iterator. It generates values using the yield keyword.

    • Example of iterator: for num in range(5): print(num)

    • Example of generator: def square_numbers(n): for i i...

  • Answered by AI
  • Q2. Coding Questions: 1) Reversing a number eg:1234 to 4321 2) Perform sorting in list using any sort algorithm 3) list1, list2 - both are mapped to each other, based on the traget value in list1, return th...
  • Q3. Technical questions : OS module, .pyc file, git commands,
  • Q4. What is bug life cycle? which project management methodolgy are you following in your current project.
  • Ans. 

    Bug life cycle is the process of identifying, reporting, fixing, retesting, and closing bugs in a software project.

    • Bug is identified by a tester during testing phase

    • Bug is reported to the development team

    • Development team fixes the bug

    • Tester retests the bug to ensure it is fixed

    • Bug is closed once confirmed fixed

  • Answered by AI
  • Q5. Questions on OOPS . What is polymorphism, write an example for that . Why do we use OOP's

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on python basics as the role was for Python developer

Skills evaluated in this interview

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

I appeared for an interview in Sep 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Can you provide information about yourself and your background?
  • Ans. 

    I am a passionate software developer with a strong background in full-stack development and a keen interest in innovative technologies.

    • Bachelor's degree in Computer Science from XYZ University.

    • 5 years of experience in web development using JavaScript, React, and Node.js.

    • Worked on a project that improved user engagement by 30% through UI enhancements.

    • Contributed to open-source projects, including a popular library for d...

  • Answered by AI
  • Q2. What is your past experience and what roles have you held?
  • Ans. 

    I have over 5 years of experience in software development, focusing on web applications and team collaboration.

    • Worked as a Full Stack Developer at XYZ Corp, where I led a team to develop a responsive web application using React and Node.js.

    • Served as a Software Engineer at ABC Inc., enhancing existing systems and implementing new features that improved user engagement by 30%.

    • Interned at DEF Solutions, where I gained han...

  • Answered by AI
Round 2 - Coding Test 

Take on one assignment task.

Round 3 - Coding Test 

Code testing and ask a few questions.

Round 4 - Technical 

(2 Questions)

  • Q1. Can you describe your project and your contributions, including what you have developed?
  • Q2. How did you start developing your project?
  • Ans. 

    I began my project by identifying a problem, researching solutions, and planning the development process step-by-step.

    • Identified a specific problem: For example, I noticed that users struggled with task management.

    • Conducted thorough research: I explored existing solutions and gathered user feedback to understand their needs.

    • Defined project scope: I outlined the features and functionalities that would address the identi...

  • Answered by AI

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1. Online test using jquery and react js
  • Q2. 2. Reverse number with sign
  • Ans. 

    Reverse a number while preserving its sign.

    • Extract the sign of the number using Math.sign()

    • Reverse the absolute value of the number using string manipulation

    • Convert the reversed string back to a number and multiply by the sign

  • Answered by AI
  • Q3. 3. Check if two strings are anagram
  • Ans. 

    Check if two strings are anagram

    • Sort both strings and compare them

    • Use a hash table to count the frequency of each character in both strings and compare the hash tables

    • Use an array of size 26 to count the frequency of each letter in both strings and compare the arrays

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - First round was online coding test with average difficulty.
Second round was video interview with managerial questions and 2 coding questions.

Skills evaluated in this interview

I appeared for an interview before Apr 2021.

Round 1 - Video Call 

(5 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was a technical Interview round with questions on C#, .NET and DBMS.

  • Q1. What is the difference between the Ref and Out keywords in C#?
  • Ans. 

    Ref is used for passing arguments by reference, Out is used for returning multiple values.

    • Ref keyword is used for passing arguments by reference, allowing the method to modify the original value.

    • Out keyword is used for returning multiple values from a method, as it does not require the variable to be initialized before being passed.

  • Answered by AI
  • Q2. What is the difference between ViewData, ViewBag, and TempData in C#?
  • Ans. 

    ViewData, ViewBag, and TempData are ways to pass data between controllers and views in ASP.NET MVC.

    • ViewData is a dictionary object used to pass data from controller to view. It requires typecasting.

    • ViewBag is a dynamic property used to pass data from controller to view. No typecasting is required.

    • TempData is a dictionary object used to pass data from one controller to another or from one action to another.

  • Answered by AI
  • Q3. What is the difference between managed and unmanaged code in C#?
  • Ans. 

    Managed code is executed by the CLR with memory management, while unmanaged code is executed directly by the operating system without memory management.

    • Managed code is executed by the Common Language Runtime (CLR) in .NET framework.

    • Unmanaged code is executed directly by the operating system without CLR.

    • Managed code provides automatic memory management through garbage collection.

    • Unmanaged code requires manual memory man...

  • Answered by AI
  • Q4. What are the different types of triggers in SQL Server?
  • Ans. 

    Triggers in SQL Server are special types of stored procedures that are automatically executed when certain events occur in a database.

    • Types of triggers include DML triggers (for INSERT, UPDATE, DELETE operations), DDL triggers (for CREATE, ALTER, DROP operations), and Logon triggers.

    • Triggers can be set to fire before or after the triggering event.

    • Examples of triggers include auditing changes to a table using an INSERT ...

  • Answered by AI
  • Q5. What are generic and non-generic collections in C#?
  • Ans. 

    Generic collections in C# allow for type-safe collections, while non-generic collections do not enforce type safety.

    • Generic collections use type parameters to specify the type of elements they can contain, ensuring type safety.

    • Non-generic collections do not specify the type of elements they can contain, leading to potential runtime errors if incorrect types are used.

    • Example of generic collection: List<string> nam...

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was a typical managerial round.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAUnitedHealth Group interview preparation:Topics to prepare for the interview - C#, .NET, DBMS, Data Structures, Algorithms, Aptitude, OOPSTime required to prepare for the interview - 5 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 interviewSelected

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via unstop and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

It was medium to difficult level test

Round 2 - Technical 

(2 Questions)

  • Q1. Questions about core subjects like oops pillars
  • Q2. Questions about projects, technologies used
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to join this
  • Q2. Your previous experience and questions about your background

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops concepts JVM questions String programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on java,selenium they look for jebhave and leanft
Interview experience
5
Excellent
Difficulty level
-
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral 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 - Technical 

(1 Question)

  • Q1. What is call,bind,apply
  • Ans. 

    call, bind, and apply are methods used to manipulate the value of 'this' in JavaScript functions.

    • Call invokes a function with a specified 'this' value and arguments provided individually.

    • Bind creates a new function that, when called, has its 'this' keyword set to the provided value.

    • Apply invokes a function with a specified 'this' value and arguments provided as an array.

    • All three methods are used to control the value o...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Explain about angular,nodejs,expressjs
  • Ans. 

    Angular is a front-end framework, Node.js is a back-end runtime environment, and Express.js is a web application framework for Node.js.

    • Angular is used for building dynamic single-page applications (SPAs) with HTML, CSS, and TypeScript.

    • Node.js is used for building scalable network applications and is based on the V8 JavaScript engine.

    • Express.js is a minimal and flexible Node.js web application framework that provides a ...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. About Ge healthcare ,culture,salary
Round 5 - One-on-one 

(1 Question)

  • Q1. More about ge healthcare

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on JS,nodejs architecture coding skills

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2022. 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 - Coding Test 

Two Easy questions to be solved

Round 3 - Technical 

(3 Questions)

  • Q1. Some Technical based questions
  • Q2. It was amazing . Interviewer asked me to code for heap sort and asked me to explain.
  • Q3. Write a code for heap sort algorithm and explain it?
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure.

    • Heap sort works by building a binary heap from the array and then repeatedly extracting the maximum element and placing it at the end of the array.

    • The heap is maintained as a complete binary tree, where each parent node is greater than or equal to its children.

    • The time complexity of heap sort is O(n log n) and it is an in-place sor...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GE Healthcare Software Developer interview:
  • C++
  • C
  • Python
Interview preparation tips for other job seekers - Learn very well and expertise in one coding language. To be have a clear vision on theory concepts like OS, DBMS, OOPS, CN...etc.

Skills evaluated in this interview

Vitrana Interview FAQs

How many rounds are there in Vitrana Software Technologist interview?
Vitrana interview process usually has 3 rounds. The most common rounds in the Vitrana interview process are Technical, One-on-one Round and HR.
What are the top questions asked in Vitrana Software Technologist interview?

Some of the top questions asked at the Vitrana Software Technologist interview -

  1. Basic core Java questions, spring boot, hibernate and ...read more
  2. Discussion on package and basic company polic...read more
  3. Oracle SQL/pl...read more

Tell us how to improve this page.

Vitrana Software Technologist Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Vitrana Software Technologist Salary
based on 14 salaries
₹13.2 L/yr - ₹26 L/yr
At par with the average Software Technologist Salary in India
View more details

Vitrana Software Technologist Reviews and Ratings

based on 3 reviews

2.9/5

Rating in categories

3.3

Skill development

1.7

Work-life balance

3.6

Salary

2.9

Job security

2.2

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
57 salaries
unlock blur

₹6.4 L/yr - ₹15.1 L/yr

Associate Software Engineer
41 salaries
unlock blur

₹7 L/yr - ₹11.2 L/yr

Senior Consultant
30 salaries
unlock blur

₹11.3 L/yr - ₹19 L/yr

Senior Software Engineer
27 salaries
unlock blur

₹8.5 L/yr - ₹18.5 L/yr

Consultant
26 salaries
unlock blur

₹7.2 L/yr - ₹18 L/yr

Explore more salaries
Compare Vitrana with

GeBBS Healthcare Solutions

3.7
Compare

UnitedHealth

4.0
Compare

Sahrudaya Healthcare (Medicover Hospitals)

4.5
Compare

Paras Hospital

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