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

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 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 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
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Why do you want to join this company?
  • Ans. 

    I admire your company's innovative approach and commitment to quality, which aligns with my career goals and values as a developer.

    • Your company's focus on cutting-edge technology, like AI and machine learning, excites me as I want to work on impactful projects.

    • I appreciate your commitment to professional development, such as mentorship programs, which will help me grow my skills.

    • The collaborative culture here fosters c...

  • Answered by AI
  • Q2. What are the sql constraints?
  • Ans. 

    SQL constraints are rules applied to table columns to enforce data integrity and validity.

    • PRIMARY KEY: Uniquely identifies each record in a table. Example: `CREATE TABLE Users (UserID INT PRIMARY KEY);`

    • FOREIGN KEY: Ensures referential integrity between two tables. Example: `FOREIGN KEY (UserID) REFERENCES Users(UserID)`.

    • UNIQUE: Ensures all values in a column are different. Example: `CREATE TABLE Users (Email VARCHAR(25...

  • Answered by AI

I applied via Naukri.com and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. OOPs concepts and program on linked list reversal and c pointer concepts
Round 2 - Technical 

(1 Question)

  • Q1. OOPs concepts,C basis, IPC and signals
Round 3 - Technical 

(1 Question)

  • Q1. OOPs concepts, c basics, data structures
Round 4 - HR 

(5 Questions)

  • Q1. Share details of your previous job.
  • Q2. What are your salary expectations?
  • Q3. What is your family background?
  • Q4. Why are you looking for a change?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have gone though 3 levels of technical interviews followed by manageral discussion and HR discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Swift interview questions
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 Sep 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 - Technical 

(5 Questions)

  • Q1. What is copy constructor?
  • Ans. 

    Copy constructor is a special type of constructor which creates a new object as a copy of an existing object.

    • Copy constructor is used to initialize a new object as a copy of an existing object.

    • It takes an object of the same class as a parameter.

    • It is called automatically when a new object is created from an existing object.

    • Example: class MyClass { public: MyClass(const MyClass& obj) { // copy constructor logic } };

  • Answered by AI
  • Q2. Difference between copy constructor and assignment operator
  • Ans. 

    Copy constructor is used to create a new object as a copy of an existing object, while assignment operator is used to assign values from one object to another.

    • Copy constructor is called when a new object is created from an existing object, while assignment operator is called when an existing object is assigned values from another object.

    • Copy constructor creates a new object with its own memory space, while assignment o...

  • Answered by AI
  • Q3. What is static function
  • Ans. 

    A static function is a function that is associated with a class rather than an instance of the class.

    • Static functions can be called without creating an instance of the class.

    • Static functions are commonly used for utility functions that do not require access to instance-specific data.

    • Static functions are declared using the 'static' keyword in many programming languages.

    • Example: 'Math.max()' in JavaScript is a static fun

  • Answered by AI
  • Q4. Write Fibonacci series
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with 0 and 1 as the first two numbers in the series

    • Add the previous two numbers to get the next number in the series

    • Repeat this process to generate the Fibonacci series

  • Answered by AI
  • Q5. What is single ton design pattern
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Ensures a class has only one instance

    • Provides a global point of access to that instance

    • Commonly used in scenarios where only one instance of a class is needed, such as database connections or logging

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If ur c++ developer go through the c++ 11/14 concept

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is the concept of virtual inheritance in relation to vtables and vptrs in object-oriented programming?
  • Ans. 

    Virtual inheritance allows a derived class to inherit from a base class without creating duplicate base class subobjects.

    • Virtual inheritance is used to resolve the Diamond Problem in C++ where a class inherits from two classes that have a common base class.

    • It ensures that only one copy of the base class is inherited by the derived class.

    • Virtual inheritance introduces a virtual base class subobject to the derived class,...

  • Answered by AI
  • Q2. Explained about vtptr and vtable initialisation and structure
Round 2 - Technical 

(1 Question)

  • Q1. What is the implementation of a class for string operations?
  • Ans. 

    A class for string operations can include methods for concatenation, substring extraction, length calculation, etc.

    • Create a class with methods like concatenateStrings, extractSubstring, calculateLength, etc.

    • Use string manipulation functions like substring, concat, length, etc. within the class methods.

    • Ensure error handling for edge cases like empty strings or out-of-bounds indices.

    • Example: class StringOperations { conc...

  • Answered by AI
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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Coding Test 

Asked to create a login form using MVVM architecture with frontend WPF and backend C#

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Difference between association aggregation and composition
  • Ans. 

    Association, aggregation, and composition are types of relationships between classes in object-oriented programming.

    • Association is a relationship where two classes are connected, but not dependent on each other.

    • Aggregation is a type of association where one class contains another class, but the contained class can exist independently.

    • Composition is a stronger form of aggregation where the contained class is part of the

  • Answered by AI

Skills evaluated in this interview

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

Tell us how to improve this page.

Addverb Technologies Application Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Fast track your campus placements

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

Addverb Technologies Application Developer Reviews and Ratings

based on 3 reviews

1.8/5

Rating in categories

1.0

Skill development

1.4

Work-life balance

2.9

Salary

1.4

Job security

1.0

Company culture

1.4

Promotions

1.0

Work satisfaction

Explore 3 Reviews and Ratings
Junior Engineer
176 salaries
unlock blur

₹2.6 L/yr - ₹6.1 L/yr

Engineer
104 salaries
unlock blur

₹2.5 L/yr - ₹11.5 L/yr

Manager
65 salaries
unlock blur

₹7.8 L/yr - ₹18 L/yr

Automation Engineer
54 salaries
unlock blur

₹3.2 L/yr - ₹7.5 L/yr

Software Engineer
47 salaries
unlock blur

₹5.9 L/yr - ₹17.4 L/yr

Explore more salaries
Compare Addverb Technologies with

Honeywell Automation

3.8
Compare

Rockwell Automation

3.7
Compare

Wipro PARI

3.3
Compare

GKN

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