Upload Button Icon Add office photos
Engaged Employer

i

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

Mindlogicx Infratec Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Mindlogicx Infratec Interview Questions and Answers for Experienced

Updated 5 Apr 2025

Mindlogicx Infratec Interview Experiences for Experienced

Popular Designations

2 interviews found

Sales Head Interview Questions & Answers

user image Anonymous

posted on 5 Apr 2025

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Asked about my experience, About my wife's profession, about my mom and dad's profession, if I have a 4 wheeler, if I am married, my age, and If I have a kid, besides that, and a few goofy questions
  • Q2. Same as i mentioned above

Sales Head Interview Questions asked at other Companies

Q1. If your client don't know English Hindi and other language which you knows. So how would you like to explain about product??
View answer (2)

I applied via Approached by Company and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. OOPS and technical question
  • Q2. OOPS and C# related technical
Round 2 - One-on-one 

(1 Question)

  • Q1. Normal Aptitude and Situational Manager Round

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was okay, not difficult but make sure you discuss well over salary

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Interview questions from similar companies

I applied via Referral and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Why Talentedge
  • Q2. What else you used to do in your previous organisation
  • Q3. What are your strengths and weaknesses
  • Q4. How will you be able to sell on first call
  • Ans. 

    To sell on first call, I will focus on building rapport, understanding the customer's needs, and presenting a compelling solution.

    • Research the prospect before the call

    • Ask open-ended questions to understand their pain points

    • Listen actively and show empathy

    • Present a solution that addresses their specific needs

    • Highlight the benefits and value of the solution

    • Handle objections effectively

    • Close the sale or schedule a follow-

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident, whatever you say say with confidence & bold voice

Interview Questionnaire 

1 Question

  • Q1. Basics Managerial Questions

Interview Preparation Tips

Round: Test
Duration: 1 hour
Total Questions: 45

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

I applied via LinkedIn and was interviewed in Sep 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 - Coding Test 

Medium level coding question

Round 3 - Technical 

(2 Questions)

  • Q1. Intreview round asked about project mentioned in CV
  • Q2. Basic of reacts, opps question,sql queries
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2022. 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 - Assignment 

Implement login with Google SSO, show emails in a single place

Round 3 - One-on-one 

(4 Questions)

  • Q1. How to implement JWT
  • Ans. 

    JWT can be implemented by generating a token with user information and a secret key, then verifying the token using the same secret key.

    • Generate a JWT token with user information and a secret key

    • Include necessary claims like expiration time, issuer, etc.

    • Verify the JWT token using the same secret key

    • Handle token expiration and refresh if needed

  • Answered by AI
  • Q2. Please read about it on the internet, do take care of public and private key use
  • Q3. Middleware in express, how to create one?
  • Ans. 

    Middleware in Express is a function that has access to the request and response objects.

    • Create a middleware function using app.use() method in Express.

    • Middleware functions have access to the request object (req), the response object (res), and the next middleware function in the application's request-response cycle.

    • Example: app.use((req, res, next) => { console.log('This is a middleware function'); next(); });

  • Answered by AI
  • Q4. Read about it on the internet
Round 4 - One-on-one 

(6 Questions)

  • Q1. Discussed about guards in Angular
  • Q2. Read about it on the internet
  • Q3. How does lazy loading work in Angular
  • Ans. 

    Lazy loading in Angular delays loading of modules until they are needed

    • Lazy loading helps improve performance by only loading modules when they are required

    • It is achieved by using the loadChildren property in the route configuration

    • Lazy loaded modules are loaded asynchronously when the user navigates to the corresponding route

  • Answered by AI
  • Q4. Read about lazy loading in Angular
  • Q5. How to enable SSR in Angular
  • Ans. 

    Server-side rendering (SSR) in Angular can be enabled by using Angular Universal.

    • Install Angular Universal using Angular CLI

    • Create a new Angular Universal project

    • Update app.module.ts to include server-side rendering

    • Build and run the Angular Universal project

  • Answered by AI
  • Q6. Read about Angular Universal for this

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Angular concepts, DSA and Ruby on Rails concepts for the round

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find duplicates in an array
  • Ans. 

    Use a hash set to find duplicates in an array of strings.

    • Create a hash set to store unique elements.

    • Iterate through the array and check if the element is already in the hash set.

    • If it is, then it is a duplicate. If not, add it to the hash set.

  • Answered by AI
  • Q2. Find single duplicate element in an array where contents of the array are length of array - 1
  • Ans. 

    Find the single duplicate element in an array of strings with length n-1.

    • Iterate through the array and use a HashSet to keep track of elements seen so far.

    • If an element is already in the HashSet, that is the duplicate element.

    • Return the duplicate element once found.

  • Answered by AI
Round 2 - Assignment 

Create a student support system

Round 3 - One-on-one 

(1 Question)

  • Q1. Design an order and payments system for an EdTech company
  • Ans. 

    Design an order and payments system for an EdTech company

    • Allow users to browse and select courses

    • Implement a shopping cart for users to add courses

    • Integrate payment gateways for secure transactions

    • Provide order confirmation and receipt to users

    • Allow users to track their order status

  • Answered by AI

Skills evaluated in this interview

I applied via Job Portal and was interviewed in Apr 2022. 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 - Aptitude Test 

It was quite easy

Round 3 - Technical 

(1 Question)

  • Q1. Based on resume. Go through with your resume..

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume.. The things you have mentioned you should know about it

I applied via Naukri.com and was interviewed in Sep 2022. 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 - Aptitude Test 

Basic coding maths aptitude java python communication skills test

Round 3 - Coding Test 

Java coding c plus python SQL oracle dbmsos

Interview Preparation Tips

Topics to prepare for Internshala Software Developer interview:
  • Networking
  • Aptitude
Interview preparation tips for other job seekers - Resume best not fake anything c java python all Cisco related concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair

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 

Aptitude on clocks, calenders, boats and streams..

Round 3 - Aptitude Test 

Aptitude based on clocks, calendars, boats and streams..

Round 4 - Technical 

(2 Questions)

  • Q1. Asked about python, c, c++, html, css
  • Q2. Python basics, differences between them

Mindlogicx Infratec Interview FAQs

How many rounds are there in Mindlogicx Infratec interview for experienced candidates?
Mindlogicx Infratec interview process for experienced candidates usually has 1-2 rounds. The most common rounds in the Mindlogicx Infratec interview process for experienced candidates are Technical and One-on-one Round.
How to prepare for Mindlogicx Infratec interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Mindlogicx Infratec. The most common topics and skills that interviewers at Mindlogicx Infratec expect are Django, Python, JQuery, CSS and Bootstrap.
What are the top questions asked in Mindlogicx Infratec interview for experienced candidates?

Some of the top questions asked at the Mindlogicx Infratec interview for experienced candidates -

  1. OOPS and technical quest...read more
  2. OOPS and C# related techni...read more
  3. same as i mentioned ab...read more

Tell us how to improve this page.

Mindlogicx Infratec Interview Process for Experienced

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Internshala Interview Questions
3.9
 • 56 Interviews
Acadecraft Interview Questions
3.5
 • 52 Interviews
Coding Ninjas Interview Questions
3.7
 • 49 Interviews
TALENTEDGE Interview Questions
3.3
 • 21 Interviews
Nerdy Turtlez Interview Questions
2.8
 • 17 Interviews
MASAI School Interview Questions
4.1
 • 16 Interviews
SpeedLabs Interview Questions
3.6
 • 14 Interviews
UpThink Interview Questions
3.9
 • 13 Interviews
View all

Mindlogicx Infratec Reviews and Ratings

based on 25 reviews

2.9/5

Rating in categories

2.9

Skill development

3.1

Work-life balance

2.7

Salary

3.3

Job security

2.9

Company culture

2.8

Promotions

2.9

Work satisfaction

Explore 25 Reviews and Ratings
Senior Software Engineer
11 salaries
unlock blur

₹4.5 L/yr - ₹11 L/yr

Software Engineer
6 salaries
unlock blur

₹5 L/yr - ₹7.5 L/yr

Team Lead
4 salaries
unlock blur

₹13.3 L/yr - ₹23 L/yr

Assistant General Manager Finance
4 salaries
unlock blur

₹19.4 L/yr - ₹19.4 L/yr

Project Associate
4 salaries
unlock blur

₹1.2 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Mindlogicx Infratec with

Acadecraft

3.5
Compare

Coding Ninjas

3.7
Compare

Internshala

3.9
Compare

Globus Infocom

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