Upload Button Icon Add office photos

Filter interviews by

Dealmoney Securities Front end Developer Interview Questions and Answers

Updated 1 Aug 2021

Dealmoney Securities Front end Developer Interview Experiences

1 interview found

Interview Questionnaire 

1 Question

  • Q1. About angular and ionic

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Javascript questions. Object, Arrow function.

Interview Preparation Tips

Topics to prepare for JPMorgan Chase & Co. Front end Developer interview:
  • Javascript
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I applied via Indeed and was interviewed in Apr 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Round 1 1.Basic JS question 2.Tricky indepth question who answer you would have to logically conclude/ educative guess Eg: 3. Why class are in React immutable but props mutable What happens to local sess...
Round 2 - Coding Test 

1.Complex coding round.
2.Explain any independent project you have done

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How meny days working, and working hours
  • Ans. 

    The number of working days and working hours for a Software Developer.

    • Software Developers typically work 5 days a week.

    • The standard working hours for Software Developers are 8 hours per day.

    • However, the actual number of working days and hours may vary depending on the company and project requirements.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - He was asking more then technical question, interviewer and hr are good person, it means helpfull.

Interview Questionnaire 

11 Questions

  • Q1. What is the difference between multi tasking, multi processing and multi programming operating systems with examples ?
  • Ans. 

    Multi tasking, multi processing, and multi programming are different approaches to managing tasks in an operating system.

    • Multi tasking allows multiple tasks to run concurrently on a single processor.

    • Multi processing involves multiple processors running tasks simultaneously.

    • Multi programming allows multiple programs to be loaded into memory and executed concurrently.

    • Examples of multi tasking operating systems include Wi...

  • Answered by AI
  • Q2. Tell me about memory allocation (stack vs. heap)?
  • Ans. 

    Memory allocation refers to the process of assigning memory to programs during runtime.

    • Stack allocation is done automatically and is limited in size.

    • Heap allocation is done manually and is larger in size.

    • Stack memory is used for local variables and function calls.

    • Heap memory is used for dynamic memory allocation.

    • Memory leaks can occur if heap memory is not properly managed.

  • Answered by AI
  • Q3. You have two threads one printing even numbers in order and other odd numbers. Design an algorithm so that it prints numbers in natural order?
  • Ans. 

    Use a shared variable and synchronization mechanisms to ensure natural order printing of numbers.

    • Create two threads, one for printing even numbers and the other for printing odd numbers.

    • Use a shared variable to keep track of the current number to be printed.

    • Implement synchronization mechanisms like locks or semaphores to ensure only one thread can access the shared variable at a time.

    • Each thread should check if it is i...

  • Answered by AI
  • Q4. Print a matrix in spiral order?
  • Ans. 

    Printing a matrix in spiral order

    • Start from the first element and print it

    • Move in a spiral order towards the center of the matrix

    • Repeat until all elements are printed

  • Answered by AI
  • Q5. Thread class and Runnable Interface?
  • Ans. 

    Thread class and Runnable Interface are used for multithreading in Java.

    • Thread class is a predefined class in Java that provides methods to create and control threads.

    • Runnable interface is used to define a task that can be executed by a thread.

    • Thread class implements Runnable interface.

    • Thread class provides more control over threads than Runnable interface.

    • Example: Thread t = new Thread(new MyRunnable()); t.start();

    • Exa...

  • Answered by AI
  • Q6. What’s the difference between a Linked List and an ArrayList and give me an example of when to use which?
  • Ans. 

    Linked List is a dynamic data structure while ArrayList is a static data structure.

    • Linked List is best for frequent insertion and deletion operations.

    • ArrayList is best for frequent access operations.

    • Linked List uses more memory than ArrayList.

    • ArrayList is faster than Linked List for accessing elements.

    • Use Linked List when you need to frequently add or remove elements from the list.

    • Use ArrayList when you need to frequen

  • Answered by AI
  • Q7. Questions of OS concepts?
  • Q8. A role play scenario was given. With a clear instruction on I don’t need to know the basis and the hypothetical assumption was presented. I was told that I was expected to respond to the given scenario, in...
  • Q9. Why are you interested in a career in investment banking?
  • Ans. 

    I am not interested in a career in investment banking.

    • I am more interested in a career in software development

    • I enjoy problem-solving and creating innovative solutions through coding

    • Investment banking does not align with my passion and skill set

  • Answered by AI
  • Q10. Why have you chosen to apply to J.P. Morgan?
  • Ans. 

    I have chosen to apply to J.P. Morgan because of their reputation, global presence, and opportunities for growth.

    • J.P. Morgan has a strong reputation in the financial industry.

    • They have a global presence with offices in multiple countries.

    • The company offers various opportunities for career growth and development.

    • J.P. Morgan is known for its innovative technology solutions in the financial sector.

    • I am impressed by their ...

  • Answered by AI
  • Q11. Have you ever made a mistake? Tell us about it?
  • Ans. 

    Yes, I have made a mistake in my previous project.

    • I underestimated the complexity of a task and ended up missing the deadline.

    • I failed to properly test a feature, resulting in a bug that affected user experience.

    • I accidentally deleted an important file without having a backup.

    • I misunderstood a requirement and implemented a feature incorrectly.

  • Answered by AI

Interview Preparation Tips

Round: Test
Total Questions: 1

General Tips: Interview Process: Aptitude test, followed by 3 rounds of interview. Interview process was very good. Just be positive to clear the interview.
Check this link before appearing for interview with JP Morgan. It will help  -----
Skills: Algorithm, Data structure, Stack
College Name: Na

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. All questions are related to ds and algorithm. Implications of data structure

I appeared for an interview in Oct 2020.

Round 1 - Telephonic Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

Basic questioning about my work experiences, things I have developed and created, my work experience(internships). The challenges which I have faced and how I overcame them. Basic questions about some android concepts

  • Q1. What puzzles were asked during the interview, and can you describe the projects you discussed?
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

The interviewer was very friendly and asked about various things and tried to judge my understanding of the projects and how deep I know about the concepts I have implemented in my projects

  • Q1. RxJava

    RxJava

  • Ans. 

    RxJava is a popular library for composing asynchronous and event-based programs using observable sequences.

    • RxJava provides a functional API for working with asynchronous data streams.

    • It uses Observables to emit items and notify subscribers.

    • Operators can be used to transform, filter, and combine these streams of data.

    • Schedulers are used to control the threading behavior of these operations.

    • Example: Creating an Observabl...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

This was a system design round

  • Q1. Can you explain the fragment lifecycle in Android system design?
  • Ans. 

    Fragment lifecycle in Android involves various states and methods for managing UI components.

    • Fragments have several lifecycle states such as created, started, resumed, paused, stopped, and destroyed.

    • Methods like onCreate(), onCreateView(), onResume(), onPause(), onStop(), onDestroy() are used to manage fragment lifecycle.

    • Fragment lifecycle is closely tied to the hosting Activity's lifecycle.

    • Example: When a fragment is ...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaNeeds app published on playstoreGojek interview preparation:Topics to prepare for the interview - OOPS, Algorithms and DSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Do as much projects as you can
Tip 2 : Publish as many projects as much possible, for example publishing your apps on playstore
Tip 3 : Have an active linkedin profile, and keep connecting with people
Tip 4: Keep learning by creating projects and reading blogs

Application resume tips for other job seekers

Tip 1 : Have your projects in resume
Tip 2 : Have a single page resume

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Referral and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about recent Project Details and what is your Role in this Project.
  • Ans. I explained my project and the modules which I had developed. Informed about Team members and their responsibilities who were working on the same Project. Then my role in the team as well as my responsibilities in the Project.
  • Answered Anonymously
  • Q2. Git and Azure DevOps related Questions
  • Ans. I Explained how we work on AzureDevOps. Explained workflow with Git Repos through DevOps Repositories. Explained Build and Release Pipelines also Explained NuGet Packages using Artifacts
  • Answered Anonymously
  • Q3. Explain Solid Principles and Where to use this with Example
  • Ans. 

    Solid Principles are a set of design principles for writing maintainable and scalable software.

    • Solid Principles consist of five principles: Single Responsibility Principle, Open/Closed Principle, Liskov Substitution Principle, Interface Segregation Principle, and Dependency Inversion Principle.

    • Single Responsibility Principle states that a class should have only one reason to change.

    • Open/Closed Principle states that sof...

  • Answered by AI
  • Q4. Abstraction and Interface Differance
  • Ans. 

    Abstraction focuses on hiding implementation details, while interface defines a contract for classes to follow.

    • Abstraction allows us to focus on the essential features of an object, while hiding unnecessary details.

    • Interface defines a set of methods that a class must implement, providing a contract for how the class should behave.

    • Abstraction is achieved through abstract classes and interfaces in object-oriented program...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't feel uncomfortable if you don't know the exact answer. Whatever you know just explain in your statement. make an easy sentence to explain don't give an exact theoretic answer try to explain with one example.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Asked about my experience as an integration developer
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Implement some LLD and use clean code formulas

Round 2 - Group Discussion 

Better be prepared for all deep dive questions about tech and project you worked

Tell us how to improve this page.

Interview Questions from Similar Companies

Link Group Interview Questions
3.8
 • 34 Interviews
Go-Jek Interview Questions
3.7
 • 31 Interviews
Pamac Finserve Interview Questions
3.3
 • 22 Interviews
TMF Group Interview Questions
3.8
 • 19 Interviews
Travelex Interview Questions
3.7
 • 18 Interviews
DTCC Interview Questions
4.2
 • 14 Interviews
IQ-EQ Interview Questions
3.2
 • 12 Interviews
View all
Dealmoney Securities Front end Developer Salary
based on 5 salaries
₹1.5 L/yr - ₹6 L/yr
58% less than the average Front end Developer Salary in India
View more details

Dealmoney Securities Front end Developer Reviews and Ratings

based on 2 reviews

3.5/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

2.1

Salary

4.1

Job security

3.1

Company culture

2.0

Promotions

3.0

Work satisfaction

Explore 2 Reviews and Ratings
Team Lead
26 salaries
unlock blur

₹1.1 L/yr - ₹6 L/yr

Relationship Manager
20 salaries
unlock blur

₹1.2 L/yr - ₹3.3 L/yr

Mean Stack Developer
17 salaries
unlock blur

₹1.2 L/yr - ₹3.2 L/yr

Software Developer
16 salaries
unlock blur

₹2.2 L/yr - ₹5.8 L/yr

Assistant Manager
16 salaries
unlock blur

₹3.3 L/yr - ₹5.2 L/yr

Explore more salaries
Compare Dealmoney Securities with

Bajaj Finserv

4.0
Compare

Pamac Finserve

3.3
Compare

Karvy Financial Services

3.8
Compare

TMF Group

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