Upload Button Icon Add office photos

Filter interviews by

Amazon Web Services Senior Application Architect Interview Questions and Answers

Updated 2 Sep 2021

Amazon Web Services Senior Application Architect Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Assignment on building architecture using AWS products.
  • Q2. Migration to cloud
  • Ans. 

    Migration to cloud involves moving applications and data from on-premise infrastructure to cloud-based infrastructure.

    • Assess current infrastructure and identify applications and data that can be migrated to the cloud

    • Choose the right cloud provider and service model based on business needs

    • Ensure data security and compliance during migration

    • Optimize applications for cloud environment to maximize benefits

    • Train staff on ne

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers don't show up. Talent executive instead thinks you didn't show up. Multiple scheduling.
Interviewer unaware of job role and asks about migrations only.
Interviewers unaware of case study requirements and solution submitted.
Waste of time if you prepare solution very hard.
Looks like work culture is bad as recruiter is working after midnight.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basics of Core Python concepts like Loops, Lambda functions.
  • Q2. Check if a string is Palindrome or not.
  • Ans. 

    Check if a string is Palindrome or not.

    • Create a function to compare the original string with its reverse

    • Ignore spaces and punctuation when checking for palindrome

    • Examples: 'racecar' is a palindrome, 'hello' is not

  • Answered by AI
  • Q3. Questions of Sql.
Round 2 - One-on-one 

(2 Questions)

  • Q1. What questions were asked regarding the projects you worked on, and what specific technicalities were included?
  • Q2. Questions on Django, Flask and REST API services.

Interview Preparation Tips

Topics to prepare for Accenture Application Developer interview:
  • Python
  • Django
  • Flask
  • SQL
Interview preparation tips for other job seekers - Easy going interview. Brush up-on your basics and then be prepared with your resume.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was Easy to medium . overall good

Round 2 - Coding Test 

It was Medium to tough level

Round 3 - One-on-one 

(2 Questions)

  • Q1. What is fifo lifo
  • Ans. 

    FIFO (First In, First Out) and LIFO (Last In, First Out) are inventory management methods.

    • FIFO: Items that are added first are the first to be removed. Like a queue.

    • LIFO: Items that are added last are the first to be removed. Like a stack.

  • Answered by AI
  • Q2. Whole data structure concepts
Round 4 - HR 

(2 Questions)

  • Q1. What do you want to change in this country if you get a chance
  • Ans. 

    I would focus on improving access to quality education for all citizens.

    • Implementing policies to ensure equal opportunities for education

    • Investing in infrastructure and resources for schools in underserved areas

    • Providing scholarships and financial aid for students from low-income families

    • Promoting vocational training programs to address skills gaps in the workforce

  • Answered by AI
  • Q2. I don't remember
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Mostly asked java 8 update and distinct number in given array and Multithreading
  • Q2. 2 program based on java 8, array reverse

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep update with java 8, collection, spring boot @Anotation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. About yourself and Recent project
  • Q2. Why you are shifting
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What are the differences between a procedure and a function?
  • Q2. Write a query to find 3rd highest salary from each department
  • Q3. What is synonym.
  • Q4. What are the indexes you used ? Diff between bitmap and btree index
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is bussniess rule ?
  • Ans. 

    A business rule is a specific guideline or constraint that dictates how a business operates or makes decisions.

    • Business rules are typically defined by stakeholders or subject matter experts.

    • They help ensure consistency, compliance, and efficiency in business processes.

    • Examples include age restrictions for purchasing alcohol, pricing strategies, and approval processes for expenses.

  • Answered by AI
  • Q2. What is update set?
  • Ans. 

    An update set is a group of changes that can be moved from one instance to another in ServiceNow.

    • Update sets are used to transport customizations, such as new fields, tables, or scripts, between instances.

    • They help in organizing changes and tracking what customizations are being moved.

    • Update sets can be previewed, committed, and rolled back if needed.

    • Example: Creating a new field in a development instance and moving it

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. About splunk topics. Thry asked sbout alerts, reports snd dashboards
  • Q2. Unix commands and shell scripting and few scenarios
Round 2 - HR 

(1 Question)

  • Q1. Package discussion and about the shift
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops related questions
  • Q2. MVC related questions
Round 2 - HR 

(2 Questions)

  • Q1. Managerial questions
  • Q2. About expectations
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
-

I applied via Company Website and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Internal working of Hashmap
  • Ans. 

    HashMap in Java is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

    • HashMap uses hashing to store and retrieve key-value pairs

    • It uses an array of linked lists to handle collisions

    • The key's hash code is used to determine the index in the array where the key-value pair is stored

    • HashMap allows one null key and multiple null values

    • Example: HashMap<String, Integer> map = new

  • Answered by AI
  • Q2. Difference between string builder and string buffer
  • Ans. 

    String builder is not synchronized, faster but not thread-safe. String buffer is synchronized, slower but thread-safe.

    • String builder is faster due to lack of synchronization, suitable for single-threaded environments.

    • String buffer is slower due to synchronization, suitable for multi-threaded environments.

    • Example: StringBuilder sb = new StringBuilder(); StringBuffer sbf = new StringBuffer();

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why would you like to join us
  • Ans. 

    I am passionate about developing innovative applications and believe in the mission of your company.

    • Excited about the opportunity to work on cutting-edge technologies

    • Aligned with the company's values and goals

    • Seeking a challenging and dynamic work environment

    • Impressed by the company's reputation and success stories

  • Answered by AI
  • Q2. Expected CTC and current CTC

Amazon Web Services Interview FAQs

What are the top questions asked in Amazon Web Services Senior Application Architect interview?

Some of the top questions asked at the Amazon Web Services Senior Application Architect interview -

  1. Migration to cl...read more
  2. Assignment on building architecture using AWS produc...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Accenture Interview Questions
3.9
 • 8.1k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 896 Interviews
DXC Technology Interview Questions
3.7
 • 804 Interviews
Nagarro Interview Questions
4.0
 • 775 Interviews
View all
Digital Associate
302 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Cloud Support Engineer
268 salaries
unlock blur

₹10 L/yr - ₹33.3 L/yr

Cloud Support Associate
132 salaries
unlock blur

₹6 L/yr - ₹22.5 L/yr

Cloud Engineer
114 salaries
unlock blur

₹12 L/yr - ₹36 L/yr

Solution Architect
86 salaries
unlock blur

₹20 L/yr - ₹70.5 L/yr

Explore more salaries
Compare Amazon Web Services with

Amazon

4.1
Compare

Microsoft Azure

4.5
Compare

IBM

4.0
Compare

Oracle

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