Upload Button Icon Add office photos

Filter interviews by

MASTEK ENGINEERING Interview Questions and Answers

Updated 5 Mar 2021

MASTEK ENGINEERING Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed before Mar 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They saw my resume and particulaly they got attention on my hobbies.so actually what I wrote in my hobbies is..I'm an enthusiastic about our Indian mythology.so they start questioning about Indian mytholog...

Interview Preparation Tips

Interview preparation tips for other job seekers - Our posture is contains 6% weightage in interview marks.i know it is very low but it is necessary so my advice is go to interview in a formal dress..

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 questions from similar companies

Software Engineer Interview Questions & Answers

American Megatrends user image R. Arockia Ratheesh Sahayaraj

posted on 6 Nov 2015

Interview Preparation Tips

Round: Test
Experience: Only 24 people from my campus attended the placement process of this company.The experience wasn't really good.I wasn't 
short-listed for next round as my CGPA was 7.5 and need was of above 7.5 ,as they were maintaining standards.

Round: Test
Experience: 1.C aps was really tough.
2.Section 2 we had to choose either Microprocessor or Java,I preferred microprocessor . 3.Simple Questions on 8085 and 8086 instruction set was asked.
4.How much memory are there are 20 address lines,
5.Difference between SRAM and DRAM.
6.ROM is used for stack or not.
7.What are contents of Stack Pointer after PUSH and POP operation.
8.What happens after RET instruction?
9.What is CMC equivalent instruction?

Round: Test
Experience: 16 questions on Quant which are :-
Odd number in a series, Area and Volume, Games of Skill, Time and Work, Average, Trains, Boats 
and Streams, Profit and Gain were asked.
If no. of handshakes is 66,find total number of People.?
A lotus in a pond doubles in size everyday,if it fills the pond on 20th day,when will be the pond would be half?
LOGICAL REASONING-
4 men are on the side of a bridge.One torch light is with them and without it they cannot cross 
the bridge.The bridge can withstand only 2 people at a time.The time required by the persons are 1 
min,2 mins,7 mins,10 mins respectively.Find the shortest time required by all of em to cross the
bridge.
(Answer: 17 minutes)

Round: SOFT SKILLS
Experience: scenario based questions were asked:-
1.working on a project in your company and your brother is in urgent need of a project.What will you do?
2.Your friend mails the project details to some other company.what will be you reaction?
3.Your boss allows to take your team members for a treat.Whether you choose costly one or within budget?
4.Your favorite subject in your curriculum and Why?
5.Where you would view yourself in 5 years?
6.What is a dream company in your terms?
7.Any situation were your work was criticized and what was your reaction?

Skills:
College Name: Anna University Chennai
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Java core and spring questions
  • Q2. How would you find an element from a list
  • Ans. 

    Use a loop to iterate through the list and compare each element with the target element

    • Iterate through the list using a loop

    • Compare each element with the target element

    • Return the element if found, otherwise return null

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Screening 

(3 Questions)

  • Q1. Basic C++ questions: initialiser list and applications
  • Q2. Questions on vector implementation
  • Q3. Question on linux file system
Round 2 - Technical 

(2 Questions)

  • Q1. Design a logger class
  • Ans. 

    A logger class to handle logging messages in an application

    • Create a Logger class with methods like logInfo, logError, logWarning, etc.

    • Use a file or database to store the log messages

    • Include timestamp and severity level in each log message

    • Implement log rotation to manage log file size

  • Answered by AI
  • Q2. What is RAII, rule of 3, 5. What is smart pointers and coding questions based on string
  • Ans. 

    RAII is a resource management technique in C++. Rule of 3/5 refers to special member functions. Smart pointers are objects that manage memory automatically.

    • RAII stands for Resource Acquisition Is Initialization, a C++ programming technique where resource management is tied to object lifetime.

    • Rule of 3 states that if a class defines a custom destructor, copy constructor, or copy assignment operator, it should define all...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. C2H profile basic technology based question s only

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your answer
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed in Nov 2022.

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 - Aptitude Test 

Strong appitude knowledge is required.

Round 3 - Technical 

(1 Question)

  • Q1. String , arrays, oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Have strong basic concepts.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Strecture of sql statement
  • Ans. 

    SQL statements are used to interact with databases by performing operations like querying, updating, and deleting data.

    • SQL statements are made up of keywords like SELECT, INSERT, UPDATE, DELETE, etc.

    • They are structured in a specific order, with clauses like WHERE, ORDER BY, GROUP BY, etc.

    • Tables are referenced using their names, and conditions are specified to filter data.

    • Joins can be used to combine data from multiple

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 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 

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Spring boot related questions
  • Q2. Java related questios
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Os, cloud computing, DBMS, networks, ai and ml mcq questions were asked

Tell us how to improve this page.

MASTEK ENGINEERING Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

CGS Interview Questions
3.6
 • 25 Interviews
Pitney Bowes Interview Questions
3.8
 • 21 Interviews
DynPro Interview Questions
3.8
 • 18 Interviews
Intellias Interview Questions
4.6
 • 6 Interviews
View all

MASTEK ENGINEERING Reviews and Ratings

based on 25 reviews

4.1/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

3.6

Salary

3.4

Job security

3.7

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 25 Reviews and Ratings
Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Civil Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Safety Officer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Electrical & Instrumentation Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Safety Supervisor
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare MASTEK ENGINEERING with

Primus Global Technologies

3.9
Compare

Accel Frontline

4.0
Compare

Pitney Bowes

3.8
Compare

Apex CoVantage

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