Upload Button Icon Add office photos

Filter interviews by

Vuram Intern Interview Questions and Answers for Freshers

Updated 1 Mar 2022

Vuram Intern Interview Experiences for Freshers

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 1 Mar 2022

I applied via Campus Placement and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Do some previous year asked questions

Round 2 - Coding Test 

DO some DSA

Round 3 - Coding Test 

Do some Dsa

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA is must,and try solving previous asked questions in interviews

Interview questions from similar companies

Intern Interview Questions & Answers

ClearTax user image arunvisakh sk

posted on 19 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

Coding test based on leet code 1 hard(mountain array)and 1 easy(balance the parentheses)

Round 2 - Technical 

(2 Questions)

  • Q1. Hiring manager round- resume based
  • Q2. Basics, puzzles like find the number that should fill in the blank etc

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewers were decent but The on-boarding was poorly taken care of by the hr team specifically a lady. I had to call her multiple times to ask about my result as even after weeks they didn't publish the result and kept me in the dark. And finally called me back one-day and said there was an opening as an intern although it was initially said to be a full time offer in the SDET Team. Also I was not provided with any of the complementary amenities associated with shifting like a temporary stay which my colleagues got and when I enquired she said I had to inform her a week before while she just informed me abt the offer just the day before:).
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Mar 2024. There were 5 interview rounds.

Round 1 - Assignment 

Code and aptitude round it was.

Round 2 - Technical 

(1 Question)

  • Q1. Basic job related and programming questions
Round 3 - Technical 

(1 Question)

  • Q1. In depth problem statements
Round 4 - Technical 

(1 Question)

  • Q1. Problem statements and cv diving.
Round 5 - HR 

(1 Question)

  • Q1. Basic behavioral ques

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up on basics
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Assignment 

Online assignment questions was easy

Round 2 - Technical 

(1 Question)

  • Q1. Java MySQL spring questions asked
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic apti and logic and maths and python

Round 2 - Assignment 

Face to face basics and do all the projects in depth

Interview Preparation Tips

Interview preparation tips for other job seekers - basics clear
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Use solidworks to create a given geometry
  • Ans. 

    Creating a given geometry using Solidworks software

    • Open Solidworks software

    • Select the appropriate tools for creating the geometry

    • Use dimensions and constraints to accurately define the geometry

    • Apply materials and textures for realistic rendering

    • Save the file in the desired format

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good tool / domain knowledge

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Mostly based on resume

Interview Preparation Tips

Topics to prepare for Zenoti Finance Intern interview:
  • Reconciliation
  • Excel
Interview preparation tips for other job seekers - I don't usually leave reviews but just a lil shoutout to the Finance team of Zenoti! I was interviewed by Karthik - Senior Finance Manger. Karthik was friendly throughout the interview and patiently waited for me to respond even when I couldn't think of an answer. People like him deserve a raise! shoutout to Abhilipsa too!
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Very easy coding test just like class 2 standard

Round 2 - Aptitude Test 

Moderate
Moderate level of questions are come

Round 3 - HR 

(4 Questions)

  • Q1. About yourself? Basics coding question
  • Q2. Project related question?
  • Q3. Coding question?
  • Q4. Technical knowledge!

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Easy

Aptitude + Coding round:
Aptitude Questions (30 questions in 30 minutes), easy-medium level. Just after finishing the Coding round was there, 4 coding questions in 60 minutes.

  • Q1. Sort 0 1 2

    You have been given an integer array/list(ARR) of size 'N'. It only contains 0s, 1s and 2s. Write a solution to sort this array/list.

    Note :
    Try to solve the problem in 'Single Sca...
  • Ans. 

    Count the number of 0s, 1s and 2s in the given array. Then store all the 0s in the beginning followed by all the 1s then all the 2s.
     

  • Answered by CodingNinjas
  • Q2. Maximum Subarray Sum

    You are given an array (ARR) of length N, consisting of integers. You have to find the sum of the subarray (including empty subarray) having maximum sum among all subarrays.

    A subarr...

  • Ans. 

    I used Kadane's algorithm.....Luckily I solved same question some days before the test.

  • Answered by CodingNinjas
  • Q3. Detect and Remove Loop

    Given a singly linked list, you have to detect the loop and remove the loop from the linked list, if present. You have to make changes in the given linked list itself and return 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 the head and maintain a  prev node to store the previous node of the current outer loop node.
    3. If the inner-loop visits the node next to the outer-loop node, then a cycle exist,we will simply set the prev node's nex...
  • Answered by CodingNinjas
  • Q4. Count distinct substrings

    Given a string 'S', you are supposed to return the number of distinct substrings(including empty substring) of the given string. You should implement the program using a t...

  • Ans. HashSet based Approach

    The idea is to find all substrings and insert each substring into a HashSet. Since there will be no duplicates possible into the HashSet, after we have inserted all the substrings in the HashSet the size of the HashSet will be equal to the number of distinct substrings.

     

    The steps are as follows :

    1. Iterate through the current string and pivot each index, let’s say the pivoted index is ‘i’.
      • Iterat...
  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

He started with "Hello Rahul, Tell me about yourself briefly". Then he asked few theoretical questions and asked me about my favourite subject in engineering and why i like it. I named DS and Algorithms and reason is problem solving. He shared two coding questions in chatbox and asked me to write the code on given platform.

  • Q1. Nth Element Of Modified Fibonacci Series

    You have been given two integers ‘X’ and ‘Y’ which are the first two integers of a series and an integer ‘N’. You have to find the Nth number of the series using th...

  • Ans. 

    I wrote code and he then he asked me to look for corner cases. I said if n is large then programme will run for long time and optimized code accordingly.

  • Answered by CodingNinjas
Round 3 - Video Call 

(1 Question)

Round duration - 45-60 minutes
Round difficulty - Hard

He started round with coding question + SQL + Coding question and some questions from my projects.

  • Q1. Guess the data structure?

    Given n number of rows containing data in this "cityname1 cityname2 distance" format and data is redundant. You have to think about a data structure to store them efficiently.

  • Ans. 

    He asked me choose one tech to solve like coding language or SQL, i preferred c++ and used Unordered_map to store the data.

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in HyderabadEligibility criteria60% throughout and above with no active backlog.MAQ Software interview preparation:Topics to prepare for the interview - I read a lot of Interview Experience of others and prepared accordingly. i brushed up,- Data Structures- Basic Coding questions at GFG for MAQ Software- SQL- DBMSTime required to prepare for the interview - Half MonthInterview preparation tips for other job seekers

Tip 1 : Be very good with basic data structures.
Tip 2 : Try writing code on notepad sometimes.
Tip 3 : Focus on problem solving, during interview speak out your approach simultaneously while you are thinking about approach

Application resume tips for other job seekers

Tip 1 : Write only what you know.
Tip 2 : Make it short.

Final outcome of the interviewSelected

Skills evaluated in this interview

Intern Interview Questions & Answers

ClearTax user image arunvisakh sk

posted on 19 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

Coding test based on leet code 1 hard(mountain array)and 1 easy(balance the parentheses)

Round 2 - Technical 

(2 Questions)

  • Q1. Hiring manager round- resume based
  • Q2. Basics, puzzles like find the number that should fill in the blank etc

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewers were decent but The on-boarding was poorly taken care of by the hr team specifically a lady. I had to call her multiple times to ask about my result as even after weeks they didn't publish the result and kept me in the dark. And finally called me back one-day and said there was an opening as an intern although it was initially said to be a full time offer in the SDET Team. Also I was not provided with any of the complementary amenities associated with shifting like a temporary stay which my colleagues got and when I enquired she said I had to inform her a week before while she just informed me abt the offer just the day before:).

Vuram Interview FAQs

How many rounds are there in Vuram Intern interview for freshers?
Vuram interview process for freshers usually has 3 rounds. The most common rounds in the Vuram interview process for freshers are Coding Test and Aptitude Test.

Tell us how to improve this page.

People are getting interviews through

based on 1 Vuram interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Intern Interview Questions from Similar Companies

TCS Intern Interview Questions
3.7
 • 34 Interviews
Infosys Intern Interview Questions
3.7
 • 22 Interviews
Wipro Intern Interview Questions
3.7
 • 11 Interviews
HCLTech Intern Interview Questions
3.5
 • 7 Interviews
Mphasis Intern Interview Questions
3.4
 • 2 Interviews
View all
Vuram Intern Salary
based on 4 salaries
₹1.5 L/yr - ₹4.5 L/yr
5% more than the average Intern Salary in India
View more details

Vuram Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

3.0

Skill development

5.0

Work-Life balance

4.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Technical Consultant
47 salaries
unlock blur

₹5.2 L/yr - ₹11.6 L/yr

Senior Technical Consultant
43 salaries
unlock blur

₹9.9 L/yr - ₹23.5 L/yr

Quality Engineer
24 salaries
unlock blur

₹5.5 L/yr - ₹9.4 L/yr

Associate Technical Consultant
24 salaries
unlock blur

₹5 L/yr - ₹7.4 L/yr

Associate Consultant
13 salaries
unlock blur

₹3.7 L/yr - ₹6.4 L/yr

Explore more salaries
Compare Vuram with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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