Upload Button Icon Add office photos

Filter interviews by

Vuram Interview Questions, Process, and Tips

Updated 6 Dec 2024

Top Vuram Interview Questions and Answers

View all 13 questions

Vuram Interview Experiences

Popular Designations

25 interviews found

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

I applied via campus placement at RMK Engineering College, Thiruvallur and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Questions were asked from Pesuedocode,Flow Chart,Quntitative(Time Speed Distance,Profit and Loss,Ratio,Number series) IT Baasics,Essay Writing

Round 2 - Technical 

(2 Questions)

  • Q1. Tell about your project
  • Q2. SQL,DBMS questions
Round 3 - HR 

(2 Questions)

  • Q1. Self Introduction
  • Q2. Work culture and Discuss with some basic topics

Interview Preparation Tips

Interview preparation tips for other job seekers - To crack the Online test prepare for Pseudocode and flow chart

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (181)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was easy to crack the round

Round 2 - Technical 

(3 Questions)

  • Q1. What was view in sql
  • Ans. 

    VIEW in SQL is a virtual table created by a query. It allows users to save complex queries for easy access.

    • VIEW is a virtual table created by a SELECT query

    • It allows users to save complex queries for easy access

    • Views can be used to restrict access to certain columns or rows of a table

  • Answered by AI
  • Q2. What is foreign key in sql
  • Ans. 

    Foreign key in SQL is a field in a table that is a primary key in another table, establishing a relationship between the two tables.

    • A foreign key ensures referential integrity by enforcing a link between data in two tables.

    • It helps maintain consistency and prevent orphaned records.

    • Example: In a database with tables for 'orders' and 'customers', the 'customer_id' in the 'orders' table would be a foreign key referencing

  • Answered by AI
  • Q3. Java basics exception handling
Round 3 - HR 

(2 Questions)

  • Q1. Money is more important?
  • Q2. What happens if ur selected?
  • Ans. 

    If selected, I will bring my skills, dedication, and enthusiasm to the role, contributing to the success of the team and organization.

    • I will undergo training to familiarize myself with the company's processes and procedures.

    • I will work closely with my team members to learn from their expertise and contribute to projects.

    • I will strive to meet and exceed expectations in my role, taking on new challenges and responsibilit

  • Answered by AI

Skills evaluated in this interview

Associate Consultant Interview Questions asked at other Companies

Q1. There are 2 cricket teams, A and B, with 11 players each. If every player of team A shakes hands with every player of team B(once), what will be the total number of handshakes?
View answer (15)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude questions on Time, Volume, Arithmetic, Logical, Verbal

Round 2 - Coding Test 

Code on the difference between the two dates

Round 3 - HR 

(4 Questions)

  • Q1. Basic questions
  • Q2. Introduce yourself
  • Q3. Hobbies and self-interest
  • Q4. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - You have to be pretty confident in answering all technical questions

Technical Consultant Interview Questions asked at other Companies

Q1. Oops C and java difference Query for selecting all columns from a table 10 uses of a pen Personal questions like the place we belong to What do you know about our company The interview was not really good ,I got selected 😅 for role of tech... read more
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude questions

Round 2 - Coding Test 

Basic patterns like star, numbers . Prepare some basic things from websites

Associate Consultant Interview Questions asked at other Companies

Q1. There are 2 cricket teams, A and B, with 11 players each. If every player of team A shakes hands with every player of team B(once), what will be the total number of handshakes?
View answer (15)

Vuram interview questions for popular designations

 Associate Consultant

 (3)

 Software Engineer

 (3)

 Associate Technical Consultant

 (2)

 Intern

 (2)

 Software Developer

 (2)

 Software Developer fresher

 (2)

 System Engineer

 (2)

 Customer Support Executive

 (1)

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

Basic aptitude questions

Round 2 - Coding Test 

Practice some basic patterns provided in websites. Star, number patterns

Associate Consultant Interview Questions asked at other Companies

Q1. There are 2 cricket teams, A and B, with 11 players each. If every player of team A shakes hands with every player of team B(once), what will be the total number of handshakes?
View answer (15)

Get interview-ready with Top Vuram Interview Questions

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

I applied via campus placement at Anjalai Ammal Mahalingam Engineering College, Thanjavur and was interviewed before Sep 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 - Aptitude Test 

1st round consists of logical, verbal, quantitative aptitude and essay written and 2 programming questions.

Round 3 - One-on-one 

(3 Questions)

  • Q1. 2nd Round will be Technical interview here some technical questions and logical thinking and programming abilities to be tested.
  • Q2. Remove duplicates from array and string
  • Ans. 

    Remove duplicates from array of strings

    • Create a Set to store unique strings

    • Iterate through the array and add each string to the Set

    • Convert the Set back to an array to get the unique strings

  • Answered by AI
  • Q3. Logical thinking
Round 4 - One-on-one 

(3 Questions)

  • Q1. 3rd round will be the same as the 2nd round here some more than intermediate level questions are asked.
  • Q2. Reverse a string but special characters remains the same position
  • Ans. 

    Reverse a string while keeping special characters in the same position.

    • Iterate through the string and store special characters in a separate array.

    • Reverse the string excluding special characters.

    • Combine the reversed string with the special characters in their original positions.

  • Answered by AI
  • Q3. Multiplication of 2 numbers without using built in function, loop, +,* operator, recursion
  • Ans. 

    Use bitwise operations to perform multiplication of two numbers.

    • Use bitwise operations like left shift and bitwise AND to perform multiplication.

    • For example, to multiply 3 and 5, you can do: (3 << 2) + (3 << 0) = 12 + 3 = 15.

    • Understand how binary multiplication works to implement the solution.

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. In hr round general questions and asking questions from previous 3 rounds of interviews that's it

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well aptitude and be ready to coding.

Skills evaluated in this interview

Associate Technical Consultant Interview Questions asked at other Companies

Q1. Which one is better to store data, Excel or Relation Database System?
View answer (1)

I applied via Approached by Company and was interviewed in Dec 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Worst experience with Vuram, interview panel asking irrelevant questions
  • Ans. If you are Dot net developer he will ask Java development questions
  • Answered Anonymously
  • Q2. If you don’t have experience on some technical stuff, they will ask more on that
Round 2 - Technical 

(1 Question)

  • Q1. 1hr wasted time, I will never recommend this again

Interview Preparation Tips

Interview preparation tips for other job seekers - I had a discussion with panel of power apps developer role during my L1 round interview for a senior developer position. The guy didn’t ask any questions about power platform related instead he asked what he know

Power Apps Developer Interview Questions asked at other Companies

Q1. What are variables in power apps
View answer (1)
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Dec 2022. There were 2 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 

(2 Questions)

  • Q1. Worst worsted worst very worst no
  • Ans. 

    The question is nonsensical and has no answer.

    • The question is not related to software engineering or any field for that matter.

    • It is likely a mistake or a joke question.

    • There is no meaningful response to give.

  • Answered by AI
  • Q2. Don’t go worsted really bad experience with this company

Interview Preparation Tips

Interview preparation tips for other job seekers - I will never recommend this company don’t waste your time

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (181)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic questions on all the concepts of QA reasoning and VA

Round 2 - Technical 

(1 Question)

  • Q1. Tell me about yourself Questions based on your resume Java oops Project Java coding question simple
Round 3 - Technical 

(1 Question)

  • Q1. Same as round 2 but advance questions Coding question was advanced Nature
Round 4 - HR 

(1 Question)

  • Q1. Simple hr interview they asked about family and are u ready to relocate and some description of their company as well

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a good company but when compared with its technology it's a no code company with less opportunities if u want to have a Career in development

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -&gt; 2 -&gt; 3 -&gt; 2 -&gt; 1 -&gt; NULL Outpu... read more
Add answer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was an aptitude round. We were also asked to write a logic for a problem.

Round 2 - Technical 

(1 Question)

  • Q1. Basic technical questions, OOPS, java etc..
Round 3 - Technical 

(1 Question)

  • Q1. About projects, MySQL, and other OOPS concepts
Round 4 - HR 

(1 Question)

  • Q1. Basic details about self, family

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in what you know!

Associate Technical Consultant Interview Questions asked at other Companies

Q1. Which one is better to store data, Excel or Relation Database System?
View answer (1)

Vuram Interview FAQs

How many rounds are there in Vuram interview?
Vuram interview process usually has 3-4 rounds. The most common rounds in the Vuram interview process are Technical, Aptitude Test and HR.
How to prepare for Vuram 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 Vuram. The most common topics and skills that interviewers at Vuram expect are Management, Monitoring, Analytics, SQL and Troubleshooting.
What are the top questions asked in Vuram interview?

Some of the top questions asked at the Vuram interview -

  1. Multiplication of 2 numbers without using built in function, loop, +,* operator...read more
  2. Reverse a string but special characters remains the same posit...read more
  3. Screenshare and capture xpath for Amazon drop d...read more

Tell us how to improve this page.

Vuram Interview Process

based on 10 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
MAQ Software Interview Questions
1.9
 • 97 Interviews
View all

Vuram Reviews and Ratings

based on 67 reviews

4.2/5

Rating in categories

4.3

Skill development

4.0

Work-life balance

3.8

Salary

4.5

Job security

4.3

Company culture

3.7

Promotions

4.1

Work satisfaction

Explore 67 Reviews and Ratings
Senior Technical Consultant
49 salaries
unlock blur

₹9.9 L/yr - ₹23.5 L/yr

Technical Consultant
47 salaries
unlock blur

₹5.2 L/yr - ₹11.6 L/yr

Associate Technical Consultant
42 salaries
unlock blur

₹4 L/yr - ₹9.9 L/yr

Quality Engineer
24 salaries
unlock blur

₹5.5 L/yr - ₹9.4 L/yr

Associate Consultant
13 salaries
unlock blur

₹3.7 L/yr - ₹6.4 L/yr

Explore more salaries
Compare Vuram with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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