Upload Button Icon Add office photos

Filter interviews by

Clear (1)

MAQ Software Software Engineer Interview Questions, Process, and Tips

Updated 21 Feb 2025

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 ...read more
  • Q2. Print Series Problem Statement Given two positive integers N and K , your task is to generate a series of numbers by subtracting K from N until the result is 0 or negati ...read more
  • Q3. Unique Element In Sorted Array Nobita wants to impress Shizuka by correctly guessing her lucky number. Shizuka provides a sorted list where every number appears twice, e ...read more
View all 30 questions

MAQ Software Software Engineer Interview Experiences

26 interviews found

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Simple DBMS and DSA Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. String Manipulations
  • Q2. Linked lists questions

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Timing: Morning
Environment: Online
Description: This round was conducted immediately after Aptitude Round if you cleared it. 4 Questions in 60 minutes.

  • Q1. 

    MergeSort Linked List Problem Statement

    You are given a Singly Linked List of integers. Your task is to sort the list using the 'Merge Sort' algorithm.

    Input:

    The input consists of a single line contain...
  • Ans. 

    Sort a Singly Linked List using Merge Sort algorithm.

    • Implement the Merge Sort algorithm for linked lists.

    • Divide the list into two halves, sort each half recursively, and then merge them.

    • Make sure to handle the base case of an empty or single-node list.

    • Example: Input: 4 3 2 1 -1, Output: 1 2 3 4

  • Answered by AI
  • Q2. 

    Rotate Array Problem Statement

    The task is to rotate a given array with N elements to the left by K steps, where K is a non-negative integer.

    Input:

    The first line contains an integer N representing the...
  • Ans. 

    Rotate a given array to the left by K steps.

    • Create a new array to store the rotated elements.

    • Use modular arithmetic to handle cases where K is greater than the array size.

    • Shift elements to the left by K steps and update the new array.

    • Return the rotated array as output.

  • Answered by AI
  • Q3. 

    Problem: Permutations of a String

    Given a string STR consisting of lowercase English letters, your task is to return all permutations of the given string in lexicographically increasing order.

    Explanatio...

  • Ans. 

    Return all permutations of a given string in lexicographically increasing order.

    • Use backtracking to generate all permutations of the string.

    • Sort the permutations in lexicographical order before printing.

    • Ensure the string contains unique characters for correct output.

    • Handle multiple test cases by iterating over each case.

  • Answered by AI
  • Q4. 

    Factorial Calculation Problem

    Given an integer N, determine the factorial value of N. The factorial of a number N is the product of all positive integers from 1 to N.

    Input:

    First line of input: An inte...
  • Ans. 

    Calculate factorial of a given number N.

    • Iterate from 1 to N and multiply each number to get the factorial value.

    • Handle edge cases like N=0 or N=1 separately.

    • Use recursion or iteration to calculate factorial efficiently.

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 40 minutes
Round difficulty - Medium

Timing: Morning
Environment: Online

  • Q1. 

    Print Series Problem Statement

    Given two positive integers N and K, your task is to generate a series of numbers by subtracting K from N until the result is 0 or negative, then adding K back until it reac...

  • Ans. 

    Generate a series of numbers by subtracting K from N until 0 or negative, then adding K back to reach N without using loops.

    • Create a recursive function to generate the series.

    • Subtract K from N until N is 0 or negative, then add K back until N is reached.

    • Return the series as an array of integers.

  • Answered by AI
  • Q2. 

    Unique Element In Sorted Array

    Nobita wants to impress Shizuka by correctly guessing her lucky number. Shizuka provides a sorted list where every number appears twice, except for her lucky number, which a...

  • Ans. 

    Find the unique element in a sorted array where all other elements appear twice.

    • Iterate through the array and XOR all elements to find the unique element.

    • Use a hash set to keep track of elements and find the unique one.

    • Sort the array and check adjacent elements to find the unique one.

  • Answered by AI
  • Q3. 

    Find the Second Largest Element

    Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.

    If a second largest element does not exist, return -1.

    Example:

    Input:
    ARR = [2,...
  • Ans. 

    Find the second largest element in an array of integers.

    • Iterate through the array to find the largest and second largest elements.

    • Handle cases where all elements are identical.

    • Return -1 if a second largest element does not exist.

  • Answered by AI
  • Q4. Write a query to find the Nth highest salary along with the employee name.
  • Ans. 

    Query to find the Nth highest salary with employee name

    • Use a subquery to rank the salaries in descending order

    • Select the distinct salary from the subquery with LIMIT N-1, 1 to get the Nth highest salary

    • Join the main table with the subquery on the salary column to get the employee name

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 25 minutes
Round difficulty - Easy

Timing: It was in the morning then rescheduled to evening
Environment: Online

  • Q1. 

    Remove String from Linked List Problem

    You are provided with a singly linked list where each node contains a single character, along with a string 'STR'. Your task is to remove all occurrences of the stri...

  • Ans. 

    Remove all occurrences of a specified string from a singly linked list by checking from the end of the list.

    • Traverse the linked list from the end to efficiently remove the specified string occurrences.

    • Update the pointers accordingly after removing the string to maintain the integrity of the linked list.

    • Consider edge cases such as when the entire linked list contains the specified string.

    • Use a temporary buffer to keep t

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. I applied for the job as Software Engineer in HyderabadEligibility criteriaBE/B.Tech / ME/M.Tech, BCA, MCA, B.Sc (2021)MAQ Software interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, Operating Systems, DBMS, Computer NetworkTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : For DS and Algo, keep practicing every day on Leetcode, HackerEarth, and make a habit of participating in contests.
Tip 2 : Projects are vital in interviews, have at least 3 projects on Resume, in the field/profile which you're applying for.
Tip 3 : Give Mock Interviews.

Application resume tips for other job seekers

Tip 1 : Resume should be short and keep it under 1 page.
Tip 2 : Include skills that you're 100% confident in.
Tip 3 : Highlight your internships and projects section appropriately

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Medium

A time range is given you can attempt with in that time and once started you cant resume .

  • Q1. 

    Sort String with Alternate Lower and Upper Case

    Given a string STR containing both lowercase and uppercase letters, the task is to sort the string so that the resulting string contains uppercase and lower...

  • Ans. 

    Sort a string with alternate lowercase and uppercase letters in sorted order.

    • Create two separate arrays for lowercase and uppercase letters.

    • Sort both arrays individually.

    • Merge the two arrays alternately to form the final sorted string.

  • Answered by AI
  • Q2. 

    Remove Invalid Parentheses

    Given a string containing only parentheses and letters, your goal is to remove the minimum number of invalid parentheses to make the input string valid and return all possible v...

  • Ans. 

    Given a string with parentheses and letters, remove minimum invalid parentheses to make it valid and return all possible valid strings.

    • Use BFS to explore all possible valid strings by removing parentheses one by one

    • Keep track of visited strings to avoid duplicates

    • Return all unique valid strings obtained after removing minimum number of parentheses

  • Answered by AI
  • Q3. 

    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:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using dynamic programming.

    • Use dynamic programming to store previously calculated Fibonacci numbers to avoid redundant calculations.

    • Start with base cases F(1) and F(2) as 1, then iterate to calculate F(N) efficiently.

    • Time complexity can be optimized to O(N) using dynamic programming.

    • Example: For N = 5, the 5th Fibonacci number is 5.

  • Answered by AI
  • Q4. 

    Find the Kth Row of Pascal's Triangle Problem Statement

    Given a non-negative integer 'K', determine the Kth row of Pascal’s Triangle.

    Example:

    Input:
    K = 2
    Output:
    1 1
    Input:
    K = 4
    Output:
    1 4 6 ...
  • Ans. 

    To find the Kth row of Pascal's Triangle given a non-negative integer K.

    • Create an array to store the values of the Kth row of Pascal's Triangle

    • Use the formula C(n, k) = C(n-1, k-1) + C(n-1, k) to calculate the values

    • Return the array as the output

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as Software Engineer in MumbaiEligibility criteriaNo backlogsMAQ Software interview preparation:Topics to prepare for the interview - Core Java , Data Structures , SQL , Algorithms , OopsTime required to prepare for the interview - 15 daysInterview preparation tips for other job seekers

Tip 1 : Basics of java should be clear 
Tip 2 : Do maximum question on strings and array

Application resume tips for other job seekers

Tip 1 : Atleast 1 good project
Tip 2 : Good ranks on websites like hackerrank , leetcode.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed before Oct 2020.

Round 1 - Face to Face 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

Asked about time complexity of algorithm, puzzles, DBMS, cutting edge technologies etc. What are indexes?

  • Q1. 

    Flip Bits Problem Explanation

    Given an array of integers ARR of size N, consisting of 0s and 1s, you need to select a sub-array and flip its bits. Your task is to return the maximum count of 1s that can b...

  • Ans. 

    Given an array of 0s and 1s, find the maximum count of 1s by flipping a sub-array at most once.

    • Iterate through the array and keep track of the maximum count of 1s obtained by flipping a sub-array.

    • Consider flipping a sub-array from index i to j and calculate the count of 1s in the resulting array.

    • Return the maximum count of 1s obtained by flipping a sub-array at most once.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

Asked 1 standard algorithm

  • Q1. 

    Number of Islands Problem Statement

    You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...

  • Ans. 

    Count the number of islands in a 2D matrix of 1s and 0s.

    • Iterate through the matrix and perform depth-first search (DFS) to find connected 1s.

    • Mark visited cells to avoid redundant traversal.

    • Increment island count whenever a new island is encountered.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in HyderabadEligibility criteriaAbove 65%MAQ Software interview preparation:Topics to prepare for the interview - Data Structure, Design and analysis of algorithms, DBMS, operating system, computer network, competitive programmingTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : prepare for competitive programming
Tip 2 : know about standard algorithm
Tip 3 : must be good with dbms

Application resume tips for other job seekers

Tip 1 : must have projects, which you can explain to them
Tip 2 : have things on resume, that you are totally certain about.

Final outcome of the interviewSelected

Skills evaluated in this interview

MAQ Software interview questions for designations

 Associate Software Engineer

 (12)

 Software Engineer Intern

 (2)

 Senior Software Engineer

 (1)

 Software Engineer Level 1

 (9)

 Software Developer

 (14)

 Software Engineer2

 (2)

 Software Intern

 (2)

 Software Developer Intern

 (5)

Software Engineer Interview Questions & Answers

user image Rohit Karnatakapu

posted on 10 Nov 2015

Interview Preparation Tips

Round: CGPA SHORTlist
Experience: They selected students who have CGPA greater than 8.5.After the selection was done,we had skype interviews where each student was given a slot.In the interview they ask you about 'tell me about yourself',your projects.You should explain the projects exactly and clearly.They ask you better alternatives for implementing the project.After that on the basis of the project they ask you questions related to that subject.Data structures is very important.After the questions on projects were asked they ask you to write programs on data structures(simple programs). They asked me a program to reverse a singly linked list. After that,if they are impressed with it,they go for databases.One should be thorough with functionalities of each key.If time permits they may ask you puzzles(some of my friends were asked). Quite an easy interview.They give you enough time to think so no worries.People with some interview experience can easily crack this.The main objective of the interviewer is he/she checks whether the student is perfect in the concepts learned.
Tips: Don't be panic.If you don't know anything directly say 'I don't know'. They ask you very easy questions.

General Tips: Don't be panic.Since this is skype interview you can be relaxed.Be cool and focussed .Listen to the interviewer questions carefully.
Skills: Database Management, Algorithms And Data Structures
College Name: VIT Vellore
Motivation: Company works on latest trends like azure,etc and they work on projects related to microsoft.

Get interview-ready with Top MAQ Software Interview Questions

Interview Preparation Tips

Round: Test
Experience: 1st Round : 30 Aptitude Questions (Difficulty Level-HIGH) with nega
tive marking- My Score 15/30, Highest in the test
+ 2 Coding Questions ( Dyanamic Programming + N-Queens Problem)

Round: Technical Interview
Experience: Technical Interview- Questions based on recurssion DSA, HTML.

General Tips: Just know the project you have done in details , don't bluff
First Interview and got it in single shot.
Skill Tips: Karumanchi for DSA, w3 Schools for web related topics DBMS and SQL from Tutorial point.
Skills:
College Name: NIT Surathkal
Contribute & help others!
anonymous
You can choose to be anonymous

MAQ Software Interview FAQs

How many rounds are there in MAQ Software Software Engineer interview?
MAQ Software interview process usually has 2-3 rounds. The most common rounds in the MAQ Software interview process are Coding Test, Technical and One-on-one Round.
How to prepare for MAQ Software Software Engineer 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 Azure, Agile, Android, Business Intelligence and Cloud Computing.
What are the top questions asked in MAQ Software Software Engineer interview?

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

  1. Which data structure inserts and deletes in O(1) time and is it possible to cre...read more
  2. Find the third largest element from array, give the optimized approach using ju...read more
  3. What are indexes , example, Is it possible to have more than one clustered inde...read more
How long is the MAQ Software Software Engineer interview process?

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

Recently Viewed

REVIEWS

Adrosonic IT Consultancy Services

No Reviews

INTERVIEWS

Han Digital

No Interviews

REVIEWS

ContentServ Technologies

No Reviews

SALARIES

ContentServ Technologies

COMPANY BENEFITS

Adrosonic IT Consultancy Services

No Benefits

LIST OF COMPANIES

ContentServ Technologies

Locations

REVIEWS

ContentServ Technologies

No Reviews

REVIEWS

Piramal Capital Housing Finance

No Reviews

REVIEWS

Piramal Capital Housing Finance

No Reviews

Tell us how to improve this page.

MAQ Software Software Engineer Interview Process

based on 25 interviews

3 Interview rounds

  • Coding Test Round
  • Technical Round - 1
  • Technical Round - 2
View more
MAQ Software Software Engineer Salary
based on 714 salaries
₹5 L/yr - ₹15.5 L/yr
17% more than the average Software Engineer Salary in India
View more details

MAQ Software Software Engineer Reviews and Ratings

based on 114 reviews

2.1/5

Rating in categories

2.3

Skill development

1.7

Work-life balance

2.5

Salary

2.2

Job security

1.7

Company culture

2.4

Promotions

1.9

Work satisfaction

Explore 114 Reviews and Ratings
Software Engineer
714 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer Level 1
599 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
298 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
135 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent