Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Mangalam Information Technolgies Team. If you also belong to the team, you can get access from here

Mangalam Information Technolgies Verified Tick

Compare button icon Compare button icon Compare
4.2

based on 82 Reviews

Filter interviews by

Mangalam Information Technolgies AR Associate Interview Questions and Answers

Updated 18 Apr 2024

Mangalam Information Technolgies AR Associate Interview Experiences

1 interview found

AR Associate Interview Questions & Answers

user image Yash Waghmar

posted on 18 Apr 2024

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

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

Round 1 - HR 

(1 Question)

  • Q1. Geneal personal questions
Round 2 - Technical 

(1 Question)

  • Q1. Rcm regarding only which he knows

Interview questions from similar companies

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

I applied via Referral

Round 1 - Coding Test 

Print a specific pattern using any programming language.

Round 2 - One-on-one 

(3 Questions)

  • Q1. What is a class in Object-Oriented Programming (OOP)?
  • Ans. 

    A class in OOP is a blueprint for creating objects, defining their properties and behaviors.

    • Classes are templates for creating objects in OOP

    • They define the properties (attributes) and behaviors (methods) of objects

    • Objects are instances of classes, each with its own unique data

    • Inheritance allows classes to inherit properties and behaviors from other classes

    • Encapsulation ensures that the data is hidden and can only be a...

  • Answered by AI
  • Q2. What is the difference between an abstract class and an interface?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.

    • A class can only extend one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define common characteristics of subclasses, while interfaces are used to define contracts for...

  • Answered by AI
  • Q3. What is joining and creating an inner join query?
  • Ans. 

    Joining is combining data from two or more tables based on a related column, while an inner join query retrieves only the matching records.

    • Joining is used to combine data from multiple tables in a database.

    • Inner join query retrieves only the records that have matching values in both tables.

    • Syntax for inner join: SELECT columns FROM table1 INNER JOIN table2 ON table1.column = table2.column;

    • Example: SELECT orders.order_i...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Webkul Software Associate Software Engineer interview:
  • OOPS
  • Baisc Of any of Programing
  • MySQL
  • joins
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Reverse a loop for a linked list
  • Ans. 

    To reverse a loop for a linked list, iterate through the list and change the pointers to point in the opposite direction.

    • Start by initializing three pointers: current, previous, and next.

    • Iterate through the linked list, updating the pointers to reverse the direction of the links.

    • Update the head of the linked list to point to the new first node after reversing the loop.

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Prime number find and odd even question I get to solve for traineesoftware engineer interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics of oops and basic coding questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

(2 Questions)

  • Q1. What was your job role in previous company.
  • Q2. How many years of experience do you have.
Round 3 - Technical 

(2 Questions)

  • Q1. Can you brief about your technical skills.
  • Q2. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly check Rating and Review before joining.

I applied via LinkedIn and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Regarding quadient designer Regarding quadient automation
Round 3 - Technical 

(1 Question)

  • Q1. Regarding designer implementation Regarding automation implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - Manager round regarding how work is done and how implementation are done
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Naukri.com and was interviewed in Nov 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Logical, mathematical questions

Round 3 - Technical 

(1 Question)

  • Q1. Baiscs questions on Java and programming questions
Round 4 - HR 

(1 Question)

  • Q1. Final round for discussion about your goal and yourself

I applied via Company Website and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Coding Test 

1 hour duration with 5 coding questions.

Round 2 - Technical 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just refresh your basics and you are good to go.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Some coding based questions.
  • Q2. Some technical question related theory.
  • Q3. Some pattern based questions.

Interview Preparation Tips

Topics to prepare for Webkul Software Associate Software Engineer interview:
  • OOPS
  • Design Patterns
  • Strings
  • Arrays
Interview preparation tips for other job seekers - Keed learning on the related tech and practice the coding questions.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Worst experience company is not so good

Round 2 - Technical 

(2 Questions)

  • Q1. What is object oriented programming
  • Ans. 

    Object oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOP focuses on creating objects that interact with each other to solve problems

    • Encapsulation, inheritance, and polymorphism are key principles of OOP

    • Examples of OOP languages include Java, C++, and Python

  • Answered by AI
  • Q2. Questions on data structute

Mangalam Information Technolgies Interview FAQs

How many rounds are there in Mangalam Information Technolgies AR Associate interview?
Mangalam Information Technolgies interview process usually has 2 rounds. The most common rounds in the Mangalam Information Technolgies interview process are HR and Technical.
What are the top questions asked in Mangalam Information Technolgies AR Associate interview?

Some of the top questions asked at the Mangalam Information Technolgies AR Associate interview -

  1. Rcm regarding only which he kn...read more
  2. Geneal personal questi...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Mangalam Information Technolgies interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
Mphasis Interview Questions
3.4
 • 783 Interviews
View all

Mangalam Information Technolgies AR Associate Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

3.0

Work-Life balance

2.0

Salary & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
Associate
57 salaries
unlock blur

₹1.2 L/yr - ₹3.7 L/yr

Senior Associate
24 salaries
unlock blur

₹1.3 L/yr - ₹4.3 L/yr

Network & System Engineer
10 salaries
unlock blur

₹2.4 L/yr - ₹4.8 L/yr

HR Executive
10 salaries
unlock blur

₹2.2 L/yr - ₹3.9 L/yr

Process Associate
9 salaries
unlock blur

₹2.4 L/yr - ₹4 L/yr

Explore more salaries
Compare Mangalam Information Technolgies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview