Upload Button Icon Add office photos
Engaged Employer

i

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

Mantra Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Mantra Technologies Area Sales Manager Interview Questions and Answers

Updated 4 Jun 2024

Mantra Technologies Area Sales Manager Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
4-6 weeks
Result
No response

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Personal details
  • Q2. Work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - They don’t revert back soon !

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Mantra Technologies?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
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. Specific to the job requirements
  • Q2. More relevant to the post applied

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing good going

Area Sales Manager Interview Questions Asked at Other Companies

asked in DS Group
Q1. How to handling position and how to coverage rout and sales teams
Q2. present job team handling experience you have to maintain at leas ... read more
asked in HDFC Bank
Q3. A customer is having issues with a bank product, and the manager ... read more
Q4. Why do you think SBI Cards is a good place to work?
Q5. 4 C's of marketing and apply this and describe how SBI works?

I applied via Company Website and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - If applying for backend PHP have better understanding of
Design principles
OOPS concepts
Logical programming

I applied via LinkedIn and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. JS Prototype usage and functionality.
  • Ans. 

    JS Prototype is a mechanism for inheritance and sharing properties among objects.

    • Prototype is a property of every JavaScript function.

    • It allows objects to inherit properties and methods from other objects.

    • Modifying the prototype of a function affects all instances of that function.

    • Prototype chain is used to look up properties and methods of an object.

    • Prototype can be used to add new methods and properties to existing o...

  • Answered by AI
  • Q2. Node- without any loop need to check how can you find the total number
  • Ans. 

    To find the total number without any loop in Node.js

    • Use the reduce() method to sum up the values in an array

    • Use the length property of an array to get the total number of elements

    • Use the Object.keys() method to get the total number of keys in an object

  • Answered by AI
  • Q3. Node - what is difference between promise and async await and callback.
  • Ans. 

    Promises, async/await, and callbacks are all ways to handle asynchronous operations in Node.js.

    • Callbacks are functions passed as arguments to another function and called when the operation is complete.

    • Promises represent a value that may not be available yet, but will be resolved at some point in the future.

    • Async/await is a syntax for writing asynchronous code that looks like synchronous code.

    • Callbacks are the oldest an...

  • Answered by AI
  • Q4. Node - why do we use promise.
  • Ans. 

    Promises are used in Node to handle asynchronous operations and avoid callback hell.

    • Promises simplify error handling and make code more readable.

    • Promises allow for chaining multiple asynchronous operations.

    • Promises can be used with async/await to write synchronous-looking code.

    • Example: fetching data from an API using axios library with promises.

    • Example: reading a file with promises in Node's fs module.

  • Answered by AI
  • Q5. Node - use of Sequelize (ORM)
  • Ans. 

    Sequelize is an ORM for Node.js that supports multiple databases and provides easy data modeling and querying.

    • Sequelize is used to interact with databases in Node.js

    • It supports multiple databases like MySQL, PostgreSQL, SQLite, etc.

    • It provides easy data modeling and querying with its object-relational mapping

    • Example: const sequelize = new Sequelize('database', 'username', 'password', { dialect: 'mysql' });

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and if don't know about it please just say no, haven't worked on it.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SQL queries like search last element
  • Ans. 

    To retrieve the last element in a SQL query, use ORDER BY with DESC and LIMIT 1.

    • Use SELECT statement to specify the columns you want to retrieve.

    • ORDER BY column_name DESC to sort the results in descending order.

    • LIMIT 1 to get only the last element from the sorted results.

    • Example: SELECT * FROM table_name ORDER BY id DESC LIMIT 1;

  • Answered by AI

Interview Questionnaire 

1 Question

  • Q1. Given a string consisting of integers 0 to 9. The task is to count the number of substrings which when convert into integer are divisible by 6. Substring does not contain leading zeroes. Examples:Input ...
  • Ans. 

    Count the number of substrings in a given string that are divisible by 6.

    • Iterate through all possible substrings of the given string.

    • Check if the substring is a valid integer and not starting with 0.

    • If the substring is divisible by 6, increment the count.

    • Return the count of substrings that are divisible by 6.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

30 mins Aptitude Question

Round 2 - Coding Test 

30 mins - 3 Coding Question

Round 3 - Technical 

(2 Questions)

  • Q1. Describe Rest API
  • Q2. What is various Response code. Diffenrence b/w 200 & 201, 400 & 403
  • Ans. 

    Response codes indicate the status of a HTTP request. 200 & 201 are success codes, while 400 & 403 are client error codes.

    • 200 - OK: Request was successful

    • 201 - Created: Request was successful and a new resource was created

    • 400 - Bad Request: The server cannot process the request due to a client error

    • 403 - Forbidden: The server understood the request, but refuses to authorize it

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Languages attended
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Logic and MCQ were there

Round 2 - Technical 

(2 Questions)

  • Q1. How cobol db 2 works? how to add checkpoint logic.
  • Ans. 

    COBOL DB2 is a programming language used for database management. Checkpoint logic is used to ensure data integrity and recoverability.

    • COBOL DB2 is used for accessing and manipulating data in DB2 databases.

    • Checkpoint logic in COBOL DB2 involves saving the current state of the database at specific points to ensure data integrity.

    • To add checkpoint logic, you can use COMMIT and ROLLBACK statements in your COBOL DB2 progra...

  • Answered by AI
  • Q2. How jcl works, how to do restart
  • Ans. 

    JCL (Job Control Language) is used to control batch jobs on mainframe systems. Restarting a job involves identifying the step where it failed and resubmitting the job from that step.

    • JCL is used to define and control batch jobs on mainframe systems

    • To restart a job, identify the step where it failed

    • Modify the JCL to start from the failed step by specifying the restart parameter

    • Submit the modified JCL to restart the job

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare complete basics. It should be clear

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

It was easy, the topic is upi

Round 2 - Aptitude Test 

Aptitude + coding Test

Round 3 - Technical 

(2 Questions)

  • Q1. It's about my projects
  • Q2. And few Javascript questions
Round 4 - HR 

(1 Question)

  • Q1. General HR questions

Mantra Technologies Interview FAQs

How many rounds are there in Mantra Technologies Area Sales Manager interview?
Mantra Technologies interview process usually has 1 rounds. The most common rounds in the Mantra Technologies interview process are HR.

Tell us how to improve this page.

Overall Interview Experience Rating

1/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

4-6 weeks 100%
View more

Interview Questions from Similar Companies

Luxoft Interview Questions
3.6
 • 128 Interviews
Thryve Digital Interview Questions
3.8
 • 73 Interviews
QualiZeal Interview Questions
4.2
 • 59 Interviews
Dyninno India Interview Questions
3.9
 • 32 Interviews
Iksula Interview Questions
3.4
 • 30 Interviews
Gammastack Interview Questions
3.3
 • 29 Interviews
Apptio Interview Questions
3.9
 • 19 Interviews
View all

Mantra Technologies Area Sales Manager Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.0

Salary

4.0

Job security

3.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
92 salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Digital Marketing Analyst
43 salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

UI Developer
31 salaries
unlock blur

₹1.8 L/yr - ₹7.2 L/yr

Software Engineer
30 salaries
unlock blur

₹2.4 L/yr - ₹8 L/yr

Quality Analyst
26 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Explore more salaries
Compare Mantra Technologies with

Luxoft

3.6
Compare

Thryve Digital

3.8
Compare

Iksula

3.4
Compare

Hitech Digital Solutions

3.8
Compare
write
Share an Interview