Upload Button Icon Add office photos

Filter interviews by

Rightpoint India Developer Associate Interview Questions and Answers

Updated 11 Feb 2022

Rightpoint India Developer Associate Interview Experiences

1 interview found

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 

(2 Questions)

  • Q1. There is opening for freshers for which basic HTML , css and wordpress knowledge is required .
  • Q2. Yes, I do have the good knowledge about these.
Round 3 - Technical 

(2 Questions)

  • Q1. Difference between block, div and section
  • Ans. 

    Block, div, and section are HTML elements used for structuring content on a webpage.

    • Block: A block-level element takes up the full width available and starts on a new line. Examples include <div>, <p>, <h1>.

    • Div: A <div> element is a generic container used to group elements together. It has no semantic meaning.

    • Section: A <section> element is used to group related content together. It typica...

  • Answered by AI
  • Q2. Basically These all are used to create a new row or section.. all works as same depends upon the user what he or she wants to apply.
Round 4 - Technical 

(2 Questions)

  • Q1. Show some designs that you have made..
  • Ans. 

    I have designed various user interfaces for web and mobile applications.

    • Designed a responsive web interface for a travel booking website

    • Created a mobile app interface for a food delivery service

    • Designed a dashboard for a project management tool

    • Created wireframes and prototypes for various projects

  • Answered by AI
  • Q2. He basically cross questioned me on my designs like how you place I the items using which tag.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Basic aptitude assessment along with some theoretical components.

Round 2 - Technical 

(1 Question)

  • Q1. Basic questions in Java, SQL and React
Round 3 - Technical 

(2 Questions)

  • Q1. Project related questions
  • Q2. Coding question->Reverse String(World Hello), pattern, prime number
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Linked list question to detect cycle
  • Q2. Basic questions from JS
Round 2 - Technical 

(2 Questions)

  • Q1. Some questions related to my projects
  • Q2. Some Questions related to my past experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Apr 2024.

Round 1 - Coding Test 

3 coding questions and some McQ questions

Round 2 - Technical 

(2 Questions)

  • Q1. Asked DSa question of TWO sum
  • Q2. Dsa question of three sum
Round 3 - Technical 

(3 Questions)

  • Q1. Dsa question of merge sort
  • Q2. DBMS interview questions
  • Q3. Operating system questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare best with the fundamentals of core subjects like computer networks , operating system and DBMS
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning and Aptitude

Round 2 - Coding Test 

Functions with Pointers and strings concepts

Round 3 - Technical 

(2 Questions)

  • Q1. Mainly on Pointers and Dynamic Memory Allocation of 2-D Array
  • Q2. Structure Padding and Packing

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in depth in C and mainly on Bit-Manipulation.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

First round is online test of 3 virtual rounds consist of aptitude , and coding

Round 2 - Technical 

(2 Questions)

  • Q1. Matrix multiplication
  • Q2. Singly linked list
  • Ans. 

    A singly linked list is a data structure where each element points to the next element in the list.

    • Each node in the list contains data and a reference to the next node

    • Traversal starts from the head node and follows the next pointers until the end

    • Insertion and deletion can be done efficiently at the beginning or end of the list

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare dsa well

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(2 Questions)

  • Q1. Experience in domains
  • Q2. Previous companies
Round 2 - Technical 

(2 Questions)

  • Q1. SQL basic questions
  • Q2. .net and OOP basics
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Hindustan College of Science and Technology, Agra and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

1 round is coding round in pan paper test atleast 5 coding questions and some multiple questions and 1 DSA questions and 4 coding questions correct and dsa correct than interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Everything HTML CSS SQL and core java
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com 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 

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

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

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

Rightpoint India Interview FAQs

How many rounds are there in Rightpoint India Developer Associate interview?
Rightpoint India interview process usually has 4 rounds. The most common rounds in the Rightpoint India interview process are Technical and Resume Shortlist.
How to prepare for Rightpoint India Developer Associate 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 Rightpoint India. The most common topics and skills that interviewers at Rightpoint India expect are Javascript, Medical Insurance, Training, CRM and GIT.
What are the top questions asked in Rightpoint India Developer Associate interview?

Some of the top questions asked at the Rightpoint India Developer Associate interview -

  1. Show some designs that you have mad...read more
  2. Difference between block, div and sect...read more
  3. Basically These all are used to create a new row or section.. all works as same...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 788 Interviews
HyScaler Interview Questions
4.5
 • 91 Interviews
View all
Rightpoint India Developer Associate Salary
based on 15 salaries
₹3 L/yr - ₹6.5 L/yr
51% less than the average Developer Associate Salary in India
View more details

Rightpoint India Developer Associate Reviews and Ratings

based on 4 reviews

3.2/5

Rating in categories

3.3

Skill development

3.2

Work-life balance

3.0

Salary

3.2

Job security

3.2

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 4 Reviews and Ratings
Senior Developer
30 salaries
unlock blur

₹10.2 L/yr - ₹37.5 L/yr

Developer 1
17 salaries
unlock blur

₹4.5 L/yr - ₹8.1 L/yr

Lead Developer
15 salaries
unlock blur

₹15.5 L/yr - ₹31.5 L/yr

Developer Associate
15 salaries
unlock blur

₹3 L/yr - ₹6.4 L/yr

Senior Software Engineer
14 salaries
unlock blur

₹12 L/yr - ₹33 L/yr

Explore more salaries
Compare Rightpoint India with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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