Upload Button Icon Add office photos
Engaged Employer

i

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

Trianz Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Trianz AWS Devops Engineer Interview Questions and Answers

Updated 28 Mar 2024

Trianz AWS Devops Engineer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About devops processes and cloud related questions

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 experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. Share Your experience on Creating AWS resources. GUI or using IAC tool?
  • Ans. 

    I primarily use IAC tools like Terraform to create AWS resources for consistency, version control, and automation.

    • I prefer using IAC tools like Terraform for creating AWS resources as it allows for infrastructure as code, version control, and automation.

    • Using IAC tools ensures consistency in resource creation across environments.

    • GUI can be useful for quick prototyping or exploring AWS services, but IAC is more efficien...

  • Answered by AI
  • Q2. Have you got any issues in pod, while creating or monitoring pods in the kubernetes cluster?
  • Ans. 

    Yes, I have faced issues while creating or monitoring pods in a Kubernetes cluster.

    • One common issue is pods getting stuck in a pending state due to resource constraints or scheduling issues.

    • Another issue is pods crashing frequently due to misconfigured settings or incompatible container images.

    • Monitoring pods can be challenging, especially when dealing with a large number of pods and trying to track their health and pe...

  • Answered by AI
  • Q3. What are use of Versioning in S3? Have you got any issues in working using S3?
  • Ans. 

    Versioning in S3 allows for preserving, retrieving, and restoring every version of an object stored in a bucket.

    • Enables recovery from unintended user actions or application failures

    • Helps in maintaining different versions of objects for audit or compliance purposes

    • Prevents accidental deletion or overwriting of objects

    • Useful for tracking changes and rolling back to previous versions if needed

  • Answered by AI
  • Q4. What are the Devops tools, you have experience on?
  • Ans. 

    I have experience with various DevOps tools including Jenkins, Docker, Ansible, and Terraform.

    • Jenkins

    • Docker

    • Ansible

    • Terraform

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good interview team. Perfect questions for Round 1.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Questions on Network Part
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(7 Questions)

  • Q1. If i delete an instance on the console and then i deploy the same instance terraform template how will terraform behave?
  • Ans. 

    Terraform will recreate the instance as per the template

    • Terraform will detect that the instance is missing and recreate it based on the template

    • The new instance will have the same configuration as defined in the template

    • Any changes made to the instance outside of Terraform will be lost

  • Answered by AI
  • Q2. If i have an instance configuration terraform template, and i manually add an ebs to it through console and then give terraform apply how will terraform behave?
  • Q3. What will be the IP range if i need 500 IPs?
  • Ans. 

    The IP range for 500 IPs would typically be a /23 subnet.

    • For 500 IPs, you would need at least a /23 subnet.

    • A /23 subnet provides 512 IP addresses (2^9 = 512), with 510 usable IPs after subtracting network and broadcast addresses.

    • The IP range for a /23 subnet would be from x.x.x.0 to x.x.x.255.

  • Answered by AI
  • Q4. Python coding on string manipulation
  • Q5. What are the health checks after creating instances - 2/2? What do they mean?
  • Ans. 

    Health checks after creating instances ensure the instances are functioning properly.

    • Instance status checks ensure the instance is reachable and responding to traffic.

    • System status checks ensure the underlying hardware is functioning properly.

    • Example: If an instance fails the system status check, it may indicate a problem with the underlying host hardware.

  • Answered by AI
  • Q6. How to deploy microservices?
  • Ans. 

    Microservices can be deployed using containerization tools like Docker and orchestration tools like Kubernetes.

    • Use containerization tools like Docker to package each microservice along with its dependencies into a container image.

    • Leverage orchestration tools like Kubernetes to manage and deploy multiple microservices across a cluster of machines.

    • Implement continuous integration and continuous deployment (CI/CD) pipelin...

  • Answered by AI
  • Q7. Write terraform code to launch an ec2 instance in a vpc and attach a role to it
  • Ans. 

    Launch an EC2 instance in a VPC and attach a role using Terraform

    • Define a VPC resource in Terraform

    • Define a subnet resource within the VPC

    • Create a security group for the EC2 instance

    • Define an IAM role for the EC2 instance

    • Launch an EC2 instance within the subnet and attach the IAM role

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

(4 Questions)

  • Q1. Day to day activities
  • Q2. Why do you learn various technologies?
  • Q3. How will it be beneficial for you to learn various technologies because you will be working with limited technologies?
  • Q4. Your project workflow, and how do you manage your tasks

Interview Preparation Tips

Topics to prepare for KPIT Technologies AWS Devops Engineer interview:
  • AWS
  • Terraform
  • Python
Interview preparation tips for other job seekers - Go through AWS, Python and Terraform. If they offer you an offer letter and that is lesser than what you've asked for, they will ask you to accept it and say we will increment it in future. But later they say sorry we can't increment it'll be the same. I experienced this, I had an offer of 16 and i asked 17.5 they said they're good to go. Then I got an offer for 13.75 from Kpit and they said please accept it, and said if you've any other offer in future we'll try matching it. But when I asked them for my new offer to be released they said we can't even give 17.5 we can only give 13.75. So please beware.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is docker File ? Explain
  • Ans. 

    Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

    • Dockerfile is used to build Docker images by specifying a series of instructions.

    • It includes commands like FROM, RUN, COPY, CMD, etc.

    • Each instruction in the Dockerfile creates a layer in the image.

    • Dockerfile is used to automate the process of creating Docker containers.

    • Example: FROM ubuntu:latest, RUN

  • Answered by AI
  • Q2. What is webhook & why??
  • Ans. 

    Webhook is a method of augmenting or altering the behavior of a web page, or web application, with custom callbacks.

    • Webhook is a way for an application to provide other applications with real-time information.

    • It allows developers to receive instant notifications when a specific event occurs.

    • Webhooks are commonly used in automation, continuous integration, and deployment processes.

    • Examples include receiving notification...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with Devops tools

Skills evaluated in this interview

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

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is Kubernetes networking and how does it work
  • Ans. 

    Kubernetes networking is the way in which different pods and services communicate with each other within a Kubernetes cluster.

    • Kubernetes networking allows pods to communicate with each other across nodes in the cluster.

    • It uses a flat network model where each pod gets its own IP address.

    • Kubernetes networking can be implemented using various plugins like Calico, Flannel, or Cilium.

    • Network policies can be defined to contr...

  • Answered by AI
  • Q2. How does a pod communicate with other pods
  • Ans. 

    Pods communicate with other pods through network communication within the same Kubernetes cluster.

    • Pods can communicate with each other using services, which provide a stable endpoint for communication.

    • Pods can use DNS names to communicate with other pods within the same cluster.

    • Pods can also communicate directly using IP addresses within the cluster network.

    • Communication between pods can be secured using network polici...

  • Answered by AI
  • Q3. What is ingress controller and how it is used in kubernetes networking
  • Ans. 

    Ingress controller is a Kubernetes resource that manages external access to services within a cluster.

    • Ingress controller acts as a traffic manager, routing incoming traffic to the appropriate services based on rules defined in the Ingress resource.

    • It allows for the configuration of HTTP and HTTPS routing, load balancing, SSL termination, and more.

    • Popular Ingress controllers include Nginx Ingress Controller, Traefik, an...

  • Answered by AI
  • Q4. What is the difference between ingress and service
  • Ans. 

    Ingress controls the external access to services in a cluster, while service defines a set of pods and how they can be accessed.

    • Ingress manages external access to services in a cluster

    • Service defines a set of pods and how they can be accessed

    • Ingress can provide load balancing, SSL termination, and routing based on hostnames or paths

    • Service can be of type ClusterIP, NodePort, LoadBalancer, or ExternalName

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys AWS Devops Engineer interview:
  • Kubernetes
Interview preparation tips for other job seekers - Requirement was a kubernetes project

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

Trianz Interview FAQs

How many rounds are there in Trianz AWS Devops Engineer interview?
Trianz interview process usually has 1 rounds. The most common rounds in the Trianz interview process are Technical.

Recently Viewed

SALARIES

HashedIn by Deloitte

INTERVIEWS

HashedIn by Deloitte

No Interviews

INTERVIEWS

99Games

No Interviews

INTERVIEWS

HashedIn by Deloitte

No Interviews

SALARIES

HashedIn by Deloitte

SALARIES

Magna International

SALARIES

Magna International

INTERVIEWS

Kwalee India

No Interviews

INTERVIEWS

Trianz

No Interviews

INTERVIEWS

Inspired Entertainment

No Interviews

Tell us how to improve this page.

Trianz AWS Devops Engineer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more
Trianz AWS Devops Engineer Salary
based on 4 salaries
₹4.2 L/yr - ₹9 L/yr
20% less than the average AWS Devops Engineer Salary in India
View more details
Technical Lead
676 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
418 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Lead
370 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
303 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Systems Engineer
87 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Trianz with

Wipro

3.7
Compare

Infosys

3.6
Compare

Tech Mahindra

3.5
Compare

HCLTech

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