Upload Button Icon Add office photos

Filter interviews by

Roadmap IT Solutions Interview Questions and Answers

Updated 2 Mar 2025

Roadmap IT Solutions Interview Experiences

2 interviews found

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

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

Round 1 - Aptitude Test 

Easy to identify answer

Round 2 - Technical 

(2 Questions)

  • Q1. What is sql and it's types
  • Ans. 

    SQL is a domain-specific language used for managing and manipulating relational databases.

    • SQL stands for Structured Query Language

    • Types of SQL include MySQL, PostgreSQL, Oracle, SQL Server, etc.

    • SQL can be used to retrieve, insert, update, and delete data in databases

    • Types of SQL commands include SELECT, INSERT, UPDATE, DELETE, etc.

  • Answered by AI
  • Q2. Primary key and foreign key
Round 3 - HR 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Why you are in company

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared.

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Oracle Sql and plsql

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Jobs at Roadmap IT Solutions

View all

Interview questions from similar companies

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Coding Test 

2 questions of DSA medium to hard

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was ok. I was not able to solve all the questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Remove the last element from a linkedlist
  • Ans. 

    To remove the last element from a linked list, iterate to the second last node and update its next pointer to null.

    • Iterate through the linked list to find the second last node

    • Update the next pointer of the second last node to null

  • Answered by AI
  • Q2. Some basic questions on oops dbms and os

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

Easy to medium leetcode questions

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

Round duration - 50 minutes
Round difficulty - Medium

Round 2 - Face to Face 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Given an array and a target sum, find pairs of elements that add up to the target sum.

    • Iterate through the array and for each element, check if the complement (target sum - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list. Otherwise, add the current element to the hash set.

    • Sort the pairs based on the first element and then the second element to meet the required output form

  • Answered by AI
Round 3 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

Round 4 - Face to Face 

(1 Question)

Round duration - 40 minutes
Round difficulty - Hard

  • Q1. Can you provide an example of how to use pointers in C/C++ and discuss different concepts related to them?
  • Ans. 

    Pointers in C/C++ are variables that store memory addresses. They are used to manipulate memory directly and improve performance.

    • Pointers are declared using an asterisk (*) before the variable name.

    • Pointers can be used to dynamically allocate memory using functions like malloc() and free().

    • Pointers can be used to pass variables by reference to functions.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in GurgaonEligibility criteriaAbove 7 CGPA, No backlogsThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures,OOPS, SQL Queries, Normalization,Software Development Life Cycles, PointersTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 1 project
Tip 2 : Practice Data structure programming questions
Tip 3 : Prepare concepts with examples (Coding/Numericals)

Application resume tips for other job seekers

Tip 1 : Mention Projects
Tip 2 : Mention only those technologies which you are confident enough.
Tip 3 : Mention extra curricular activities if have.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

It was in the morning around 9:00Am-9:30AM. Platform used for this round was hacerrank. Questions were of moderate to difficult level.

  • Q1. 

    Count Subarrays with Given XOR Problem Statement

    You are given an array of integers ARR and an integer X. Your task is to determine the number of subarrays of ARR whose bitwise XOR is equal to X.

    Example...

  • Ans. 

    Count the number of subarrays in an array whose XOR is equal to a given value.

    • Iterate through the array and keep track of XOR values and their frequencies using a hashmap.

    • For each element in the array, calculate the XOR value with all previous elements and check if it equals the given XOR value.

    • Use the concept of XOR to efficiently solve the problem.

    • Handle edge cases like XOR value being 0 separately.

    • Time complexity ca...

  • Answered by AI
  • Q2. 

    Distinct Characters Problem Statement

    Given a string STR, return all possible non-empty subsequences with distinct characters. The order of the strings returned is not important.

    Example:

    Input:
    STR = ...
  • Ans. 

    Return all possible non-empty subsequences with distinct characters from a given string.

    • Iterate through all possible subsequences of the input string

    • Check for distinct characters in each subsequence

    • Return the distinct character subsequences as an array of strings

  • Answered by AI
Round 2 - HR 

Round duration - 15 minutes
Round difficulty - Easy

It was in the night around 8:00PM-8:20PM. Interviewer was very calm in questioning. Platform used for this round was Skype and the questions focused more on personality rather than total.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in DelhiEligibility criteriaAbove 7 CGPAThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, Dynamic Programming, AptitudeTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude questions a lot.
Tip 2 : Do some projects
Tip 3 : Research about company thoroughly

Application resume tips for other job seekers

Tip 1 : It should be in proper format.
Tip 2 : Each skills should be mentioned properly.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

1 hour online test ..

Round 2 - Technical 

(1 Question)

  • Q1. Programming related questions.
Round 3 - Technical 

(1 Question)

  • Q1. DSA round (easy to medium)
Round 4 - HR 

(1 Question)

  • Q1. Technical+ hr round
Round 5 - Behavioral 

(1 Question)

  • Q1. Technical questions.

Roadmap IT Solutions Interview FAQs

How many rounds are there in Roadmap IT Solutions interview?
Roadmap IT Solutions interview process usually has 2 rounds. The most common rounds in the Roadmap IT Solutions interview process are HR, Coding Test and Aptitude Test.
How to prepare for Roadmap IT Solutions 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 Roadmap IT Solutions. The most common topics and skills that interviewers at Roadmap IT Solutions expect are C#, ERP Systems, SQL, ASP.NET and Business Development.
What are the top questions asked in Roadmap IT Solutions interview?

Some of the top questions asked at the Roadmap IT Solutions interview -

  1. What is sql and it's ty...read more
  2. Primary key and foreign ...read more

Tell us how to improve this page.

Roadmap IT Solutions Interview Process

based on 2 interviews

Interview experience

2.5
  
Poor
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
IT By Design Interview Questions
3.5
 • 40 Interviews
ConsultAdd Interview Questions
3.5
 • 36 Interviews
Junglee Games Interview Questions
3.1
 • 32 Interviews
View all

Roadmap IT Solutions Reviews and Ratings

based on 78 reviews

3.4/5

Rating in categories

3.6

Skill development

2.6

Work-life balance

2.3

Salary

3.4

Job security

2.3

Company culture

2.4

Promotions

3.0

Work satisfaction

Explore 78 Reviews and Ratings
Software Developer

Bangalore / Bengaluru

2-3 Yrs

₹ 1.45-3.5 LPA

Project Leader (ERP)

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

FUNCTIONAL ASSOCIATE (ERP Software Implemenation)

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

Explore more jobs
Software Developer
67 salaries
unlock blur

₹1 L/yr - ₹5.5 L/yr

Functional Consultant
29 salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Plsql Developer
24 salaries
unlock blur

₹1.7 L/yr - ₹4.6 L/yr

Functional Associate
23 salaries
unlock blur

₹1.8 L/yr - ₹5 L/yr

ERP Functional Consultant
21 salaries
unlock blur

₹1.5 L/yr - ₹5.4 L/yr

Explore more salaries
Compare Roadmap IT Solutions with

Saama Technologies

3.7
Compare

JoulestoWatts Business Solutions

2.9
Compare

DISYS

3.0
Compare

Value Point Systems

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