Upload Button Icon Add office photos

Filter interviews by

Mountblue Technologies Interview Questions, Process, and Tips

Updated 29 Jan 2025

Top Mountblue Technologies Interview Questions and Answers

Mountblue Technologies Interview Experiences

Popular Designations

34 interviews found

Software Engineer Interview Questions & Answers

user image sumit aggarwal

posted on 25 May 2024

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

I applied via Company Website and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

60 mins, HackerEarth

Round 2 - HR 

(1 Question)

  • Q1. Why you want to be software engineer, What you have learnt beside college curriculum

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (180)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Given a string repeat the character as given in the preceding order
  • Ans. 

    Repeat characters in the order of appearance in the string

    • Iterate through the string and keep track of the characters and their counts

    • Create a new string by repeating each character based on its count in the original string

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (180)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Array and String based DSA

Round 2 - Coding Test 

Array and String based DSA

Round 3 - HR 

(4 Questions)

  • Q1. Tell me about your self
  • Q2. About your company
  • Q3. About your experience
  • Q4. Why are you changing

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Strings And Arrays

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)

Mountblue Technologies interview questions for popular designations

 Software Engineer

 (6)

 Software Developer

 (4)

 Software Development Engineer

 (3)

 Associate Software Engineer

 (2)

 Full Stack Developer

 (2)

 SDE

 (2)

 Software Development Engineer Intern

 (2)

 Software Engineer Trainee

 (2)

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

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

Round 1 - Coding Test 

Data structures and problem solving quetions we can do the both quetions nelty

Round 2 - Aptitude Test 

Just aptitude and coding we can improve the more things to learn

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

Two some - leetcode
three some - leetcode
valid paranthesis
matrix traversal
string matching

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on basic programming skills i'ts easy if you have a good practice in coding

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (4)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 hour Hackerrank Test, easy-medium level based on array and string

Round 2 - One-on-one 

(1 Question)

  • Q1. 2d Matrix traversal

Junior Software Developer Interview Questions asked at other Companies

Q1. Given n coins for two players playing a game. Each player picks coins from the given n coins in such a way that he can pick 1 to 5 coins in one turn and the game continues for both the players. The player who picks the last coin looses the ... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox

Round 1 - Coding Test 

Array based question meadium to hard level

Round 2 - HR 

(1 Question)

  • Q1. Basic interveiw questions from hr

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare the stacks and arrays and string based questions

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Coding Test 

Data structures and algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
Add answer
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Easy question on sliding window and string

Round 3 - One-on-one 

(2 Questions)

  • Q1. Leader of the array
  • Ans. 

    The leader of an array is the element that appears more than n/2 times in the array.

    • Iterate through the array and keep track of the count of each element.

    • Check if any element's count is greater than n/2, where n is the length of the array.

    • Return the element that is the leader of the array.

  • Answered by AI
  • Q2. Leader of the a

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basic topoics

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 (42)

Mountblue Technologies Interview FAQs

How many rounds are there in Mountblue Technologies interview?
Mountblue Technologies interview process usually has 2 rounds. The most common rounds in the Mountblue Technologies interview process are Coding Test, HR and Technical.
How to prepare for Mountblue Technologies 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 Mountblue Technologies. The most common topics and skills that interviewers at Mountblue Technologies expect are C++, HTML, Javascript, PHP and Python.
What are the top questions asked in Mountblue Technologies interview?

Some of the top questions asked at the Mountblue Technologies interview -

  1. 2.You are given a chess board and the position of queen find the coordinates wh...read more
  2. the coordinates of a bishop is given . tell all the possible moveset coordinate...read more
  3. Given a string repeat the character as given in the preceding or...read more
How long is the Mountblue Technologies interview process?

The duration of Mountblue Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Mountblue Technologies Interview Process

based on 31 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Cognizant Interview Questions
3.8
 • 5.6k Interviews
upGrad Interview Questions
3.7
 • 208 Interviews
Simplilearn Interview Questions
3.2
 • 101 Interviews
NIIT Interview Questions
3.6
 • 84 Interviews
Great Learning Interview Questions
3.7
 • 56 Interviews
Edureka Interview Questions
3.2
 • 26 Interviews
KnowledgeHut Interview Questions
4.5
 • 10 Interviews
Springboard Interview Questions
4.5
 • 2 Interviews
View all

Fast track your campus placements

View all

Mountblue Technologies Reviews and Ratings

based on 84 reviews

3.4/5

Rating in categories

3.9

Skill development

2.6

Work-life balance

3.0

Salary

2.3

Job security

3.0

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 84 Reviews and Ratings
Software Engineer
68 salaries
unlock blur

₹3.5 L/yr - ₹5.2 L/yr

Software Developer
56 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Software Development Engineer
34 salaries
unlock blur

₹3.6 L/yr - ₹5 L/yr

Full Stack Developer
23 salaries
unlock blur

₹3.6 L/yr - ₹4.8 L/yr

Software Engineer Trainee
12 salaries
unlock blur

₹3 L/yr - ₹4.4 L/yr

Explore more salaries
Compare Mountblue Technologies with

upGrad

3.7
Compare

Simplilearn

3.2
Compare

Great Learning

3.7
Compare

Jigsaw Academy

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