Upload Button Icon Add office photos
Engaged Employer

i

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

IBM Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

IBM Java AWS Developer Interview Questions and Answers

Updated 4 Jul 2024

IBM Java AWS Developer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Different between ECS vs Fargate
  • Ans. 

    ECS is a container management service that requires you to manage the underlying infrastructure, while Fargate is a serverless compute engine for containers.

    • ECS requires you to provision and manage the infrastructure for your containers, while Fargate abstracts this away and allows you to focus on your application.

    • With ECS, you have more control over the underlying infrastructure, such as instance types and networking ...

  • Answered by AI
  • Q2. How to deploy springboot application on AWS
  • Ans. 

    Deploying a Spring Boot application on AWS involves creating a deployment package and using AWS services like Elastic Beanstalk or EC2.

    • Create a deployment package of the Spring Boot application (e.g. JAR file)

    • Choose an AWS service like Elastic Beanstalk or EC2 for deployment

    • Configure the AWS service with necessary settings like environment variables, instance type, etc.

    • Upload the deployment package to AWS and start the...

  • Answered by AI
  • Q3. How to create cloudwatch alarm based on the log level
  • Ans. 

    To create a cloudwatch alarm based on log level, you can use CloudWatch Logs Insights to query logs and set up alarms based on the results.

    • Use CloudWatch Logs Insights to query logs for specific log levels

    • Create a metric filter in CloudWatch Logs to extract log level information

    • Set up a CloudWatch alarm based on the metric filter to trigger when log level reaches a certain threshold

  • Answered by AI
  • Q4. How to Optimize RDS Cost if we are not inserting the data frequently
  • Ans. 

    To optimize RDS cost when data is not frequently inserted, consider using reserved instances, right-sizing the instance, enabling auto-scaling, and using spot instances.

    • Consider using reserved instances to save costs on long-term usage

    • Right-size the RDS instance based on actual usage to avoid overpaying for unused resources

    • Enable auto-scaling to automatically adjust resources based on demand

    • Utilize spot instances for n...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Tell me about software system

Java AWS Developer Interview Questions Asked at Other Companies

asked in IBM
Q1. How can you optimize RDS cost if data is not being inserted frequ ... read more
asked in IBM
Q2. How do you create a CloudWatch alarm based on the log level?
asked in IBM
Q3. How do you deploy a Spring Boot application on AWS?
asked in IBM
Q4. What are the differences between ECS and Fargate?

I applied via Recruitment Consultant and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is Abstraction
  • Q2. Concept of hiding implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - Not bad, good atmosphere, positive response from staff
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via Campus Placement and was interviewed before Nov 2021. There were 2 interview rounds.

Round 1 - Assignment 

Best wishes to you know that you have to come to the day da

Round 2 - Group Discussion 

Hi sir I have sent the best for first year and all the best for your reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy easy easy drawing with this picture 🖼️ and avarampatti photos and videos are you please send panta and all the best for your reference

What people are saying about IBM

View All
intellectualshinchan
Verified Icon
1w
ex -
TCS
Upcoming Coding Assessment with IBM
Hi All, I am having a Coding Assessment with IBM what should I prepare and from where I can prepare?
Got a question about IBM?
Ask anonymously on communities.

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

Interview Questionnaire 

1 Question

  • Q1. .NET basics

Interview Questionnaire 

1 Question

  • Q1. Basic questions

Interview Questionnaire 

1 Question

  • Q1. What is Design Patterns?
  • Ans. 

    Design Patterns are reusable solutions to commonly occurring problems in software design.

    • Design Patterns provide a common vocabulary for developers to communicate about solutions to problems.

    • They help in making code more flexible, reusable, and maintainable.

    • Examples of Design Patterns include Singleton, Factory, Observer, and Decorator.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do have a good knowledge of all the technologies you are using.

Skills evaluated in this interview

Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Based on programming

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

The interviewer was quite friendly. There were two questions one from arrays and other one from strings.

  • Q1. 

    String Compression Problem Statement

    Implement a program that performs basic string compression. When a character is consecutively repeated more than once, replace the consecutive duplicates with the coun...

  • Ans. 

    Implement a program to compress a string by replacing consecutive duplicates with the count of repetitions.

    • Iterate through the string and keep track of consecutive characters and their counts.

    • Replace consecutive duplicates with the count of repetitions.

    • Ensure the count of repetitions is ≤ 9.

    • Return the compressed string.

  • Answered by AI
  • Q2. 

    Maximum Subarray Sum Problem Statement

    Given an array ARR consisting of N integers, your goal is to determine the maximum possible sum of a non-empty contiguous subarray within this array.

    Example of Sub...

  • Ans. 

    Find the maximum sum of a contiguous subarray in an array of integers.

    • Use Kadane's algorithm to find the maximum subarray sum in linear time.

    • Initialize two variables: maxEndingHere and maxSoFar to keep track of the current subarray sum and the maximum subarray sum seen so far.

    • Iterate through the array and update the variables accordingly.

    • Return the maxSoFar as the result.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Delhi University. I applied for the job as SDE - 1 in ChandigarhEligibility criteriaAbove 7 CGPAInfosys interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Operating Systems, Aptitude, PuzzleTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice at-least 200-250 questions from different topics.
Tip 2 : Prepare aptitude well.

Application resume tips for other job seekers

Tip 1 : Resume should be always one pager.
Tip 2 : Mention all your projects and if you have a good score mention it on top.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is data structures
  • Ans. 

    Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Data structures are used to manage and manipulate data.

    • They can be implemented using arrays, linked lists, trees, graphs, and other methods.

    • Examples include stacks, queues, hash tables, and binary search trees.

  • Answered by AI
  • Q2. Why database
  • Ans. 

    Databases are essential for storing and managing large amounts of data efficiently.

    • Databases allow for easy organization and retrieval of data

    • They provide data security and integrity

    • Databases enable scalability and performance optimization

    • Examples include MySQL, Oracle, MongoDB, and SQL Server

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good,and bit advanced for student point of view

Skills evaluated in this interview

IBM Interview FAQs

How many rounds are there in IBM Java AWS Developer interview?
IBM interview process usually has 1 rounds. The most common rounds in the IBM interview process are Technical.
What are the top questions asked in IBM Java AWS Developer interview?

Some of the top questions asked at the IBM Java AWS Developer interview -

  1. How to Optimize RDS Cost if we are not inserting the data frequen...read more
  2. How to create cloudwatch alarm based on the log le...read more
  3. How to deploy springboot application on ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
DXC Technology Interview Questions
3.6
 • 842 Interviews
View all
Application Developer
12.6k salaries
unlock blur

₹5.3 L/yr - ₹24.5 L/yr

Software Engineer
5.9k salaries
unlock blur

₹8.3 L/yr - ₹25.2 L/yr

Software Developer
5.8k salaries
unlock blur

₹13.4 L/yr - ₹35.8 L/yr

Senior Software Engineer
5.3k salaries
unlock blur

₹14.1 L/yr - ₹31.9 L/yr

Advisory System Analyst
4.5k salaries
unlock blur

₹13.6 L/yr - ₹23 L/yr

Explore more salaries
Compare IBM with

Oracle

3.7
Compare

TCS

3.6
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview