AWS Cloud Engineer
100+ AWS Cloud Engineer Interview Questions and Answers

Asked in Wipro

Q. Why use S3 when EBS and EFS are available?
S3 is ideal for scalable, durable object storage, while EBS and EFS serve different use cases for block and file storage.
S3 is designed for storing and retrieving any amount of data from anywhere on the web, making it ideal for static website hosting.
EBS provides block storage for EC2 instances, suitable for databases and applications requiring low-latency access.
EFS offers scalable file storage for use with multiple EC2 instances, ideal for shared file systems and applicatio...read more

Asked in Wipro

Q. What is a DDoS attack, and what methods would you use to prevent it?
DDOS attack is a malicious attempt to disrupt normal traffic of a targeted server or network by overwhelming it with a flood of internet traffic.
DDOS stands for Distributed Denial of Service
Attackers use multiple devices to send a huge amount of traffic to the target server or network
It can cause the server or network to crash or become unavailable to legitimate users
Prevention measures include using firewalls, load balancers, and DDOS mitigation services
AWS Cloud Engineer Interview Questions and Answers for Freshers

Asked in Deloitte

Q. Diff bw c and .py *How rate Ur self in .py *Types of data types *Diff bw list Nd tuple *How many operators in .py *Oops concepts *Inheritance with example *Polymorphism *Write program for even numbers from 0-10...
read moreInterview questions for AWS Cloud Engineer including Python basics, OOP concepts, and video editing skills.
Differentiate between C and Python
Rate yourself in Python
Types of data types in Python
Difference between list and tuple in Python
Number of operators in Python
Object-oriented programming concepts
Example of inheritance in Python
Polymorphism in Python
Program to print even numbers from 0-100 in Python
Video editing skills using CyberLink PowerDirector 15 Ultimate

Asked in Wipro

Q. What is a NAT gateway and where is it used?
NAT gateway is a managed service that allows instances in a private subnet to connect to the internet.
NAT gateway acts as a gateway for instances in a private subnet to access the internet.
It provides a public IP address to instances in the private subnet.
It helps in controlling the inbound and outbound traffic for instances in the private subnet.
It is used in scenarios where instances in a private subnet need to access the internet but do not have a public IP address.
It is a...read more

Asked in DXC Technology

Q. How do you provision EC2 instances and Security Groups using CloudFormation?
I use CloudFormation templates to provision EC2 instances and security groups.
Create a CloudFormation template with the necessary resources
Specify the instance type, AMI, and other details in the template
Define the security group rules in the template
Use the AWS CLI or console to deploy the CloudFormation stack

Asked in Wipro

Q. What is Disaster Recovery (DR) and how do you handle it?
DR stands for Disaster Recovery. It involves implementing strategies and procedures to ensure business continuity in the event of a disaster.
DR is the process of preparing for and recovering from a disaster that affects the availability of IT infrastructure and services.
It includes creating backup systems, replicating data, and establishing failover mechanisms.
DR plans should be regularly tested and updated to ensure effectiveness.
AWS provides various services like AWS Backup...read more
AWS Cloud Engineer Jobs




Asked in Pentagon System and Services

Q. How many availability zones are present in the Hyderabad and Mumbai regions?
There are 3 availability zones in Mumbai and 2 in Hyderabad regions.
Mumbai region has 3 availability zones named ap-south-1a, ap-south-1b, and ap-south-1c.
Hyderabad region has 2 availability zones named ap-south-2a and ap-south-2b.
Availability zones are distinct locations within a region that are engineered to be isolated from failures in other availability zones.

Asked in Wipro

Q. What is the use of a transit gateway?
Transit Gateway is a service that simplifies network architecture by allowing customers to connect their VPCs and on-premises networks.
Transit Gateway acts as a hub that connects multiple VPCs and VPN connections.
It simplifies network management by reducing the number of VPN connections needed.
It supports inter-region peering, allowing VPCs in different regions to communicate with each other.
It also supports Direct Connect Gateway, which allows customers to connect their on-p...read more
Share interview questions and help millions of jobseekers 🌟

Asked in TCS

Q. How do you upload files to S3 if they are larger than 50 MB?
Use the AWS CLI or SDK to upload large files to S3 by enabling multipart upload.
Enable multipart upload for large files in S3
Use the AWS CLI or SDK to initiate the multipart upload
Split the file into smaller parts (chunks)
Upload each part concurrently using multiple threads or processes
Complete the multipart upload by combining all the parts

Asked in Wipro

Q. How do you connect on-premise infrastructure to your VPC?
To connect on-prem to VPC, use VPN or Direct Connect.
Create a virtual private gateway in VPC
Create a customer gateway on-premises
Create a VPN connection or Direct Connect
Configure routing tables to allow traffic between on-prem and VPC
Asked in Softech Infinium Solutions

Q. Explain the concept of EC2 instances, root devices, and block devices.
EC2 instances in AWS have root devices for the operating system and block devices for additional storage.
EC2 instances have a root device that contains the operating system and boot volume.
Block devices are additional storage volumes that can be attached to EC2 instances.
Block devices can be either EBS volumes or instance store volumes.
EBS volumes are persistent storage volumes that persist independently from the life of an instance.
Instance store volumes are temporary storag...read more
Asked in Softech Infinium Solutions

Q. How many types of EC2 instances are there?
There are several types of EC2 instances available in AWS to cater to different computing needs.
There are general purpose instances like t2, m5, and m6g.
There are compute optimized instances like c5 and c6g.
There are memory optimized instances like r5 and x1e.
There are storage optimized instances like i3 and d2.
There are GPU instances like p3 and g4.
There are FPGA instances like f1.
There are instances for high performance computing like hpc6.
There are instances for networking...read more
Asked in Softech Infinium Solutions

Q. How do you perform S3 cross-region replication?
S3 cross region replication allows automatic copying of objects between S3 buckets in different AWS regions.
Enable versioning on source and destination buckets
Create a replication rule in the source bucket specifying the destination bucket and region
Ensure appropriate IAM roles and policies are set up for replication
Monitor replication progress using CloudWatch metrics

Asked in Applied AI Consulting

Q. What are the steps to create a Kubernetes Cluster from scratch?
Creating a Kubernetes Cluster involves setting up master and worker nodes, configuring networking, and deploying applications.
Set up a master node by installing Kubernetes control plane components like kube-apiserver, kube-controller-manager, kube-scheduler, and etcd.
Set up worker nodes by installing kubelet and kube-proxy.
Configure networking using a CNI plugin like Calico or Flannel.
Deploy applications using kubectl or Helm charts.
Monitor and manage the cluster using tools ...read more

Asked in Unify Technologies

Q. what is cloud? how many type of cloud r there?
Cloud is a network of remote servers that provide on-demand computing resources and services.
There are three types of cloud: Public, Private, and Hybrid.
Public cloud is owned and operated by third-party providers, like AWS, Azure, and Google Cloud.
Private cloud is dedicated to a single organization and is managed internally or by a third-party.
Hybrid cloud is a combination of public and private cloud.
Examples of cloud services include Infrastructure as a Service (IaaS), Platf...read more

Asked in Applied AI Consulting

Q. What is the difference between the CMD and ENTRYPOINT keywords in a Dockerfile?
CMD is used to provide default command to run when container starts, while ENTRYPOINT is used to provide the main command to run when container starts.
CMD can be overridden by passing arguments during container run, while ENTRYPOINT cannot be overridden.
CMD can be used multiple times in a Dockerfile, with only the last one taking effect, while ENTRYPOINT can only be used once.
CMD is often used for providing default parameters or options to the main command specified in ENTRYP...read more

Asked in Convergent Wireless Communications

Q. Do you have any experience with other cloud-native applications?
Yes, I have experience with other cloud native applications.
I have experience with Microsoft Azure and Google Cloud Platform.
I have worked on deploying and managing applications on these platforms.
I am familiar with the different services offered by these platforms and their pricing models.
For example, I have used Azure App Service to deploy web applications and Google Cloud Storage for storing and retrieving data.

Asked in Cyfuture

Q. what are aws services? define the term EC2 instances. role of S3 buckets . link validation of S3 bucket.
AWS services are a collection of cloud computing services provided by Amazon Web Services. EC2 instances are virtual servers in the cloud. S3 buckets are storage containers for data. Link validation of S3 bucket ensures data integrity and security.
AWS services are a collection of cloud computing services provided by Amazon Web Services.
EC2 instances are virtual servers in the cloud that can be easily scaled up or down based on demand.
S3 buckets are storage containers for data...read more

Asked in Applied AI Consulting

Q. How do you create a CI/CD pipeline?
To create a CI/CD pipeline, you need to define the steps for continuous integration and continuous deployment.
Set up version control system (e.g. Git)
Choose a CI/CD tool (e.g. Jenkins, CircleCI)
Define build, test, and deployment stages
Automate the process with scripts or configuration files
Integrate with monitoring and alerting tools for feedback
Asked in Blitzar Technologies

Q. What services are you familiar with in Amazon Web Services (AWS)?
I am familiar with various AWS services including compute, storage, databases, and networking solutions.
EC2 (Elastic Compute Cloud) for scalable virtual servers.
S3 (Simple Storage Service) for object storage and data backup.
RDS (Relational Database Service) for managed relational databases like MySQL and PostgreSQL.
Lambda for serverless computing and event-driven applications.
VPC (Virtual Private Cloud) for creating isolated network environments.

Asked in Applied AI Consulting

Q. How do you integrate Jenkins with GitHub?
Integrating Jenkins with Github allows for automated build and deployment processes.
Install the Github plugin in Jenkins
Create a new Jenkins job and link it to the Github repository
Set up webhooks in Github to trigger Jenkins builds
Configure Jenkins to pull code from Github and run build scripts
Monitor build status and view logs in Jenkins dashboard
Asked in Softech Infinium Solutions

Q. How much experience do you have with AWS cloud?
I have 5 years of experience working with AWS cloud services.
5 years of hands-on experience with AWS cloud services
Proficient in setting up and managing EC2 instances, S3 storage, and VPCs
Experience with AWS Lambda, RDS, IAM, and CloudFormation
Worked on designing and implementing scalable and cost-effective cloud solutions
Certified AWS Solutions Architect

Asked in Unify Technologies

Q. what is ec2 ND S3 nd subnets nd internet gateway?
EC2 is a virtual server in AWS, S3 is a storage service, subnets are network partitions, and internet gateway is a connection to the internet.
EC2 is a virtual server that can be used to run applications and services
S3 is a storage service that allows you to store and retrieve data
Subnets are network partitions that allow you to segment your network
Internet Gateway is a connection to the internet that allows your instances to communicate with the internet
Asked in Softech Infinium Solutions

Q. What is the purpose of using IAM?
IAM (Identity and Access Management) is used to securely control access to AWS services and resources.
IAM allows you to create and manage users, groups, and roles to control who can access specific resources.
It helps in setting permissions for users to access AWS services and resources.
IAM enables you to set up multi-factor authentication for added security.
It allows you to create and manage policies to define permissions for different users or groups.
IAM helps in auditing an...read more

Asked in Vodafone Idea

Q. How many years of experience do you have in cloud and DevOps?
I have 5 years of experience in cloud and DevOps.
5 years of hands-on experience in designing, implementing, and managing cloud infrastructure on AWS
Proficient in using DevOps tools like Jenkins, Docker, Kubernetes, and Terraform
Experience in automating deployment processes, monitoring systems, and ensuring scalability and reliability
Worked on projects involving CI/CD pipelines, infrastructure as code, and containerization
Certifications like AWS Certified Solutions Architect o...read more

Asked in Unify Technologies

Q. how to terminate intense?how to delete S3 bucket?
To terminate an instance, use the EC2 console or CLI. To delete an S3 bucket, use the S3 console or CLI.
To terminate an instance using the EC2 console, select the instance and click on 'Actions' > 'Instance State' > 'Terminate'.
To terminate an instance using the CLI, use the 'terminate-instances' command.
To delete an S3 bucket using the S3 console, select the bucket and click on 'Delete'.
To delete an S3 bucket using the CLI, use the 'delete-bucket' command.

Asked in Unify Technologies

Q. what is snap short? what is is elastic Ip?
Snapshot is a copy of an EBS volume at a point in time. Elastic IP is a static, public IPv4 address that can be associated with an instance.
Snapshots are used for backup, disaster recovery, and migrating data between regions.
Elastic IP allows an instance to maintain the same public IP address even if it is stopped and started again.
Elastic IP can be associated with a network interface or a NAT gateway.

Asked in Pentagon System and Services

Q. Can we directly store files in S3 Glacier?
No, files cannot be directly stored in S3 Glacier
S3 Glacier is designed for long-term archival storage of data
Files must first be stored in S3 Standard or S3 Infrequent Access before transitioning to Glacier
Transitioning to Glacier incurs additional costs and retrieval times

Asked in IBM

Q. What is RestFull Apis , what is api key , status code , API key
RESTful APIs enable communication between clients and servers using standard HTTP methods and status codes.
REST stands for Representational State Transfer, a software architectural style.
Uses standard HTTP methods: GET (retrieve), POST (create), PUT (update), DELETE (remove).
API key is a unique identifier used to authenticate requests to an API.
Common HTTP status codes include 200 (OK), 404 (Not Found), 500 (Internal Server Error).
Example of an API key: '12345-abcde-67890-fgh...read more
Asked in Cye Technology

Q. What types of work are involved in cloud computing?
Cloud computing involves various tasks like deployment, management, security, and optimization of cloud resources.
Deployment of applications on cloud platforms (e.g., AWS, Azure).
Management of cloud resources, including scaling and monitoring.
Ensuring security and compliance of cloud environments.
Cost optimization and budgeting for cloud services.
Data backup and disaster recovery planning.
Integration of cloud services with on-premises systems.
Interview Questions of Similar Designations
Interview Experiences of Popular Companies





Top Interview Questions for AWS Cloud Engineer Related Skills



Reviews
Interviews
Salaries
Users

