Upload Button Icon Add office photos

Filter interviews by

MAQ Software Software Engineer Intern Trainee Interview Questions and Answers

Updated 25 Apr 2024

MAQ Software Software Engineer Intern Trainee Interview Experiences

1 interview found

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

I applied via campus placement at Chitkara Institute of Engineering & Technology, Rajpura and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

20 MCQ and 2 coding questions

Round 2 - Technical 

(4 Questions)

  • Q1. Project explanation, some questions of OOps and DBMs , 1 coding question, 1 SQL question( most important)
  • Q2. Alternative character replacement in a string
  • Ans. 

    Replace alternative characters in a string with a specified character

    • Iterate through the string and replace characters at odd indices with the specified character

    • Use a loop to go through each character and check if its index is odd or even before replacing

    • Example: Input string 'hello' and replacement character '*', output 'h*l*'

  • Answered by AI
  • Q3. Inheritance and classes, objects in OOps
  • Q4. Normalisation and keys from dbms
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity. Keys are used to uniquely identify records in a table.

    • Normalization involves breaking down data into smaller, more manageable parts to reduce redundancy.

    • Keys are used to uniquely identify records in a table. Examples include primary keys, foreign keys, and candidate keys.

    • Normalization helps in maintaining data...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview, just be confident

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell us about your experience.
  • Q2. In english, give me a feedback you received lately.
Round 2 - Technical 

(2 Questions)

  • Q1. Brief explanation of SOLID principles
  • Q2. Ref vs out arguments
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
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is angular
  • Ans. 

    Angular is a popular open-source front-end web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem with many libraries and tools available.

  • Answered by AI
  • Q2. What is an angular
  • Ans. 

    Angular is a popular open-source web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem with many libraries and tools available.

  • Answered by AI

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
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

30 questions - aptitude+DSA +Java+Sql MCQ Questions

Round 2 - Coding Test 

3 codes are given
1)if number is divisible by 15 then print "Foo" ,if number is divisible by 17 then print "bar" ,
if number is divisible by 15 and 17 then print "Foo Bar"
2) find third largest element of array
3)find factors of number

Round 3 - Technical 

(1 Question)

  • Q1. Explain Access modifiers public and default difference how to connect java to database 20 % of 25 superclass of all class sql query for delete last 10 rows from employee table
  • Ans. 

    Access modifiers control the visibility and accessibility of classes, methods, and variables in Java.

    • public access modifier allows a class, method, or variable to be accessed from any other class.

    • default access modifier (no keyword) allows a class, method, or variable to be accessed only within the same package.

    • To connect Java to a database, you can use JDBC (Java Database Connectivity) API.

    • The superclass of all classe...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Why you want join our company
  • Q2. Why should hire you?
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.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2023. There were 4 interview rounds.

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 - Technical 

(1 Question)

  • Q1. Coding Round, Design Pattern
Round 3 - Technical 

(1 Question)

  • Q1. Coding, Design Pattern
Round 4 - Technical 

(1 Question)

  • Q1. Coding, SOLID, System Design

MAQ Software Interview FAQs

How many rounds are there in MAQ Software Software Engineer Intern Trainee interview?
MAQ Software interview process usually has 2 rounds. The most common rounds in the MAQ Software interview process are Coding Test and Technical.
What are the top questions asked in MAQ Software Software Engineer Intern Trainee interview?

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

  1. Alternative character replacement in a str...read more
  2. Normalisation and keys from d...read more
  3. Project explanation, some questions of OOps and DBMs , 1 coding question, 1 SQL...read more

Tell us how to improve this page.

MAQ Software Software Engineer Intern Trainee Interview Process

based on 1 interview

Interview experience

4
  
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
 • 801 Interviews
View all
Software Engineer
661 salaries
unlock blur

₹5.3 L/yr - ₹14.9 L/yr

Software Engineer Level 1
586 salaries
unlock blur

₹5 L/yr - ₹13.4 L/yr

Software Engineer2
289 salaries
unlock blur

₹8 L/yr - ₹18 L/yr

Associate Software Engineer
125 salaries
unlock blur

₹3.6 L/yr - ₹12 L/yr

Associate Technical Project Manager
79 salaries
unlock blur

₹12 L/yr - ₹21 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