Upload Button Icon Add office photos

Filter interviews by

U.S. Bank Fullstack Java Developer Interview Questions and Answers

Updated 19 Nov 2024

U.S. Bank Fullstack Java Developer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Leetcode easy and hard questions

Round 2 - Technical 

(2 Questions)

  • Q1. What are threads
  • Ans. 

    Threads are lightweight processes within a program that can run concurrently, allowing for multitasking and improved performance.

    • Threads allow for parallel execution of tasks within a program

    • Threads share the same memory space, allowing for efficient communication and data sharing

    • Examples of using threads include running background tasks while the main program continues to execute, or processing multiple requests simul

  • Answered by AI
  • Q2. Multi-threading concepts

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about internal working of JVM
  • Q2. Tell me about SAGA pattern in Microservices
  • Ans. 

    SAGA pattern is a design pattern used in microservices architecture to manage distributed transactions.

    • SAGA pattern breaks down a long-running transaction into a series of smaller, independent transactions.

    • Each step in the SAGA pattern is a separate service that communicates with other services through events.

    • If a step fails, compensating transactions are executed to rollback the changes made by previous steps.

    • Example:...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your current project structure
  • Q2. What is an API , how would you secure an API
  • Ans. 

    API stands for Application Programming Interface. It defines the methods and data formats that applications can use to communicate with each other.

    • API is a set of rules and protocols that allows different software applications to communicate with each other.

    • To secure an API, you can use authentication methods like OAuth, API keys, or JWT tokens.

    • Implementing encryption (HTTPS) and rate limiting can also enhance API secu...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to relocate to Bangalore
  • Q2. Tell me about one instance where you faced pressure and how did you overcome ?

Interview Preparation Tips

Interview preparation tips for other job seekers - You can assume easy to medium level questions.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

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

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself?
  • Ans. •I'm Akashdeep Prasad. • I'm in my early twenties. • I'm born and brought up in Mumbai, Andheri but currently I'm reside in Thane. - Now, coming to my highest qualification :- • I have completed my graduation in Bachelor of Science in Information Technology from University of Mumbai. - I like to share my certification with you :- • I'm certified Java Full Stack Developer. - Sir, I like to share my hobbies with you :...
  • Answered Anonymously
  • Q2. Why should I hire you ?
  • Q3. What is your salary expectation?
Round 2 - Technical 

(1 Question)

  • Q1. I forgot question
Round 3 - Technical 

(1 Question)

  • Q1. I can't remember what questions asked

Interview Preparation Tips

Topics to prepare for TCS Fullstack Java Developer interview:
  • Java
Interview preparation tips for other job seekers - The job seekers is good and friendly.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. About company and your skills
  • Q2. Java full stack developet
Round 1 - One-on-one 

(1 Question)

  • Q1. A senior in my current team was asking questions. He was helping to complete my answers. Be prepared with oops, collection, thread concepts, spring, hibernate basics thoroughly.

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple... Most was from angular for first round, then move to java. You should be strong in java. Front end they won't ask much questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Remove duplicate value in arraylist
  • Ans. 

    Use a HashSet to remove duplicates from an ArrayList of strings.

    • Create a HashSet and add all elements from the ArrayList to it.

    • Clear the ArrayList and then add all elements back from the HashSet.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about internal working of JVM
  • Q2. Tell me about SAGA pattern in Microservices
  • Ans. 

    SAGA pattern is a design pattern used in microservices architecture to manage distributed transactions.

    • SAGA pattern breaks down a long-running transaction into a series of smaller, independent transactions.

    • Each step in the SAGA pattern is a separate service that communicates with other services through events.

    • If a step fails, compensating transactions are executed to rollback the changes made by previous steps.

    • Example:...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your current project structure
  • Q2. What is an API , how would you secure an API
  • Ans. 

    API stands for Application Programming Interface. It defines the methods and data formats that applications can use to communicate with each other.

    • API is a set of rules and protocols that allows different software applications to communicate with each other.

    • To secure an API, you can use authentication methods like OAuth, API keys, or JWT tokens.

    • Implementing encryption (HTTPS) and rate limiting can also enhance API secu...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to relocate to Bangalore
  • Q2. Tell me about one instance where you faced pressure and how did you overcome ?

Interview Preparation Tips

Interview preparation tips for other job seekers - You can assume easy to medium level questions.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in May 2023. 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 - HR 

(5 Questions)

  • Q1. Tell you about me self
  • Q2. Coding test for me
  • Q3. Servlet question
  • Q4. Jdbc question and mysql database
  • Q5. What is cookie ? why use to create web application
  • Ans. 

    A cookie is a small piece of data stored on the user's computer by the web browser, used to track user activity and personalize user experience.

    • Cookies are used to store user preferences, login information, and shopping cart items.

    • They help websites remember users and their preferences, making the browsing experience more personalized.

    • Cookies can also be used for tracking user behavior, such as analyzing website traffi...

  • Answered by AI
Round 3 - Coding Test 

Core java, servlet ,jdbc

Interview Preparation Tips

Interview preparation tips for other job seekers - i am very good programmer

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. How is memory managed in go programming language?
  • Ans. 

    Memory in Go is managed using garbage collection, which automatically frees up memory that is no longer in use.

    • Go uses a garbage collector to automatically manage memory allocation and deallocation.

    • Memory is allocated on the heap, and garbage collection is used to free up memory that is no longer needed.

    • Pointers are used to reference memory locations, allowing for efficient memory management.

    • Examples: var x *int = new(

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

(1 Question)

  • Q1. Explain project internal architecture?
  • Ans. 

    Project internal architecture refers to the structure and organization of the codebase and components within a software project.

    • Components and modules are organized in a logical manner to ensure scalability and maintainability.

    • Design patterns such as MVC, MVVM, or microservices may be used to structure the codebase.

    • Communication between components is defined through interfaces and APIs.

    • Data flow and dependencies are ma...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. How would you manage conflicts in team?
Interview experience
4
Good
Difficulty level
-
Process Duration
2-4 weeks
Result
-

I applied via Walk-in and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Hash map implementation
  • Ans. 

    Hash map is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • Hash map uses hashing to map keys to indices in an array.

    • It allows for constant time complexity O(1) for insertion, deletion, and retrieval operations.

    • Example: HashMap map = new HashMap<>(); map.put("key", 123); int value = map.get("key");

  • Answered by AI

Skills evaluated in this interview

U.S. Bank Interview FAQs

How many rounds are there in U.S. Bank Fullstack Java Developer interview?
U.S. Bank interview process usually has 2 rounds. The most common rounds in the U.S. Bank interview process are Coding Test and Technical.
What are the top questions asked in U.S. Bank Fullstack Java Developer interview?

Some of the top questions asked at the U.S. Bank Fullstack Java Developer interview -

  1. what are thre...read more
  2. multi-threading conce...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.4k Interviews
IndusInd Bank Interview Questions
3.6
 • 578 Interviews
View all
Senior QA Analyst
4 salaries
unlock blur

₹10.5 L/yr - ₹14 L/yr

Java Technical Lead
4 salaries
unlock blur

₹35 L/yr - ₹100 L/yr

Associate Vice President
3 salaries
unlock blur

₹22.5 L/yr - ₹28.5 L/yr

Manager Architect
3 salaries
unlock blur

₹40 L/yr - ₹51 L/yr

Team Lead
3 salaries
unlock blur

₹8.8 L/yr - ₹11 L/yr

Explore more salaries
Compare U.S. Bank with

State Bank of India

3.8
Compare

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Axis Bank

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