Upload Button Icon Add office photos

Filter interviews by

Pentagon System and Services AWS Cloud Engineer Interview Questions, Process, and Tips

Updated 3 Dec 2024

Top Pentagon System and Services AWS Cloud Engineer Interview Questions and Answers

View all 7 questions

Pentagon System and Services AWS Cloud Engineer Interview Experiences

2 interviews found

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

I applied via Approached by Company and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Interview 

(2 Questions)

  • Q1. What is Transit Gateway
  • Ans. 

    Transit Gateway is a service that allows for centralized management of multiple VPCs and VPN connections in AWS.

    • Acts as a hub that connects multiple VPCs and on-premises networks

    • Simplifies network architecture by reducing the number of connections needed

    • Supports VPN connections, Direct Connect, and inter-region peering

    • Allows for routing between connected networks using route tables

  • Answered by AI
  • Q2. What is EKS and ECS

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Network, Linux, IAAS, PASS, SAAS services

Skills evaluated in this interview

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

I applied via Job Fair and was interviewed in Apr 2023. There were 2 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 tips
Round 2 - Technical 

(6 Questions)

  • Q1. Difference between public ip and private ip
  • Ans. 

    Public IP is accessible from the internet while private IP is only accessible within a private network.

    • Public IP is assigned by the internet service provider and is unique globally.

    • Private IP is assigned by the network administrator and is unique within the private network.

    • Public IP is used to communicate with devices outside the private network.

    • Private IP is used to communicate within the private network.

    • Examples of p...

  • Answered by AI
  • Q2. How EC2 can access the network
  • Ans. 

    EC2 can access the network through Elastic Network Interfaces (ENIs) and Security Groups.

    • EC2 instances are launched in a VPC and can be assigned one or more ENIs.

    • ENIs provide a virtual network interface, including a private IP address, security groups, and MAC address.

    • Security Groups act as a virtual firewall, controlling inbound and outbound traffic to the EC2 instance.

    • EC2 instances can also be assigned Elastic IP add

  • Answered by AI
  • Q3. How to install active directory
  • Ans. 

    Active Directory can be installed using the Server Manager or PowerShell.

    • Open Server Manager and select Add Roles and Features

    • Select Active Directory Domain Services and follow the wizard

    • Alternatively, use PowerShell command Install-WindowsFeature AD-Domain-Services

    • Configure the domain and add users and groups as needed

  • Answered by AI
  • Q4. Difference between domain and forest
  • Ans. 

    Domain is a logical group of computers while forest is a collection of domains.

    • Domain is a security boundary within which users, computers, and other resources are managed.

    • Forest is a collection of one or more domains that share a common schema, configuration, and global catalog.

    • Domains can be organized into a hierarchy, while forests cannot.

    • Domains can have different security policies, while forests have a common secu...

  • Answered by AI
  • Q5. Can we directly store files in s3 glacier
  • Ans. 

    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

  • Answered by AI
  • Q6. How many availability zones are present in hyderabad and Mumbai regions
  • Ans. 

    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.

  • Answered by AI

Skills evaluated in this interview

AWS Cloud Engineer Interview Questions Asked at Other Companies

asked in Wipro
Q1. What is DDOS Attack and what you will use to prevent it.
asked in Deloitte
Q2. Diff bw c and .py *How rate Ur self in .py *Types of data types * ... read more
asked in Wipro
Q3. what is NAT gateway and where it is used.
asked in Wipro
Q4. 1.What is DR and how you handle it.
Q5. How you provision EC2 instances, SG, etc thru Cloud Formation

Interview questions from similar companies

I applied via LinkedIn and was interviewed before Nov 2021. There were 3 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 

There are basic aptitude questions for freshers level

Round 3 - Technical 

(2 Questions)

  • Q1. Oops concepts, basics of sql
  • Q2. Basics of programming language

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through basics interview questions for freshers level

Interview Questionnaire 

2 Questions

  • Q1. Fsmo roles
  • Q2. Office 365

I applied via Approached by Company and was interviewed in Oct 2022. There were 4 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 

Good Process of interview was a great experience

Round 3 - Technical 

(1 Question)

  • Q1. All are of L2 profile and also having a good knowledge of network
Round 4 - HR 

(1 Question)

  • Q1. Salary talk and company policy discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company and great reviews
Just going to join soonfor getting great experience n learning
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Coding Test 

2 medium hard level questions. We just have to code and explain it. Platform doesn't have compilers.

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

I appeared for an interview before Oct 2023.

Round 1 - Coding Test 

Good Knowledge of DSA is required

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

(3 Questions)

  • Q1. Given an array Reverse array
  • Ans. 

    Reverse array of strings

    • Iterate through the array and swap elements from start to end

    • Use two pointers, one at the beginning and one at the end, and swap elements until they meet

  • Answered by AI
  • Q2. Giaven a string Reverse string
  • Ans. 

    Reverse a given string

    • Use built-in functions like reverse() or loop through the string in reverse order

    • Create a new string and append characters from the original string in reverse order

    • Convert the string to an array of characters, reverse the array, and then join it back into a string

  • Answered by AI
  • Q3. Given array find sum of all elements
  • Ans. 

    Calculate sum of all elements in a given array of strings

    • Iterate through the array and convert each element to integer before adding to sum

    • Handle edge cases like empty array or non-numeric elements

    • Return the final sum after iterating through all elements

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic C++, Multithreading
  • Q2. Be prepared for a linked list question

I applied via Internshala and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Includes basic aptitude question with additional questions based on coding languages fundamentals.....

Round 3 - Technical 

(2 Questions)

  • Q1. Question were based on oops concepts. My next question was write a code of binary search and explain it and lastly I was asked an aptitude question ...
  • Q2. Write a code of binary search and explain it
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • Divide the array into two halves

    • Compare the target value with the middle element

    • If the target value matches the middle element, return its position

    • If the target value is less than the middle element, search the left half of the array

    • If the target value is greater than the middle element, search the right half of the arra...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do work on your aptitude and practise Data structures and algorithms...

Skills evaluated in this interview

Pentagon System and Services Interview FAQs

How many rounds are there in Pentagon System and Services AWS Cloud Engineer interview?
Pentagon System and Services interview process usually has 1-2 rounds. The most common rounds in the Pentagon System and Services interview process are Resume Shortlist and Technical.
What are the top questions asked in Pentagon System and Services AWS Cloud Engineer interview?

Some of the top questions asked at the Pentagon System and Services AWS Cloud Engineer interview -

  1. How many availability zones are present in hyderabad and Mumbai regi...read more
  2. Can we directly store files in s3 glac...read more
  3. Difference between public ip and private...read more

Tell us how to improve this page.

Pentagon System and Services AWS Cloud Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
IT By Design Interview Questions
3.5
 • 40 Interviews
ConsultAdd Interview Questions
3.5
 • 36 Interviews
VDart Interview Questions
4.0
 • 29 Interviews
JMR Infotech Interview Questions
4.3
 • 29 Interviews
Systems Plus Interview Questions
4.3
 • 28 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
View all
Pentagon System and Services AWS Cloud Engineer Salary
based on 5 salaries
₹3 L/yr - ₹7.5 L/yr
42% less than the average AWS Cloud Engineer Salary in India
View more details
Engineer- Customer Support
86 salaries
unlock blur

₹1.9 L/yr - ₹4.5 L/yr

Desktop Support Engineer
37 salaries
unlock blur

₹2.3 L/yr - ₹4.6 L/yr

Cloud Engineer
28 salaries
unlock blur

₹2.5 L/yr - ₹9 L/yr

Technical Support Engineer
23 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Information Technology Support Engineer
12 salaries
unlock blur

₹3.5 L/yr - ₹6.2 L/yr

Explore more salaries
Compare Pentagon System and Services with

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

2.9
Compare

Saama Technologies

3.7
Compare

Systems Plus

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