Upload Button Icon Add office photos

Filter interviews by

Verve Mobile Angular Developer Interview Questions and Answers

Updated 21 Apr 2022

Verve Mobile Angular Developer Interview Experiences

1 interview found

I was interviewed in Mar 2022.

Round 1 - Coding Test 

I received a call from them and was informed that there will be a live coding round where I need to design something that will be provided to me during the session. they gave me a sidebar to design with routing functionalities. I did the entire part right, maybe not the exact look came what he wanted but it was working. Only the collapsible menu was not working due to something maybe I missed something on hurry. I told them everything is working fine except the collapse on small devices. They gave me half an our more to do it, but I was puzzled at that time after coding for 1 and half hour and was not able to make it work.

They simply told me can't consider further as the entire output didn't come! I asked several times and tried to explain the code and the scenario that somehow the collapse mechanism is not working. They didn't even give me a chance for further process!

I was interviewing for fresher Angular developer position where I can learn and work simultaneously. They didn't even reconsider for a small mistake!

Bitter experience!

Round 2 - Technical 

(1 Question)

  • Q1. They didn't consider me for a second round due to the reason I mentioned below.

Interview Preparation Tips

Interview preparation tips for other job seekers - Whatever they will ask you to do, either you need to make it 100% or they will reject you!

Interview questions from similar companies

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

I applied via Referral and was interviewed in Oct 2022. There were 4 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 - Technical 

(6 Questions)

  • Q1. All the basic angular questions asked, routing, how to pass data from one component to another components
  • Q2. What is the difference between Observable and promise
  • Ans. 

    Observable is a stream of data that can be subscribed to, while Promise is a one-time operation that returns a single value.

    • Observable can emit multiple values over time, while Promise can only return a single value.

    • Observable can be cancelled, while Promise cannot.

    • Observable is lazy, meaning it only starts emitting data when it is subscribed to, while Promise starts executing immediately.

    • Observable can handle errors w...

  • Answered by AI
  • Q3. How to share I'd using route
  • Ans. 

    To share ID using route in Angular, use route parameters.

    • Define a route with a parameter in the route path, e.g. '/user/:id'

    • Access the parameter value in the component using ActivatedRoute service

    • Use the parameter value to fetch data or perform actions related to that ID

  • Answered by AI
  • Q4. Input and output in angular
  • Ans. 

    Input and output are used to pass data between components in Angular.

    • Input is used to pass data from parent component to child component.

    • Output is used to emit events from child component to parent component.

    • Input and Output are defined using decorators @Input and @Output respectively.

    • Example:

  • Answered by AI
  • Q5. What is data binding in angular
  • Ans. 

    Data binding is a way to connect data between the component and the view in Angular.

    • Data binding allows for automatic synchronization of data between the component and the view.

    • There are three types of data binding in Angular: Interpolation, Property binding, and Event binding.

    • Interpolation is used to display component data in the view using double curly braces {{}}.

    • Property binding is used to set the value of an eleme...

  • Answered by AI
  • Q6. Hook life cycle in angular
  • Ans. 

    Hooks are functions that allow you to execute code at specific points in a component's life cycle.

    • ngOnInit() - called after the component is initialized

    • ngOnChanges() - called when the component's input properties change

    • ngDoCheck() - called during every change detection cycle

    • ngAfterContentInit() - called after content is projected into the component

    • ngAfterContentChecked() - called after every check of projected content

    • n...

  • Answered by AI
Round 3 - Assignment 

They given me one assignment task where I had to show all users detail in the table using angular material. They provided me CRUD API link and I submitted it in few hours and got selected.

Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and previous organisation project details.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare all the basic questions of relevant profiles and be confident.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
-

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

Write a code for HTML DOM

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

I applied via Referral and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Few basic question on python
  • Q2. Some coding questions
Round 2 - Coding Test 

Based on your CV and basic python questions and coding test and few HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to work
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2022. There were 4 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 - Technical 

(6 Questions)

  • Q1. All the basic angular questions asked, routing, how to pass data from one component to another components
  • Q2. What is the difference between Observable and promise
  • Ans. 

    Observable is a stream of data that can be subscribed to, while Promise is a one-time operation that returns a single value.

    • Observable can emit multiple values over time, while Promise can only return a single value.

    • Observable can be cancelled, while Promise cannot.

    • Observable is lazy, meaning it only starts emitting data when it is subscribed to, while Promise starts executing immediately.

    • Observable can handle errors w...

  • Answered by AI
  • Q3. How to share I'd using route
  • Ans. 

    To share ID using route in Angular, use route parameters.

    • Define a route with a parameter in the route path, e.g. '/user/:id'

    • Access the parameter value in the component using ActivatedRoute service

    • Use the parameter value to fetch data or perform actions related to that ID

  • Answered by AI
  • Q4. Input and output in angular
  • Ans. 

    Input and output are used to pass data between components in Angular.

    • Input is used to pass data from parent component to child component.

    • Output is used to emit events from child component to parent component.

    • Input and Output are defined using decorators @Input and @Output respectively.

    • Example:

  • Answered by AI
  • Q5. What is data binding in angular
  • Ans. 

    Data binding is a way to connect data between the component and the view in Angular.

    • Data binding allows for automatic synchronization of data between the component and the view.

    • There are three types of data binding in Angular: Interpolation, Property binding, and Event binding.

    • Interpolation is used to display component data in the view using double curly braces {{}}.

    • Property binding is used to set the value of an eleme...

  • Answered by AI
  • Q6. Hook life cycle in angular
  • Ans. 

    Hooks are functions that allow you to execute code at specific points in a component's life cycle.

    • ngOnInit() - called after the component is initialized

    • ngOnChanges() - called when the component's input properties change

    • ngDoCheck() - called during every change detection cycle

    • ngAfterContentInit() - called after content is projected into the component

    • ngAfterContentChecked() - called after every check of projected content

    • n...

  • Answered by AI
Round 3 - Assignment 

They given me one assignment task where I had to show all users detail in the table using angular material. They provided me CRUD API link and I submitted it in few hours and got selected.

Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and previous organisation project details.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare all the basic questions of relevant profiles and be confident.

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What programming language are you most proficient?
  • Ans. 

    I am most proficient in Java.

    • Extensive experience in developing applications using Java

    • Strong understanding of object-oriented programming principles

    • Familiarity with popular Java frameworks like Spring and Hibernate

  • Answered by AI
  • Q2. .NET, Angular and Sql Server
Round 2 - One-on-one 

(1 Question)

  • Q1. How would you design a system that needs to handle million of records
  • Ans. 

    I would design a system using scalable architecture, efficient data storage, and optimized query processing.

    • Utilize a distributed database system like Cassandra or Hadoop for storing large volumes of data

    • Implement data partitioning and sharding to distribute the data across multiple servers

    • Use indexing and caching mechanisms to optimize query performance

    • Employ load balancing techniques to evenly distribute incoming req...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Best place to learn and work

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

C language basic questions like structure and all
Then linux device driver

Round 3 - HR 

(1 Question)

  • Q1. Normal intro questions

I applied via campus placement at Manipal Institute of Technology (MIT) and was interviewed in Sep 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Coding on python programming, any language is used in in coding.

Round 2 - Technical 

(2 Questions)

  • Q1. Good ask simple question and simple program
  • Q2. Python programming string reverse the string
  • Ans. 

    Python provides a simple way to reverse a string using slicing.

    • Use slicing to reverse the string: string[::-1]

    • Assign the reversed string to a new variable or print it directly

    • Alternatively, use the reversed() function to create a reversed iterator and join it back into a string

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study oops concepts, algorithm , logical questions , -----

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 before Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Aptitude test and coding test

Round 3 - Technical 

(1 Question)

  • Q1. Python basics and about academic project
Round 4 - Technical 

(1 Question)

  • Q1. Python questions and hands on coding

Verve Mobile Interview FAQs

How many rounds are there in Verve Mobile Angular Developer interview?
Verve Mobile interview process usually has 2 rounds. The most common rounds in the Verve Mobile interview process are Coding Test and Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

InMobi Interview Questions
3.6
 • 35 Interviews
Odoo Interview Questions
3.6
 • 25 Interviews
Anywhere Interview Questions
4.5
 • 13 Interviews
Proficed Interview Questions
5.0
 • 7 Interviews
Apptunix Interview Questions
3.5
 • 7 Interviews
View all

Verve Mobile Angular Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Web Developer
4 salaries
unlock blur

₹3.6 L/yr - ₹7.7 L/yr

Digital Marketing Manager
4 salaries
unlock blur

₹3 L/yr - ₹7.4 L/yr

Senior PHP Developer
3 salaries
unlock blur

₹1.6 L/yr - ₹5.5 L/yr

Content Moderator
3 salaries
unlock blur

₹2.8 L/yr - ₹4.7 L/yr

Explore more salaries
Compare Verve Mobile with

InMobi

3.6
Compare

Affle

3.0
Compare

Komli Media

4.0
Compare

Madhouse

5.0
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