Upload Button Icon Add office photos
Engaged Employer

i

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

Mindteck Verified Tick

Compare button icon Compare button icon Compare
3.3

based on 237 Reviews

Filter interviews by

Mindteck Associate Interview Questions and Answers

Updated 26 Jan 2022

Mindteck Associate Interview Experiences

1 interview found

Associate Interview Questions & Answers

user image Anonymous

posted on 26 Jan 2022

Round 1 - Technical 

(1 Question)

  • Q1. Mvc, web api basic question, design pattern and solid principle with example, wcf, session
Round 2 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Always noted down the interview question for your next interview

Interview questions from similar companies

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
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
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.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2023. There were 4 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 - Aptitude Test 

60 minutes Aptitude test based on General Aptitude, Java and SQL.

Round 3 - Group Discussion 

GD Topic-Advertisements should be banned or not?

Round 4 - Technical 

(1 Question)

  • Q1. HR + Technical Round: General HR questions Final year Project Java questions SQL questions Write output of given code

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident

I applied via LinkedIn and was interviewed in Oct 2022. There were 3 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 - 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

I applied via campus placement at Avanthi Institute of Engineering and Technology, Pedapeta and was interviewed before Nov 2021. There were 3 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 

(1 Question)

  • Q1. At the starting of interview iam nervous but as interviewer said me to smile once I forgot all my fear and happily.. had my interview and i was a successful interview with great company
Round 3 - HR 

(1 Question)

  • Q1. HR is basically to test how much we know about ourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't get afraid and look at the interviewer while answering... And smile a little while wishing him.

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.

I applied via campus placement at Mumbai University and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Java,sql
  • Q2. 2 technical round

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident on ur answer
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

Mindteck Interview FAQs

How many rounds are there in Mindteck Associate interview?
Mindteck interview process usually has 2 rounds. The most common rounds in the Mindteck interview process are Technical and HR.

Tell us how to improve this page.

Senior Software Engineer
233 salaries
unlock blur

₹4.9 L/yr - ₹20 L/yr

Software Engineer
217 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Module Lead
140 salaries
unlock blur

₹7.9 L/yr - ₹25.4 L/yr

Technical Lead
63 salaries
unlock blur

₹8.5 L/yr - ₹25 L/yr

Senior Test Engineer
45 salaries
unlock blur

₹5 L/yr - ₹14.1 L/yr

Explore more salaries
Compare Mindteck with

Persistent Systems

3.5
Compare

Cyient

3.7
Compare

L&T Technology Services

3.3
Compare

TCS

3.7
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