Upload Button Icon Add office photos

Filter interviews by

Edward Jones Software Development Manager Interview Questions and Answers

Updated 20 May 2024

Edward Jones Software Development Manager Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java spring boot rest services and microservices
  • Q2. Ci cd jenkins deployments, automated processes

Interview questions from similar companies

I applied via Referral and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. SPring boot:what's actuator?
  • Ans. 

    Actuator is a Spring Boot module that provides endpoints for monitoring and managing the application.

    • Actuator exposes various endpoints for monitoring and managing the application

    • It provides health, metrics, info, and other endpoints

    • These endpoints can be accessed via HTTP or JMX

    • Actuator can be configured to secure the endpoints with authentication and authorization

    • Actuator can also be extended to provide custom endpoi

  • Answered by AI
  • Q2. Is it better to have one monolithic application instead of several micro services in terms of resources?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Monolithic applications can be easier to develop and deploy, but can become difficult to maintain and scale as they grow.

    • Microservices can be more flexible and scalable, but require more resources and complexity to manage.

    • Consider factors such as team size, project scope, performance requirements, and future growth plans when deciding on architectur...

  • Answered by AI
  • Q3. Intermediate condition in lambda expression
  • Ans. 

    Intermediate condition in lambda expression

    • Lambda expressions can have intermediate conditions using the 'if' keyword

    • The condition is placed after the parameter list and before the arrow

    • Example: lambda x: x**2 if x > 0 else -1

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's technical and relevant. Easy to crack.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 coding que easy,med and hard

Round 2 - Technical 

(2 Questions)

  • Q1. Os related que What is kernel , OS types ,what happens after booting computr ,etc
  • Q2. Creat a array and print all elements , which database used for pdf storing sql or nosql
Round 3 - Technical 

(2 Questions)

  • Q1. OOps related que abstraction , inheritance , code it
  • Q2. Middel element of linked list
Round 4 - HR 

(2 Questions)

  • Q1. What challenges u faced in engineering?
  • Q2. Situational based questions
Round 5 - HR 

(2 Questions)

  • Q1. Why u choose to work deustch bank ?
  • Q2. Project related quw
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. They grind u in javascript,typescript
  • Q2. Html css, angular
  • Q3. Deep preparation needed

Interview Preparation Tips

Interview preparation tips for other job seekers - Not an easy interview
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
No response

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

Round 1 - Coding Test 

Data structures and algo. 2 ques were asked in hackerrank

Round 2 - One-on-one 

(1 Question)

  • Q1. Questions related to System design
Round 3 - One-on-one 

(1 Question)

  • Q1. Basic question related to Spring and Java
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Given strings and asked to write down the first non-repeatable string
  • Q2. Palindrome program in java
  • Ans. 

    A palindrome program in Java checks if a given string reads the same forwards and backwards.

    • Create a function that takes a string input

    • Use a loop to compare characters from both ends of the string

    • Return true if the string is a palindrome, false otherwise

  • Answered by AI
  • Q3. Diamond problem in java
  • Ans. 

    Diamond problem in Java occurs when a class inherits from two classes that have a common ancestor, resulting in ambiguity.

    • Diamond problem arises in multiple inheritance scenarios in Java.

    • It occurs when a class inherits from two classes that have a common ancestor.

    • To resolve the diamond problem, Java does not support multiple inheritance through classes, but it can be achieved using interfaces.

    • Example: Class A and Class...

  • Answered by AI
  • Q4. Given a list of numbers and insisted to get the sum of numbers which gives 6
  • Ans. 

    Iterate through the list and find pairs of numbers that sum up to 6

    • Iterate through the list and check if the current number + any other number in the list equals 6

    • Store the pairs of numbers that sum up to 6 in a separate list

    • Return the list of pairs

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Java based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on your technical skills. Be good at writing pseudo code, Focus on java and oops concepts.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain advantages of Angular
  • Ans. 

    Angular offers advantages such as two-way data binding, dependency injection, and modular architecture.

    • Two-way data binding allows automatic synchronization of data between the model and the view, reducing the need for manual DOM manipulation.

    • Dependency injection helps manage dependencies and promotes code reusability by allowing components to be easily injected with their dependencies.

    • Modular architecture enables deve...

  • Answered by AI
  • Q2. Explain about ngmodel
  • Ans. 

    ngModel is a directive in AngularJS that binds the value of HTML controls to application data.

    • ngModel is used for two-way data binding in AngularJS.

    • It can be used with input, select, textarea, and custom form controls.

    • Example:

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

(2 Questions)

  • Q1. Java coding questions
  • Q2. Core java and spring questions
Round 3 - HR 

(1 Question)

  • Q1. Salary expectation

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Mcq+coding which are medium level questions

Round 2 - Technical 

(3 Questions)

  • Q1. Multiple inheritance allowed in java?
  • Ans. 

    No, multiple inheritance is not allowed in Java.

    • Java does not support multiple inheritance for classes to avoid the diamond problem.

    • However, multiple inheritance is allowed for interfaces in Java.

    • Example: class A extends B, C is not allowed, but interface X extends Y, Z is allowed.

  • Answered by AI
  • Q2. Diff btw static and final
  • Ans. 

    Static is used to define class-level variables and methods, while final is used to define constants and prevent inheritance or modification.

    • Static variables and methods belong to the class itself, while final variables cannot be changed once initialized.

    • Static members can be accessed without creating an instance of the class, while final members must be accessed through an instance.

    • Static variables are shared among all...

  • Answered by AI
  • Q3. What is data encapsulation?
  • Ans. 

    Data encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.

    • Encapsulation hides the internal state of an object and only exposes the necessary functionalities through methods.

    • It helps in achieving data abstraction and information hiding.

    • Example: A class 'Car' encapsulates data like speed, color, and methods like accelerate() and brake().

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. What are company core values
  • Ans. 

    Company core values are the fundamental beliefs that guide the behavior and decisions of employees.

    • Integrity - acting with honesty and transparency in all dealings

    • Innovation - constantly seeking new and better ways to solve problems

    • Customer focus - prioritizing the needs and satisfaction of customers

    • Teamwork - collaborating effectively with colleagues to achieve common goals

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Asked about oops
  • Q2. Easy level DSA question was asked
Round 2 - HR 

(1 Question)

  • Q1. General hr questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Assignment 

2 hard DSA questions

Round 2 - Coding Test 

2 dsa questions were asked.
prefix search
binary tree camera

Round 3 - Coding Test 

Parling lot low level design

Edward Jones Interview FAQs

How many rounds are there in Edward Jones Software Development Manager interview?
Edward Jones interview process usually has 1 rounds. The most common rounds in the Edward Jones interview process are Technical.
What are the top questions asked in Edward Jones Software Development Manager interview?

Some of the top questions asked at the Edward Jones Software Development Manager interview -

  1. java spring boot rest services and microservi...read more
  2. ci cd jenkins deployments, automated proces...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Goldman Sachs Interview Questions
3.6
 • 404 Interviews
Deutsche Bank Interview Questions
3.9
 • 357 Interviews
Synechron Interview Questions
3.6
 • 348 Interviews
UBS Interview Questions
4.0
 • 333 Interviews
Morgan Stanley Interview Questions
3.7
 • 300 Interviews
Bajaj Finance Interview Questions
4.0
 • 289 Interviews
View all
Compare Edward Jones with

Morgan Stanley

3.7
Compare

Charles Schwab

4.2
Compare

UBS

4.0
Compare

Ameriprise Financial

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview