Upload Button Icon Add office photos
Engaged Employer

i

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

Acviss Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Acviss AWS Devops Engineer Interview Questions and Answers

Updated 31 Oct 2023

Acviss AWS Devops Engineer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Oct 2023. There were 3 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 Resume tips
Round 2 - Aptitude Test 

Aptitude Test with reasoning and cloud

Round 3 - Technical 

(3 Questions)

  • Q1. Coding questions based on resume
  • Q2. Code to check given number is prime or not
  • Ans. 

    Code to check if a given number is prime or not.

    • Iterate from 2 to square root of the number and check for divisibility.

    • If the number is divisible by any number other than 1 and itself, it is not prime.

    • Return true if the number is prime, false otherwise.

  • Answered by AI
  • Q3. Code to check palyndrome or not
  • Ans. 

    Code to check if a given string is a palindrome or not.

    • Create a function that takes a string as input.

    • Remove all non-alphanumeric characters and convert the string to lowercase.

    • Compare the original string with its reverse to check if it is a palindrome.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed in Sep 2019.

Interview Questionnaire 

3 Questions

  • Q1. 1. Network Architecture
  • Q2. Private Cloud, Autoscaling, AwsCodeDeploy
  • Q3. CI/CD pipeline

Interview Questionnaire 

1 Question

  • Q1. Interview questions on aws and DevOps
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. VPC architecture
  • Q2. End to end pipeline flow
  • Ans. 

    End to end pipeline flow refers to the process of automating the deployment of software from development to production.

    • Start with code development and version control

    • Move to continuous integration for automated testing

    • Utilize continuous delivery for deployment to staging environments

    • Implement continuous deployment for automatic deployment to production

    • Monitor and analyze performance and feedback for continuous improvem

  • Answered by AI

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

Interview Questionnaire 

3 Questions

  • Q1. ELB, AUTOSCALING,SECURITY GROUPS, NACL ,CUSTOM VPC ,DIRECT CONNECT, VPC PEERING, S3 POLICIES, Best practice of ec2
  • Q2. ELASTIC COMPUTECLOUD AND ELASTIC LOADBALANCING WHY WE CALL ELASTIC FOR BOTH AS ELASTIC
  • Q3. DIFFERENCE NACL & SECURITY GROUPS DOCKERS SWARM, HOW DO WE INSTALL JENKINS,
  • Ans. 

    Explanation of NACL, Security Groups, Docker Swarm, and Jenkins installation process.

    • NACL is a stateless firewall that controls inbound and outbound traffic at the subnet level.

    • Security Groups are stateful firewalls that control inbound and outbound traffic at the instance level.

    • Docker Swarm is a container orchestration tool that manages a cluster of Docker hosts.

    • Jenkins can be installed on a server using a package man...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please refer these topics completely

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

How aws vs verulation.

Round 2 - Technical 

(2 Questions)

  • Q1. Nacl vs security group?
  • Ans. 

    Nacl is a stateless firewall while security group is a stateful firewall in AWS.

    • NACL operates at the subnet level, while security groups operate at the instance level.

    • NACL rules are evaluated in order, while security group rules are evaluated independently.

    • NACLs are stateless, meaning you must create rules for both inbound and outbound traffic, while security groups are stateful.

    • NACLs are more flexible in terms of allo...

  • Answered by AI
  • Q2. Aws cloudformation
Round 3 - HR 

(2 Questions)

  • Q1. Reason for change
  • Q2. Salary discuss how much excellent

Skills evaluated in this interview

I applied via Referral and was interviewed in Oct 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Related to docker and kubernetes
Round 2 - HR 

(1 Question)

  • Q1. Salary negotiation and compensation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and polite. Interview is easy and on the topic

I applied via Walk-in and was interviewed in Mar 2022. There were 2 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 Resume tips
Round 2 - Coding Test 

How manage the code

Interview Preparation Tips

Interview preparation tips for other job seekers - You can start the course and completely understand that then after advise you r senior
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(1 Question)

  • Q1. What is docker attached and detached mode how to get out of docker exec without closing the terminal of docker exec
  • Ans. 

    Docker attached mode runs a container in the foreground, while detached mode runs it in the background.

    • In attached mode, you can see the container's output in the terminal where it was started.

    • In detached mode, the container runs in the background and you can continue using the terminal.

    • To exit a Docker exec session without closing the terminal, press Ctrl + P, Ctrl + Q.

    • You can also use the command 'exit' or 'Ctrl + D'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please study well it can be easy and as well as tough.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. How to give access of s3 bucket to user in a secure way?
  • Ans. 

    Grant access to S3 bucket securely by using IAM policies and roles.

    • Create an IAM policy with specific permissions for the S3 bucket

    • Attach the IAM policy to an IAM role

    • Assign the IAM role to the user or group that needs access

    • Use bucket policies for more granular control if needed

  • Answered by AI
  • Q2. Difference between iam role and iam group?
  • Ans. 

    IAM role is used to grant permissions to entities, while IAM group is used to group users with similar permissions.

    • IAM role is used to delegate permissions to entities like EC2 instances or Lambda functions

    • IAM group is used to group users with similar permissions for easier management

    • IAM role can be assumed by trusted entities, while IAM group is used for managing user permissions

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Acviss Interview FAQs

How many rounds are there in Acviss AWS Devops Engineer interview?
Acviss interview process usually has 3 rounds. The most common rounds in the Acviss interview process are Resume Shortlist, Aptitude Test and Technical.
How to prepare for Acviss AWS Devops Engineer 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 Acviss. The most common topics and skills that interviewers at Acviss expect are Blast Furnace, Cognos, IT Planning, Manufacturing and Web Analyzer.
What are the top questions asked in Acviss AWS Devops Engineer interview?

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

  1. code to check given number is prime or ...read more
  2. code to check palyndrome or ...read more
  3. coding questions based on res...read more

Recently Viewed

JOBS

Virtusa Consulting Services

No Jobs

REVIEWS

Virtusa Consulting Services

No Reviews

COMPANY BENEFITS

The Jaypee Group

No Benefits

REVIEWS

Virtusa Consulting Services

No Reviews

INTERVIEWS

Acviss

No Interviews

JOBS

Wallop Advertising

No Jobs

JOBS

Ion Energy Infra

No Jobs

INTERVIEWS

Biosensors International

No Interviews

SALARIES

Publicis Sapient

DESIGNATION

Tell us how to improve this page.

Acviss AWS Devops Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

BigBasket

We don't just offer jobs; we offer peace of mind.

QA Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Desktop Support Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

HR Generalist
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Android Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

IOS Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Acviss with

KPMG India

3.5
Compare

Ernst & Young

3.4
Compare

PwC

3.4
Compare

Deloitte

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