Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Addverb Technologies Team. If you also belong to the team, you can get access from here

Addverb Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Addverb Technologies Application Developer Interview Questions, Process, and Tips

Updated 25 Jun 2023

Top Addverb Technologies Application Developer Interview Questions and Answers

Addverb Technologies Application Developer Interview Experiences

2 interviews found

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

I applied via Recruitment Consulltant and was interviewed in May 2023. There were 3 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 Resume tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. Advantages of Hashset over ArrayList?
  • Ans. 

    HashSet provides constant time performance for basic operations like add, remove, contains, while ArrayList does not.

    • HashSet does not allow duplicate elements, while ArrayList allows duplicates.

    • HashSet does not maintain insertion order, while ArrayList maintains insertion order.

    • HashSet is faster for checking if an element exists (contains) compared to ArrayList.

  • Answered by AI
  • Q2. Difference between spring created via literal and object.
  • Ans. 

    Spring created via literal is created using curly braces with key-value pairs, while spring created via object is created using a constructor function.

    • Spring created via literal: var spring = { color: 'blue', length: 10 };

    • Spring created via object: function Spring(color, length) { this.color = color; this.length = length; }

  • Answered by AI
  • Q3. Two SQL queries based on aggregate.
Round 3 - Technical 

(2 Questions)

  • Q1. Basics of SpringBoot
  • Q2. Basics of Microservices

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to have in depth knowledge of core Java crack round 1 interview.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Approached by Company and was interviewed in Mar 2023. 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 Resume tips
Round 2 - Technical 

(6 Questions)

  • Q1. OOPS concepts list and explain
  • Ans. 

    OOPS concepts are fundamental to object-oriented programming. They include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: bundling data and methods that operate on that data within a single unit.

    • Inheritance: creating new classes from existing ones, inheriting their properties and methods.

    • Polymorphism: the ability of objects to take on multiple forms, depending on the context.

    • Abstraction: hidin...

  • Answered by AI
  • Q2. Project related questions
  • Q3. Programs for inheritance, ArrayList operations
  • Ans. 

    Inheritance is a way to create new classes based on existing ones. ArrayList is a dynamic array implementation in Java.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • ArrayList operations include adding, removing, and accessing elements.

    • Example of inheritance: class Dog extends Animal

    • Example of ArrayList operation: myList.add(element)

  • Answered by AI
  • Q4. Mysql queries to demonstrate joins
  • Q5. REST api methodology
  • Q6. Spring annotations for data-jpa
  • Ans. 

    Spring annotations for data-jpa

    • The @Entity annotation is used to mark a class as a persistent entity

    • The @Repository annotation is used to indicate that the class provides the mechanism for storage, retrieval, search, update, and delete operation on objects

    • The @Transactional annotation is used to specify the transactional behavior of a method or class

    • The @Query annotation is used to specify a JPQL or native SQL query

    • The...

  • Answered by AI

Skills evaluated in this interview

Application Developer Interview Questions Asked at Other Companies

asked in Oracle
Q1. Minimum Cost to Connect All Points Problem Statement Given an arr ... read more
asked in Fujitsu
Q2. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Oracle
Q3. Puzzle: – Two persons X and Y are sitting side by side with a coi ... read more
asked in Oracle
Q4. Count Subsequences Problem Statement Given an integer array ARR o ... read more
asked in Oracle
Q5. Remove the Kth Node from the End of a Linked List You are given a ... read more

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
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 

2-3 basic dsa questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic dsaquestions basic dsa
  • Q2. Basic dsa questions basic dsa
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Java spring boot
  • Q2. Angular routing,
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Given programming questions
String programs

Round 2 - Technical 

(1 Question)

  • Q1. Asked basic to intermediate level questions Datatypes OOP concepts Code snippets

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics clearly with understanding.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. System architecture
  • Q2. Dict ,list and other questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. 1. Basic OOP Concepts 2. Difference between structure and class in terms of constructor 3. Can members of structure be defined as private 4. What's lambda function and it's real life use case 5. Difference...
  • Q2. 6. What's O(n) in time and space complexity
  • Ans. 

    O(n) refers to linear time and space complexity.

    • O(n) means that the time or space required by an algorithm grows linearly with the size of the input.

    • It implies that the algorithm's performance is directly proportional to the input size.

    • For example, if an algorithm takes 10 seconds to process 100 elements, it would take 20 seconds to process 200 elements.

    • O(n) complexity is considered efficient and desirable in most case

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basic clear and talk as much as possible

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Good URI design
  • Q2. Accessing id parameter in URL
  • Ans. 

    Accessing id parameter in URL involves parsing the URL and extracting the id value.

    • Use the window.location object to access the URL of the current page.

    • Parse the URL using methods like split() or URLSearchParams to extract the id parameter.

    • Example: If the URL is 'http://example.com/page?id=123', you can access the id value by parsing the URL.

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

(2 Questions)

  • Q1. Salary expectations
  • Q2. Plan of growing up technically

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in algorithms, Java 8 / 11

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Normal coding questions nested list
  • Q2. Nested dictionary
Round 2 - Coding Test 

Data extraction, solid questions, oops

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

It was the ask mostly about DSA

Contribute & help others!
anonymous
You can choose to be anonymous

Addverb Technologies Interview FAQs

How many rounds are there in Addverb Technologies Application Developer interview?
Addverb Technologies interview process usually has 2-3 rounds. The most common rounds in the Addverb Technologies interview process are Resume Shortlist, Technical and One-on-one Round.
How to prepare for Addverb Technologies Application Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Addverb Technologies. The most common topics and skills that interviewers at Addverb Technologies expect are Java, SQL, Unix, GIT and Spring Boot.
What are the top questions asked in Addverb Technologies Application Developer interview?

Some of the top questions asked at the Addverb Technologies Application Developer interview -

  1. Difference between spring created via literal and obje...read more
  2. Programs for inheritance, ArrayList operati...read more
  3. Advantages of Hashset over ArrayLi...read more

Recently Viewed

REVIEWS

Aditya Birla Capital

No Reviews

INTERVIEWS

Motilal Oswal Financial Services

No Interviews

SALARIES

Aditya Birla Capital

INTERVIEWS

Motilal Oswal Financial Services

No Interviews

SALARIES

Aditya Birla Capital

SALARIES

Aditya Birla Capital

INTERVIEWS

Addverb Technologies

No Interviews

SALARIES

Aditya Birla Capital

REVIEWS

Aditya Birla Capital

No Reviews

REVIEWS

Aditya Birla Capital

No Reviews

Tell us how to improve this page.

Addverb Technologies Application Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

ABB Interview Questions
4.1
 • 232 Interviews
Falcon Autotech Interview Questions
3.9
 • 44 Interviews
Wipro PARI Interview Questions
3.4
 • 43 Interviews
Grey Orange Interview Questions
3.2
 • 38 Interviews
View all

Fast track your campus placements

View all
Addverb Technologies Application Developer Salary
based on 20 salaries
₹6 L/yr - ₹9.2 L/yr
39% less than the average Application Developer Salary in India
View more details

Addverb Technologies Application Developer Reviews and Ratings

based on 2 reviews

1.5/5

Rating in categories

1.0

Skill development

1.5

Work-life balance

3.5

Salary

1.5

Job security

1.0

Company culture

1.5

Promotions

1.0

Work satisfaction

Explore 2 Reviews and Ratings
Junior Engineer
171 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
103 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
61 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Automation Engineer
53 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
48 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Addverb Technologies with

Grey Orange

3.2
Compare

The Hi-tech Robotic Systemz

3.6
Compare

Systemantics

4.9
Compare

Honeywell Automation

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent