Upload Button Icon Add office photos

Filter interviews by

MAQ Software Interview Questions, Process, and Tips

Updated 2 Mar 2025

Top MAQ Software Interview Questions and Answers

View all 88 questions

MAQ Software Interview Experiences

Popular Designations

100 interviews found

Interview Questions & Answers

user image Anonymous

posted on 21 May 2015

Interview Questionnaire 

10 Questions

  • Q1. Horse Race puzzle
  • Q2. A circle is inscribed in a square( coordinates top left corner (0,0) ). Coordinates of a point on the circle is given . Calculate the area of circle
  • Ans. 

    To find the area of a circle inscribed in a square, calculate the radius using the given point and then use the formula for the area of a circle.

    • Calculate the distance from the given point to the center of the square to find the radius of the circle

    • Use the formula for the area of a circle (A = πr^2) to calculate the area

    • Remember that the radius of the circle is half the side length of the square

  • Answered by AI
  • Q3. Write a code to reverse the sequence of words in a sentence . For eg: Input Array: I_AM_A_BOY Output Array: BOY_A_AM_I , you can’t use extra array . Input array is the only array that can be used
  • Q4. Write a code for Expression Evaluation (BODMAS)
  • Q5. Write a code to add two numbers without using ‘+’ operator
  • Q6. Write a code to find the given linked list is Circular or not ? Then find the node where it is getting circularOther random questions like on: new technologies like clouding , knowledge about different languages , data structures and algorithms etc
  • Q7. Tell me about your self, your family background
  • Q8. What is your dream company
  • Q9. Why do you want to join MAQ
  • Q10. What skills of yours makes you suitable for this job

Interview Preparation Tips

Round: Test
Experience: 30 ques in 30 mins consisting of difficult quantitative aptitude questions.
Duration: 30 minutes
Total Questions: 30

Round: Test
Experience: 2 question, either write the code or pseudo code

1. Write an algorithm for dutch national flag problem2. Write an algorithm for n-queens problem
Total Questions: 2

College Name: NA

Skills evaluated in this interview

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

I was interviewed in Jan 2025.

Round 1 - Coding Test 

One question relates to Linked list and another related to string

Round 2 - Technical 

(5 Questions)

  • Q1. Circular linked list algorithm
  • Ans. 

    Circular linked list is a data structure where the last node points back to the first node.

    • In a circular linked list, each node has a pointer to the next node and the last node points back to the first node.

    • Traversal in a circular linked list can start from any node and continue until the starting node is reached again.

    • Insertion and deletion operations in a circular linked list are similar to those in a regular linked ...

  • Answered by AI
  • Q2. String manipulation and logical questioning
  • Q3. String creation and deletion
  • Q4. DSA problem solving questions
  • Q5. Logical questions asked and informed

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare basic concepts of programming and SQL

Top MAQ Software Software Engineer Interview Questions and Answers

Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1. Input: The input consists of a single intege... read more
View answer (1)

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 (196)
MAQ Software Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Coding test was really good it was easier to tackle the problem and writting code for it.

Round 2 - Technical 

(2 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. What is the major project you have worked on, and can you provide an explanation of it?
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express

    • Utilized MongoDB for database storage

    • Incorporated authentication and authorization features for user security

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. SQL ques and concept

Top MAQ Software Software Developer Interview Questions and Answers

Q1. Find the Duplicate Number Problem Statement Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Your task is to find and return this d... read more
View answer (1)

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)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

The interview process was satisfactory, but the environment was not conducive.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Oops concepts in detail
  • Ans. 

    Oops concepts refer to Object-Oriented Programming principles like Inheritance, Polymorphism, Encapsulation, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability of objects to take on multiple forms.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Abstraction: Hiding the complex implementation details and showing only

  • Answered by AI
  • Q2. Python and basic programming questions

Software Engineer Level 1 Interview Questions asked at other Companies

Q1. Input a file. Select first 3 lines of the file. Select the longest line and count the number of words in that line. It was easy. I used Java methods to solve the problem. I explained the logic and he accepted it.
View answer (1)

MAQ Software interview questions for popular designations

 Software Engineer

 (26)

 Software Developer

 (14)

 Associate Software Engineer

 (12)

 Software Engineer Level 1

 (9)

 Software Developer Intern

 (5)

 Software Engineer Intern

 (2)

 Software Intern

 (2)

 Associate Project Manager

 (2)

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

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

Round 1 - Coding Test 

Total two DSA question and 25 mcqs

Round 2 - Technical 

(2 Questions)

  • Q1. Zigzag traversal of binary tree
  • Ans. 

    Zigzag traversal of binary tree involves alternating the direction of traversal at each level.

    • Use a queue to perform level order traversal of the binary tree.

    • For each level, alternate between adding nodes to the result list from left to right and right to left.

    • Continue this process until all levels have been traversed.

  • Answered by AI
  • Q2. Minimum swaps to group all ones together
  • Ans. 

    The minimum number of swaps needed to group all ones together in an array of 0s and 1s.

    • Iterate through the array to count the total number of ones.

    • Use a sliding window of size equal to the total number of ones to find the window with the minimum number of zeros.

    • Calculate the number of swaps needed to move all ones to that window.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DSA and projects

Top MAQ Software Software Developer Interview Questions and Answers

Q1. Find the Duplicate Number Problem Statement Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Your task is to find and return this d... read more
View answer (1)

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)

Get interview-ready with Top MAQ Software Interview Questions

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

There were 30 questions on the aptitude test, all of which were part of the total count.

Round 2 - Coding Test 

I have three questions: two related to data structures and algorithms, and one concerning SQL.

Round 3 - Technical 

(1 Question)

  • Q1. Got two questions DSA medium and Easy one

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and have confidences do your best

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

Jobs at MAQ Software

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

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

Round 1 - Coding Test 

1st round of the company was an online assessment with 40 questions,2 coding questions :- cake distribution problem, Palindrome and else there were 6-7 SQL questions and other were Aptitude questions (basic) whole test was for 1 hr.

Round 2 - Technical 

(3 Questions)

  • Q1. Basic oops, basic questions on loops etc
  • Q2. SQL:- add a column on a table, find max salary of employee
  • Ans. 

    Use ALTER TABLE to add a new column and then use MAX function to find the highest salary.

    • Use ALTER TABLE statement to add a new column to the table.

    • Use MAX function in SQL to find the maximum salary of employees.

  • Answered by AI
  • Q3. SUM OF DIGITS OF A NUMBER(DSA)
  • Ans. 

    Calculate the sum of digits of a given number.

    • Iterate through each digit of the number and add them together.

    • Use modulo operator to extract each digit.

    • Repeat until all digits are processed.

    • Example: For number 123, sum of digits = 1 + 2 + 3 = 6.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - BASICS OF DSA, DBMS, OOPS
AND U SHOULD KNOW EVERYTHING WRITTEN ON RESUME

Skills evaluated in this interview

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 (2)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

General on Online editors

Round 2 - Technical 

(1 Question)

  • Q1. Find the first occurrence of an element in an rotated array.
Round 3 - Aptitude Test 

Pattern question based on Alphabets

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't come here if you have any other option

Top MAQ Software Software Developer Interview Questions and Answers

Q1. Find the Duplicate Number Problem Statement Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Your task is to find and return this d... read more
View answer (1)

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)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Array questions - rearranging letters for encryption

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself and your experience in college.
  • Q2. Database and sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep true to job posting. Hiring for another job and then, making people do something else is not good.

Top MAQ Software Software Engineer Interview Questions and Answers

Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1. Input: The input consists of a single intege... read more
View answer (1)

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 (196)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is Kadane's algorithm, and how can it be used to print the subarray with the maximum sum?

Top MAQ Software Software Engineer Interview Questions and Answers

Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1. Input: The input consists of a single intege... read more
View answer (1)

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 (196)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

Round 1 - One-on-one 

(2 Questions)

  • Q1. Index in sql theoretical
  • Ans. 

    Indexes in SQL are used to improve the performance of queries by allowing the database to quickly retrieve data.

    • Indexes are created on columns in a table to speed up data retrieval.

    • They work similar to an index in a book, allowing the database to quickly find the relevant data.

    • Primary keys automatically have an index created on them.

    • Indexes can be unique, meaning that each value in the indexed column must be unique.

    • Exa...

  • Answered by AI
  • Q2. Normalization and all its forms
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization is used to eliminate data redundancy by breaking up tables into smaller, related tables.

    • There are different normal forms such as 1NF, 2NF, 3NF, BCNF, and 4NF, each with specific rules to follow.

    • Normalization helps in reducing data anomalies and ensures data integrity.

    • Example: Breaking up a custome...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't apply

Skills evaluated in this interview

Top MAQ Software Software Engineer Interview Questions and Answers

Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1. Input: The input consists of a single intege... read more
View answer (1)

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 (196)
Contribute & help others!
anonymous
You can choose to be anonymous

MAQ Software Interview FAQs

How many rounds are there in MAQ Software interview?
MAQ Software interview process usually has 2-3 rounds. The most common rounds in the MAQ Software interview process are Technical, Coding Test and Aptitude Test.
How to prepare for MAQ Software 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 MAQ Software. The most common topics and skills that interviewers at MAQ Software expect are Financial Analysis, Accounting, Talent Acquisition, Power Bi and Azure.
What are the top questions asked in MAQ Software interview?

Some of the top questions asked at the MAQ Software interview -

  1. Write a code to find the given linked list is Circular or not ? Then find the n...read more
  2. Which data structure inserts and deletes in O(1) time and is it possible to cre...read more
  3. Find the third largest element from array, give the optimized approach using ju...read more
How long is the MAQ Software interview process?

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

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

ANR Software Private Limited

No Interviews

INTERVIEWS

Central Bank of India

No Interviews

INTERVIEWS

ANR Software Private Limited

5.6k top interview questions

INTERVIEWS

Porter

No Interviews

INTERVIEWS

Efftronics Systems

No Interviews

Tell us how to improve this page.

MAQ Software Interview Process

based on 89 interviews

Interview experience

3.6
  
Good
View more

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
 • 791 Interviews
View all

MAQ Software Reviews and Ratings

based on 353 reviews

1.9/5

Rating in categories

2.3

Skill development

1.6

Work-life balance

2.6

Salary

2.1

Job security

1.6

Company culture

2.3

Promotions

1.8

Work satisfaction

Explore 353 Reviews and Ratings
Software Engineer
708 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer Level 1
593 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
296 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
133 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
83 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare MAQ Software 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