Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Vayana Team. If you also belong to the team, you can get access from here

Vayana Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Vayana AWS Devops Engineer Interview Questions and Answers

Updated 30 Apr 2024

Vayana AWS Devops Engineer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. What if I delete EC2 Machine from AWS Console and then apply Terraform, it will create a new machine or giving some error:?
  • Ans. 

    Terraform will recreate the EC2 machine if it is deleted from AWS Console.

    • Terraform will detect that the EC2 machine is missing and recreate it according to the defined configuration in the Terraform script.

    • Deleting the EC2 machine from the AWS Console will not affect the Terraform configuration, as Terraform maintains its own state file.

    • Running Terraform apply after deleting the EC2 machine will result in the creation...

  • Answered by AI
  • Q2. What is roles in ansible?
  • Ans. 

    Roles in Ansible are a way to group tasks, handlers, variables, and other related files together for easier management and reuse.

    • Roles help in organizing and structuring Ansible playbooks.

    • They promote reusability and modularity by allowing tasks to be grouped together.

    • Roles can be shared and reused across different playbooks.

    • Each role typically consists of directories like tasks, handlers, templates, vars, and defaults...

  • Answered by AI
  • Q3. What is VPC and define flow of VCP?
  • Ans. 

    VPC stands for Virtual Private Cloud, a virtual network dedicated to your AWS account.

    • VPC allows you to create a logically isolated section of the AWS Cloud where you can launch resources in a virtual network.

    • It helps in controlling your virtual networking environment, including selection of your own IP address range, creation of subnets, and configuration of route tables and network gateways.

    • The flow of VPC involves c...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Vayana AWS Devops Engineer interview:
  • AWS
  • Terraform
  • Ansible
  • Pipeline
  • cicd
  • Automation
Interview preparation tips for other job seekers - when interviewer asked me a question I suggested them to share some context so I can prepare a commands accordingly. they did not provided context on it.

so I suggest interviewer to give some background regarding question to prepare base from it.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of java(OOP, strings and collections), college projects, and how I was involved in that projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was a bit easy as the company came to college, they asked only the basics of java and my college projects and some HR-related questions like tell me about yourself and some time management questions about the projects and academics.

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

Interview Questionnaire 

3 Questions

  • Q1. Native Android
  • Q2. Java Oops concepts
  • Q3. Previously Worked project

Interview Preparation Tips

Interview preparation tips for other job seekers - They are Very Good. Be confident and Best of Luck

Interview Questionnaire 

1 Question

  • Q1. Related to payment
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Iserveu and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Data structure and algo

Interview Preparation Tips

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

I applied via Referral and was interviewed in Apr 2023. There were 6 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 

First round was aptitude and 2 coding questions

Round 3 - Technical 

(2 Questions)

  • Q1. Second round was face to face was fully technical asked me code some basic code
  • Q2. Find 2nd largest decimal number from given numbers
  • Ans. 

    Iterate through the numbers and keep track of the largest and second largest numbers.

    • Iterate through the numbers and compare each number with the current largest and second largest numbers.

    • Update the second largest number if a new number is found that is greater than the current second largest number.

    • Return the second largest number at the end of the iteration.

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

(1 Question)

  • Q1. Next was manager round it was also little technical
Round 5 - One-on-one 

(1 Question)

  • Q1. This round was with vice president
Round 6 - HR 

(1 Question)

  • Q1. This round was final round about salary negotiation and hr round
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Question was related to Java like difference between abstract class and interface,how linked list ,hash map ,arraylist work internally
  • Q2. Question related to spring boot like @autowired annotations, how spring boot is different from spring
  • Q3. Coding questions: reverseString ,factorial using Recursion only,how to find middle element in LL
Round 2 - Technical 

(2 Questions)

  • Q1. Some basic questions related to JS and Java both
  • Q2. Managerial related questions,
Round 3 - Technical 

(2 Questions)

  • Q1. Promises ,async and await related questions
  • Q2. Question related to API ,and scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - This was the interview related to backend developer, so whatever skills you provide in resume.Make sure to prepare on them well
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Soo easy aptitude exam asked questions

Round 2 - Technical 

(3 Questions)

  • Q1. What is oops in Java,fibo, and sorting
  • Ans. 

    OOPs in Java refers to Object-Oriented Programming concepts, fibo likely refers to Fibonacci sequence, and sorting refers to arranging elements in a specific order.

    • OOPs in Java includes concepts like classes, objects, inheritance, polymorphism, and encapsulation.

    • Fibo likely refers to the Fibonacci sequence, where each number is the sum of the two preceding ones (e.g. 0, 1, 1, 2, 3, 5, ...).

    • Sorting involves arranging el...

  • Answered by AI
  • Q2. Why is garbage collector is used in java etc more of java questions
  • Q3. Can main can be overloaded and overrided
  • Ans. 

    Yes, main can be overloaded but not overridden in C++.

    • Main can be overloaded by defining multiple functions with different parameters.

    • Example: int main() and int main(int argc, char* argv[])

    • Main cannot be overridden as it is a static function of the program.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and get your basics right
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts and projects
  • Q2. Collections, multithreading

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared for interview on your skills and projects

I applied via Job Portal and was interviewed in Apr 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 - Coding Test 

It was simple program of url shorting for registered and non registered users each request must have unique shortened url.

Round 3 - Technical 

(2 Questions)

  • Q1. Palindrome implementation and run time
  • Ans. 

    A palindrome is a word or phrase that reads the same backward as forward. Implementing it involves comparing the first and last characters and iterating towards the middle.

    • Implement a function that takes a string as input and returns true if it is a palindrome, false otherwise.

    • Use two pointers, one starting from the beginning and the other from the end, and compare the characters at each position.

    • If the characters matc...

  • Answered by AI
  • Q2. DSA and various algorithms and run time
Round 4 - One-on-one 

(1 Question)

  • Q1. This round was one on one with VP of engineering. Basic q and a regarding role and responsibilities
Round 5 - HR 

(1 Question)

  • Q1. Relocation, Reason For job change, future plan, careers objective

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA and algorithms
In coding test they asked you explain code and if there is any improvement needed in code.

Skills evaluated in this interview

Vayana Interview FAQs

How many rounds are there in Vayana AWS Devops Engineer interview?
Vayana interview process usually has 1 rounds. The most common rounds in the Vayana interview process are Technical.
What are the top questions asked in Vayana AWS Devops Engineer interview?

Some of the top questions asked at the Vayana AWS Devops Engineer interview -

  1. What if I delete EC2 Machine from AWS Console and then apply Terraform, it will...read more
  2. What is VPC and define flow of V...read more
  3. What is roles in ansib...read more

Tell us how to improve this page.

Vayana AWS Devops Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

BharatPe Interview Questions
3.5
 • 38 Interviews
Kissht Finance Interview Questions
3.9
 • 32 Interviews
FNZ Interview Questions
2.4
 • 29 Interviews
Uni Cards Interview Questions
3.8
 • 24 Interviews
Experian Interview Questions
3.8
 • 22 Interviews
indiagold Interview Questions
4.2
 • 22 Interviews
iServeU Interview Questions
3.4
 • 18 Interviews
View all
Software Engineer
11 salaries
unlock blur

₹6 L/yr - ₹9 L/yr

Product Manager
11 salaries
unlock blur

₹13 L/yr - ₹20 L/yr

Software Developer
10 salaries
unlock blur

₹3.2 L/yr - ₹10.6 L/yr

Junior Software Developer
9 salaries
unlock blur

₹6.5 L/yr - ₹7 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹14.5 L/yr - ₹22 L/yr

Explore more salaries
Compare Vayana with

Kissht Finance

3.9
Compare

BharatPe

3.5
Compare

VSoft Technologies

3.3
Compare

Innoviti Technologies Private Limited

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