Upload Button Icon Add office photos

Filter interviews by

MAQ Software Software Engineer Intern Interview Questions, Process, and Tips

Updated 16 Apr 2024

Top MAQ Software Software Engineer Intern Interview Questions and Answers

View all 6 questions

MAQ Software Software Engineer Intern Interview Experiences

2 interviews found

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

(2 Questions)

  • Q1. Write code for Level Order Traversal for Binary Tree
  • Ans. 

    Level Order Traversal for Binary Tree is a method to visit all nodes level by level starting from the root.

    • Use a queue data structure to keep track of nodes at each level

    • Start by pushing the root node into the queue

    • While the queue is not empty, dequeue a node, visit it, and enqueue its children

  • Answered by AI
  • Q2. Difference between left join and right join
  • Ans. 

    Left join includes all records from the left table and matching records from the right table, while right join includes all records from the right table and matching records from the left table.

    • Left join keeps all records from the left table, even if there are no matches in the right table.

    • Right join keeps all records from the right table, even if there are no matches in the left table.

    • Example: If we have a table of em...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Basic aptitude questions Learn from Indiabix

Round 2 - One-on-one 

(5 Questions)

  • Q1. Some DBA questions regarding Stored procedures. What are SSIS, SSAS and SSMS?
  • Q2. What does a Stored Procedure do
  • Ans. 

    A stored procedure is a precompiled set of SQL statements that can be executed on a database server.

    • Stored procedures are used to encapsulate and execute complex database operations.

    • They can be used to improve performance by reducing network traffic.

    • Stored procedures can be parameterized and reused across multiple applications.

    • They provide a level of security by allowing access to the database only through the procedur...

  • Answered by AI
  • Q3. Write a SQL query to move table from one Schema to other
  • Ans. 

    A SQL query to move a table from one schema to another.

    • Use the ALTER TABLE statement to rename the table and move it to the new schema.

    • Specify the new schema name in the ALTER TABLE statement.

    • Ensure that the user executing the query has the necessary privileges to perform the operation.

  • Answered by AI
  • Q4. Difference between SSMS, SSIS and SSAS
  • Ans. 

    SSMS is a management tool for SQL Server, SSIS is an ETL tool, and SSAS is a BI tool for analyzing data.

    • SSMS (SQL Server Management Studio) is a graphical management tool for SQL Server.

    • SSIS (SQL Server Integration Services) is an ETL (Extract, Transform, Load) tool used for data integration and workflow applications.

    • SSAS (SQL Server Analysis Services) is a BI (Business Intelligence) tool used for analyzing and reporti...

  • Answered by AI
  • Q5. What are cubes. How are they different from Databases
  • Ans. 

    Cubes are multidimensional data structures used for analysis and reporting. They differ from databases in their structure and purpose.

    • Cubes store data in a multidimensional format, allowing for efficient analysis and reporting.

    • They are designed to handle large volumes of data and provide fast query performance.

    • Cubes use dimensions, measures, and hierarchies to organize and analyze data.

    • Unlike databases, cubes are optim...

  • Answered by AI

Skills evaluated in this interview

Software Engineer Intern Interview Questions Asked at Other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, y ... read more
asked in NCR Voyix
Q2. Search In Rotated Sorted Array Problem Statement Given a rotated ... read more
Q3. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q4. Zero Matrix Problem Statement You are given a matrix MATRIX of di ... read more
Q5. Partition Array Minimizing Subset Sum Difference Given an array c ... read more

Interview questions from similar companies

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

I was interviewed in Jul 2024.

Round 1 - Coding Test 

Leet code medium level question

Round 2 - Technical 

(2 Questions)

  • Q1. About Java Streams
  • Q2. Restful API coding completion based on given file
Round 3 - HR 

(2 Questions)

  • Q1. To check your attitude
  • Q2. Given detailed about company and what project you are going to work on?
Round 4 - One-on-one 

(5 Questions)

  • Q1. Hashmap working
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • Hashmap uses a hashing function to map keys to indices in an array.

    • It allows for constant time complexity O(1) for insertion, deletion, and retrieval operations.

    • Example: HashMap<String, Integer> map = new HashMap<>(); map.put("key", 123); int value = map.get("key");

  • Answered by AI
  • Q2. Multithreading cases
  • Q3. Scenario specific on how to handle multiple events on a single variable to have accurate result
  • Q4. Database indexing
  • Q5. Architecture level
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at International Institute of Information Technology (IIIT), Allahabad and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

Round 1: DSA round asked Two DSA question in which one is Leetcode medium and another is leetcode Hard. I answer both of them but not selected in the further HR round.

Round 2: HR round

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How pagination work in jpa
  • Ans. 

    Pagination in JPA allows for retrieving a subset of results from a query by specifying a limit and offset.

    • Use the setFirstResult() method to specify the starting index of the results to retrieve

    • Use the setMaxResults() method to specify the maximum number of results to retrieve

    • Combine setFirstResult() and setMaxResults() to implement pagination in JPA queries

  • Answered by AI
  • Q2. How to create restful api
  • Ans. 

    To create a RESTful API, define endpoints, use HTTP methods, handle requests and responses, and follow REST principles.

    • Define endpoints for different resources (e.g. /users, /products)

    • Use HTTP methods like GET, POST, PUT, DELETE for CRUD operations

    • Handle requests and responses in JSON format

    • Follow REST principles like statelessness, uniform interface, and client-server architecture

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is sql server agent why can't we create objects of abstract class write extension method for abstract class SQL: SP vs Function, which one is faster, why? can I call SP from Function Microservice orch...
  • Ans. 

    SQL Server Agent is a job scheduling tool in SQL Server. Abstract classes cannot be instantiated. SPs are faster than functions. Microservice concepts. IEnumerable vs IQueryable.

    • SQL Server Agent is a job scheduling tool in SQL Server for automating tasks like backups, database maintenance, etc.

    • Abstract classes cannot be instantiated because they are incomplete and meant to be extended by subclasses.

    • Extension methods ca...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is record in c# write generic method to perform summation of 2 numeric type variable (int, double, float..) write test cases for Sum method which design pattern you used
  • Ans. 

    A record in C# is a data structure that stores a fixed number of fields of different data types.

    • A record in C# is similar to a struct in C++, containing fields to store data.

    • Example: 'public record Person { public string Name; public int Age; }'

    • Generic method for summation: 'public T Sum(T a, T b) where T : struct, IConvertible { return Convert.ToDouble(a) + Convert.ToDouble(b); }'

    • Test cases can include checking the su...

  • Answered by AI
  • Q2. This was the worst interview I have ever given. Interview got rescheduled 3 times. The panelist behaved so rudely, Why people wouldn't even care to show his face, it's literally very frustrating.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your name
  • Q2. What is your strength

Interview Preparation Tips

Interview preparation tips for other job seekers - No comments links to this video is small
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Aptitude test was easy level and moderate level.

Round 2 - Coding Test 

Coding test was held in the google form which was very easy.

Round 3 - Technical 

(3 Questions)

  • Q1. What is volatile keyword?
  • Ans. 

    The volatile keyword in software engineering is used to indicate that a variable's value can be modified by multiple threads.

    • Volatile keyword ensures that the variable's value is always read from and written to the main memory, rather than cached in a thread's local cache.

    • It is used to prevent unexpected behavior in multi-threaded environments where multiple threads may access and modify the same variable simultaneousl...

  • Answered by AI
  • Q2. What is abstract class
  • Ans. 

    An abstract class is a class that cannot be instantiated and is meant to be subclassed.

    • An abstract class can have abstract methods that must be implemented by its subclasses.

    • An abstract class can also have non-abstract methods that can be inherited by its subclasses.

    • An abstract class provides a common interface for its subclasses.

    • An abstract class can have instance variables and constructors.

    • An abstract class cannot be...

  • Answered by AI
  • Q3. Where do you use abstract class
  • Ans. 

    Abstract classes are used to provide a common interface and partial implementation for related classes.

    • Abstract classes are used when you want to create a base class that cannot be instantiated on its own but can be inherited by other classes.

    • They are useful when you want to define common methods and properties that multiple related classes should have.

    • Abstract classes can have both abstract and non-abstract methods.

    • Ab...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is four pillars of oops concepts
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction

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

    • Inheritance: Ability of a class to inherit properties and behavior from another class

    • Polymorphism: Ability to present the same interface for different data types

    • Abstraction: Hiding the complex implementation details and showing only the necessary features

  • Answered by AI
  • Q2. Different between array and collection
  • Ans. 

    Arrays are fixed in size and store elements of the same data type, while collections are dynamic in size and can store elements of different data types.

    • Arrays have a fixed size, while collections can dynamically resize.

    • Arrays store elements of the same data type, while collections can store elements of different data types.

    • Arrays use indexes to access elements, while collections use iterators or other methods.

    • Examples:...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Approached by Company and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Coding Test 

DSA coding 2-3 question

Round 2 - Group Discussion 

Java, DSA coding, java 8 coding, multithreading

Round 3 - Group Discussion 

Java8, spring-boot, DSA coding

Round 4 - Technical 

(1 Question)

  • Q1. DSA coding, java 8 coding, spring boot, mysql

Interview Preparation Tips

Interview preparation tips for other job seekers - WORST company. They will waste your time in 4-5 technical rounds and at the time of offer they will ghost you. playing with someone's career is not cool. Be aware of companies like this.

MAQ Software Interview FAQs

How many rounds are there in MAQ Software Software Engineer Intern interview?
MAQ Software interview process usually has 1-2 rounds. The most common rounds in the MAQ Software interview process are Aptitude Test, One-on-one Round and Technical.
What are the top questions asked in MAQ Software Software Engineer Intern interview?

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

  1. What are cubes. How are they different from Databa...read more
  2. Write a SQL query to move table from one Schema to ot...read more
  3. What does a Stored Procedure...read more

Tell us how to improve this page.

MAQ Software Software Engineer Intern Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k 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
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 805 Interviews
View all

MAQ Software Software Engineer Intern Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

4.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
694 salaries
unlock blur

₹5 L/yr - ₹15.5 L/yr

Software Engineer Level 1
590 salaries
unlock blur

₹5 L/yr - ₹13.4 L/yr

Software Engineer2
292 salaries
unlock blur

₹8 L/yr - ₹18 L/yr

Associate Software Engineer
132 salaries
unlock blur

₹3.6 L/yr - ₹13 L/yr

Senior Software Engineer
81 salaries
unlock blur

₹11.5 L/yr - ₹25 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