Upload Button Icon Add office photos
Engaged Employer

i

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

JPMorgan Chase & Co. Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 5.9k Reviews

Filter interviews by

JPMorgan Chase & Co. Web Developer Interview Questions and Answers

Updated 11 Nov 2024

JPMorgan Chase & Co. Web Developer Interview Experiences

1 interview found

Web Developer Interview Questions & Answers

user image Shivangi Verma

posted on 11 Nov 2024

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

(2 Questions)

  • Q1. Diff btwn this and arrow in javascript
  • Ans. 

    The 'this' keyword in JavaScript refers to the current object, while the arrow function does not bind its own 'this'.

    • The 'this' keyword in JavaScript refers to the object that is executing the current function.

    • Arrow functions do not bind their own 'this' value, instead they inherit the 'this' value from the enclosing lexical context.

    • Using 'this' in a regular function can lead to unexpected behavior, especially in neste...

  • Answered by AI
  • Q2. Diff btwn let, var, const
  • Ans. 

    let, var, and const are all used to declare variables in JavaScript, but they have different scopes and behaviors.

    • let is block-scoped and can be reassigned, var is function-scoped and can be reassigned, const is block-scoped and cannot be reassigned

    • Using let:

    • let x = 10;

    • x = 20; // valid

    • Using var:

    • var y = 5;

    • y = 8; // valid

    • Using const:

    • const z = 15;

    • z = 25; // error, cannot reassign const variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - stick with basics of javascript and react

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Oct 2022. There were 2 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 - Induces your self 

(3 Questions)

  • Q1. What is a Java and how many types are there
  • Ans. 

    Java is a high-level programming language used for developing applications. There are four types of Java: Java SE, Java EE, Java ME, and JavaFX.

    • Java is an object-oriented language.

    • Java SE (Standard Edition) is used for general-purpose development.

    • Java EE (Enterprise Edition) is used for developing enterprise applications.

    • Java ME (Micro Edition) is used for developing applications for small devices.

    • JavaFX is used for cr...

  • Answered by AI
  • Q2. Tell the permitted Java type
  • Ans. 

    The permitted Java types include primitive types (int, double, boolean, etc.) and reference types (String, Object, etc.)

    • Primitive types are predefined in Java and start with a lowercase letter (e.g., int, double)

    • Reference types are created using classes, interfaces, or arrays (e.g., String, Object, int[])

    • Java also supports autoboxing, which allows primitive types to be used as reference types (e.g., Integer, Double)

  • Answered by AI
  • Q3. Tell the Java coding
  • Ans. 

    Java is a popular programming language used for developing web applications and software.

    • Java is an object-oriented language

    • It is platform-independent

    • Java code is compiled into bytecode

    • Java has a vast library of pre-built classes and methods

    • Java is used for developing Android apps

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Shriram Group Web Developer interview:
  • Html5
Interview preparation tips for other job seekers - This is helpful and I improve myself
This is a great

Skills evaluated in this interview

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

I was interviewed in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Data binding techniques
  • Ans. 

    Data binding techniques allow for synchronization of data between the model and the view in web development.

    • Two-way data binding ensures that changes in the model are reflected in the view and vice versa

    • One-way data binding updates the view when the model changes, but not the other way around

    • Data binding libraries like AngularJS, React, and Vue.js provide tools for efficient data binding

  • Answered by AI
  • Q2. Project related information

Interview Preparation Tips

Interview preparation tips for other job seekers - Not so good experience

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Small UI task using Vue.js
  • Ans. 

    Create a small UI task using Vue.js

    • Create a simple form with input fields and a submit button

    • Use Vue.js directives like v-model for data binding

    • Implement validation for the form fields

    • Display a success message upon form submission

  • Answered by AI
  • Q2. Find the second largest number
  • Ans. 

    Iterate through the array to find the second largest number

    • Iterate through the array and keep track of the largest and second largest numbers

    • Compare each element with the largest and second largest numbers to update them accordingly

    • Return the second largest number once the iteration is complete

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell about a time where you had competing demands from stakeholders.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2022. There were 2 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 - Induces your self 

(3 Questions)

  • Q1. What is a Java and how many types are there
  • Ans. 

    Java is a high-level programming language used for developing applications. There are four types of Java: Java SE, Java EE, Java ME, and JavaFX.

    • Java is an object-oriented language.

    • Java SE (Standard Edition) is used for general-purpose development.

    • Java EE (Enterprise Edition) is used for developing enterprise applications.

    • Java ME (Micro Edition) is used for developing applications for small devices.

    • JavaFX is used for cr...

  • Answered by AI
  • Q2. Tell the permitted Java type
  • Ans. 

    The permitted Java types include primitive types (int, double, boolean, etc.) and reference types (String, Object, etc.)

    • Primitive types are predefined in Java and start with a lowercase letter (e.g., int, double)

    • Reference types are created using classes, interfaces, or arrays (e.g., String, Object, int[])

    • Java also supports autoboxing, which allows primitive types to be used as reference types (e.g., Integer, Double)

  • Answered by AI
  • Q3. Tell the Java coding
  • Ans. 

    Java is a popular programming language used for developing web applications and software.

    • Java is an object-oriented language

    • It is platform-independent

    • Java code is compiled into bytecode

    • Java has a vast library of pre-built classes and methods

    • Java is used for developing Android apps

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Shriram Group Web Developer interview:
  • Html5
Interview preparation tips for other job seekers - This is helpful and I improve myself
This is a great

Skills evaluated in this interview

Interview Questionnaire 

8 Questions

  • Q1. How many array function & string function is there in PHP?
  • Ans. 

    PHP has over 100 array functions and over 200 string functions.

    • Array functions include: array_push(), array_pop(), array_merge(), array_slice(), etc.

    • String functions include: strlen(), str_replace(), substr(), strtolower(), etc.

    • PHP also has functions for working with regular expressions, dates, and more.

    • The exact number of functions may vary depending on the version of PHP being used.

  • Answered by AI
  • Q2. What is ajax? how many attributes?
  • Ans. 

    Ajax is a technique used to update parts of a web page without reloading the entire page. It stands for Asynchronous JavaScript and XML.

    • Ajax allows for asynchronous communication between the client and server.

    • It uses JavaScript to send and receive data from the server without interfering with the display and behavior of the existing page.

    • Ajax can be used to dynamically update content, submit forms without refreshing th...

  • Answered by AI
  • Q3. Findout count of dublicate record in mysql & write a query
  • Ans. 

    Query to find count of duplicate records in MySQL

    • Use GROUP BY clause to group the records by the column(s) that may have duplicates

    • Use HAVING clause to filter out the groups with count less than 2

    • Use COUNT() function to count the number of records in each group

  • Answered by AI
  • Q4. What is helpers in coddeigniter?
  • Ans. 

    Helpers in CodeIgniter are utility functions that assist in common tasks and can be used throughout the application.

    • Helpers are standalone functions that can be loaded and used anywhere in the application.

    • They provide a way to avoid writing repetitive code by providing ready-to-use functions.

    • CodeIgniter comes with a set of built-in helpers, such as URL, Form, File, and Date helpers.

    • Custom helpers can also be created to...

  • Answered by AI
  • Q5. What is MVC?
  • Ans. 

    MVC is a software architectural pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the data to the user.

    • Controller handles user input, updates the model, and interacts with the view.

    • MVC promotes separation of concerns and improves code organization and maintainability.

    • Example: In...

  • Answered by AI
  • Q6. What is diff bet array_merge and array_combine?
  • Ans. 

    array_merge merges two or more arrays into one, while array_combine creates an array by using one array for keys and another for its values.

    • array_merge combines the values of two or more arrays into a single array

    • array_combine creates an array using one array for keys and another for its values

    • array_merge preserves numeric keys, while array_combine uses the first array for keys and the second for values

    • array_merge can ...

  • Answered by AI
  • Q7. How my db engine present in mysql?
  • Ans. 

    MySQL has multiple storage engines including InnoDB, MyISAM, and more.

    • MySQL has a pluggable storage engine architecture

    • InnoDB is the default storage engine for MySQL

    • MyISAM is another popular storage engine

    • Other storage engines include Memory, CSV, and more

  • Answered by AI
  • Q8. What is diff bet myisam & innodb?
  • Ans. 

    MyISAM is faster but doesn't support transactions, while InnoDB is slower but supports transactions and foreign keys.

    • MyISAM is the default storage engine for MySQL, while InnoDB is an alternative.

    • MyISAM is faster for read-heavy applications, while InnoDB is better for write-heavy applications.

    • MyISAM doesn't support transactions or foreign keys, while InnoDB does.

    • MyISAM uses table-level locking, while InnoDB uses row-le...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - the interview was on microsoft team

Skills evaluated in this interview

JPMorgan Chase & Co. Interview FAQs

How many rounds are there in JPMorgan Chase & Co. Web Developer interview?
JPMorgan Chase & Co. interview process usually has 1 rounds. The most common rounds in the JPMorgan Chase & Co. interview process are Technical.
What are the top questions asked in JPMorgan Chase & Co. Web Developer interview?

Some of the top questions asked at the JPMorgan Chase & Co. Web Developer interview -

  1. diff btwn this and arrow in javascr...read more
  2. diff btwn let, var, co...read more

Tell us how to improve this page.

JPMorgan Chase & Co. Web Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 560 Interviews
Citicorp Interview Questions
3.7
 • 560 Interviews
Bajaj Finserv Interview Questions
4.0
 • 497 Interviews
HSBC Group Interview Questions
4.0
 • 489 Interviews
Goldman Sachs Interview Questions
3.6
 • 407 Interviews
Deutsche Bank Interview Questions
3.9
 • 359 Interviews
American Express Interview Questions
4.2
 • 359 Interviews
UBS Interview Questions
4.0
 • 337 Interviews
BNY Interview Questions
3.9
 • 333 Interviews
Morgan Stanley Interview Questions
3.7
 • 303 Interviews
View all
JPMorgan Chase & Co. Web Developer Salary
based on 11 salaries
₹6.5 L/yr - ₹13.2 L/yr
127% more than the average Web Developer Salary in India
View more details

JPMorgan Chase & Co. Web Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

5.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Associate
10.1k salaries
unlock blur

₹10 L/yr - ₹42 L/yr

Team Lead
5.5k salaries
unlock blur

₹5.6 L/yr - ₹16.3 L/yr

Vice President
3.9k salaries
unlock blur

₹26.2 L/yr - ₹85 L/yr

Analyst
2.6k salaries
unlock blur

₹6.3 L/yr - ₹25 L/yr

Software Engineer
2.5k salaries
unlock blur

₹10.7 L/yr - ₹34 L/yr

Explore more salaries
Compare JPMorgan Chase & Co. with

Morgan Stanley

3.7
Compare

Goldman Sachs

3.5
Compare

TCS

3.7
Compare

Bank of America

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