Upload Button Icon Add office photos

Filter interviews by

Vuram Associate Technical Consultant Interview Questions and Answers

Updated 23 Sep 2023

Vuram Associate Technical Consultant Interview Experiences

2 interviews found

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

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!

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Core Java Questions write a program on multi threading & locks. Basic spring & hibernate questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have your basics brushed up.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. What is CICD ?
  • Ans. 

    CICD stands for Continuous Integration and Continuous Deployment. It is a software development practice where code changes are automatically built, tested, and deployed.

    • Automates the process of integrating code changes into a shared repository

    • Automatically builds and tests the code to ensure it is functional

    • Automatically deploys the code to production or staging environments

    • Helps in detecting and fixing integration err

  • Answered by AI
  • Q2. How to create image out of running container ?
  • Ans. 

    To create an image out of a running container, you can use the 'docker commit' command.

    • Use 'docker commit' command to create an image from a running container

    • Syntax: docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]]

    • Example: docker commit container_id repository_name:tag

  • Answered by AI
  • Q3. What is the difference between docker add and copy command?
  • Ans. 

    Docker add command can fetch a file from a URL and add it to the image, while copy command copies files from the host machine to the image.

    • Docker add command can fetch files from URLs and add them to the image

    • Copy command copies files from the host machine to the image

    • Add command can also automatically extract compressed files during the build process

    • Copy command is more commonly used for copying local files

  • Answered by AI
  • Q4. What is freestyle project and pipeline ?
  • Ans. 

    A freestyle project is a type of project in Jenkins that allows users to configure the build process in any way they want. A pipeline is a set of automated steps that define the process for building, testing, and deploying code.

    • Freestyle project in Jenkins allows users to configure build process manually

    • Pipeline in Jenkins is a set of automated steps for building, testing, and deploying code

    • Freestyle projects are more ...

  • Answered by AI
  • Q5. What is the difference between docker swarm and docker compose ?
  • Ans. 

    Docker Swarm is used for orchestrating multiple Docker containers across multiple hosts, while Docker Compose is used for defining and running multi-container Docker applications.

    • Docker Swarm is a container orchestration tool that allows you to manage a cluster of Docker hosts.

    • Docker Compose is a tool for defining and running multi-container Docker applications.

    • Docker Swarm is used for scaling and managing a cluster of...

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. What is the project you worked can you plz explain?
  • Q2. What is VPC ?
  • Ans. 

    VPC stands for Virtual Private Cloud, a virtual network dedicated to a single organization's resources in the cloud.

    • Allows organizations to have control over their virtual network environment

    • Enables customization of network configuration

    • Provides security by allowing isolation of resources

    • Can connect to on-premises data centers or other VPCs using VPN or Direct Connect

  • Answered by AI
  • Q3. What is CICD pipeline and its stages ?
  • Ans. 

    CICD pipeline is a process that automates the building, testing, and deployment of software.

    • Continuous Integration (CI) - code changes are integrated into a shared repository multiple times a day.

    • Continuous Testing - automated tests are run to ensure code quality.

    • Continuous Deployment - code changes are automatically deployed to production.

    • Stages include: build, test, deploy, and monitor.

    • Tools like Jenkins, GitLab, and

  • Answered by AI
  • Q4. VPC peering concept ?
  • Ans. 

    VPC peering allows connecting two VPCs to communicate using private IP addresses.

    • VPC peering enables instances in different VPCs to communicate as if they are within the same network.

    • Traffic between peered VPCs stays within the private IP space and does not traverse the internet.

    • VPC peering does not involve a gateway, VPN, or direct connection.

    • Both VPCs must have non-overlapping IP ranges for successful peering.

    • Example...

  • Answered by AI
  • Q5. Whole concept of VPC , subnet and route table and NAT gateway ?
  • Ans. 

    VPC is a virtual private cloud that allows you to create isolated networks within the cloud environment. Subnets are subdivisions of a VPC, route tables define how traffic is directed within the VPC, and NAT gateway allows instances in a private subnet to access the internet.

    • VPC is a virtual private cloud that provides a logically isolated section of the AWS Cloud where you can launch resources.

    • Subnets are subdivisions...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basics Quesestions?

Interview Preparation Tips

Interview preparation tips for other job seekers - I joined but Toxic environment , Don't get Technical support they work for Product and doesn't have any proper documentation Not good at all .

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How does spring injects dependencies
  • Ans. 

    Spring injects dependencies through inversion of control and dependency injection.

    • Spring uses inversion of control to manage objects and their dependencies.

    • Dependencies are injected into a class through constructor injection, setter injection, or field injection.

    • Spring container is responsible for creating and managing objects and their dependencies.

    • Example: @Autowired annotation is used for dependency injection in Spr

  • Answered by AI
  • Q2. How does Hibernate connects to DB
  • Ans. 

    Hibernate connects to the database using JDBC (Java Database Connectivity) API.

    • Hibernate uses JDBC API to establish a connection to the database.

    • It uses JDBC drivers to communicate with the database.

    • Hibernate configuration file contains database connection details.

    • SessionFactory in Hibernate is responsible for creating sessions and managing connections.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How to secure your APIs
  • Ans. 

    Securing APIs involves using authentication, authorization, encryption, and monitoring.

    • Implement authentication mechanisms such as OAuth, JWT, or API keys

    • Use authorization to control access to APIs based on roles and permissions

    • Encrypt data transmission using HTTPS/TLS to prevent eavesdropping

    • Implement rate limiting and throttling to prevent abuse and DDoS attacks

    • Regularly monitor API traffic and logs for suspicious ac

  • Answered by AI
  • Q2. How can you configure multiple DBs in your application
  • Ans. 

    Multiple DBs can be configured in an application by using database connection pooling, configuring multiple data sources, and managing transactions across databases.

    • Use database connection pooling to efficiently manage connections to multiple databases

    • Configure multiple data sources in the application to connect to different databases

    • Implement transaction management to ensure data consistency across multiple databases

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Family Background and Career History
  • Q2. Salary Expectations

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Cisco Servers Installation
  • Q2. HPe servers installation

Interview Preparation Tips

Interview preparation tips for other job seekers - For technical persons softenger is best
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. They first ask me about my project then ask more how it was working ,and more deep questions on that to understand how much I know about the project I worked on .
  • Q2. Spring Authentitation and Authorization,And Kubernetes

Interview Preparation Tips

Interview preparation tips for other job seekers - Just look into your previous projects what you have done,and be sure on what you know,
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Case Study 

General discussion on profile and work experience

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

I applied via Referral and was interviewed before Aug 2023. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. About batch processing
  • Q2. About exception handling
Round 2 - Technical 

(2 Questions)

  • Q1. About project discussion in details
  • Q2. Aws services mainly
Round 3 - Behavioral 

(2 Questions)

  • Q1. Handling a team
  • Q2. Micro service architecture
Round 4 - HR 

(2 Questions)

  • Q1. About personal things
  • Q2. About financial thing

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on batch processing and exception handling in spring boot and different micro service architecture
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude which is based on computer science skills

Round 2 - Technical 

(1 Question)

  • Q1. Basic coding questions

Vuram Interview FAQs

How many rounds are there in Vuram Associate Technical Consultant interview?
Vuram interview process usually has 5 rounds. The most common rounds in the Vuram interview process are Technical, HR and One-on-one Round.
What are the top questions asked in Vuram Associate Technical Consultant interview?

Some of the top questions asked at the Vuram Associate Technical Consultant 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. Remove duplicates from array and str...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Vuram interviews
Campus Placement
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Vuram Associate Technical Consultant Salary
based on 24 salaries
₹5 L/yr - ₹7.4 L/yr
33% less than the average Associate Technical Consultant Salary in India
View more details

Vuram Associate Technical Consultant Reviews and Ratings

based on 12 reviews

4.0/5

Rating in categories

4.6

Skill development

3.8

Work-Life balance

3.6

Salary & Benefits

4.3

Job Security

4.4

Company culture

3.1

Promotions/Appraisal

4.1

Work Satisfaction

Explore 12 Reviews and Ratings
Technical Consultant
54 salaries
unlock blur

₹5 L/yr - ₹11.6 L/yr

Senior Technical Consultant
41 salaries
unlock blur

₹8.1 L/yr - ₹24.1 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.6
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