Upload Button Icon Add office photos

Filter interviews by

IITMATRIX Interview Questions and Answers

Updated 14 Sep 2022

IITMATRIX Interview Experiences

1 interview found

I applied via Naukri.com

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 - One-on-one 

(1 Question)

  • Q1. QUESTIONS FROM CV ONLY

Interview Preparation Tips

Interview preparation tips for other job seekers - just focus on your communication skills and try to be apt in whatever you are speaking

Information Technology Recruiter Interview Questions asked at other Companies

Q1. Types of Visas and tax terms
View answer (2)

Jobs at IITMATRIX

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Achievement and how was it achieved
  • Ans. 

    I achieved the highest sales record in my team by implementing a new sales strategy.

    • Implemented a new sales strategy to increase sales

    • Analyzed market trends and customer needs to develop the strategy

    • Collaborated with team members to execute the strategy effectively

    • Regularly monitored sales performance and made adjustments as needed

    • Achieved highest sales record in the team within 6 months

  • Answered by AI
  • Q2. Explain your current/previous role in detail
  • Ans. 

    I was responsible for managing client relationships and coordinating project deliverables.

    • Managed client relationships and served as the main point of contact for all communication

    • Coordinated project deliverables and ensured timely completion

    • Collaborated with cross-functional teams to gather requirements and develop project plans

    • Monitored project progress and identified any potential risks or issues

    • Provided regular upd...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Details of the previous domain related experience
Round 4 - HR 

(1 Question)

  • Q1. Where do you see yourself after 5 years?
  • Ans. 

    In 5 years, I see myself as a Senior Associate, leading a team and contributing to the growth of the company.

    • Advancing to a Senior Associate position

    • Leading a team and taking on more responsibilities

    • Contributing to the growth and success of the company

    • Continuing to learn and develop new skills

    • Building strong relationships with clients and colleagues

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well-prepared for the interview. Candidness is go to bring along
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Initial screening from teamware and next level of round of techies discussion from client team.
Round 2 - Technical 

(1 Question)

  • Q1. SQL basic and moderate level questions

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

Round 1 - Group Discussion 

Farmer's is the best

Round 2 - Technical 

(3 Questions)

  • Q1. What are you doing farmer's
  • Q2. What time do you think we should do it
  • Q3. What are the dates are fine
  • Ans. 

    The question is unclear and needs clarification.

    • Can you please provide more context or rephrase the question?

    • Are you asking about specific dates for a project or task?

    • Do you need me to input dates into a system or database?

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - So much for your help with this matter and please don't
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 

(2 Questions)

  • Q1. Autocad 2D and 3D and quelty control
  • Q2. Auto cad 2D&3D and Quietly Engineer

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice jobyseekers and thanks for letting me know so much

I applied via Naukri.com and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Give your brief introduction
  • Ans. Mainly whatever I'm telling about my self I'm very confident for that so you have to be firstly confident then tell them about your self your qualifications your skill and everything
  • Answered Anonymously
  • Q2. Did you work anywhere before that
  • Ans. If you work anywhere and you have experience either it is only of 6 months but explain everything about your last firm and your position and how you worked how many tasks you have done that's all matter how you explained
  • Answered Anonymously
  • Q3. What is your skills?
  • Ans. So tell them your best skills and make them realize that you're fit for the position they are giving to you don't give a chance to them to ask anything again say alot about your skills
  • Answered Anonymously
  • Q4. Do you have any location preference? Or you may relocate
  • Ans. Never say yes!! for location preference
  • Answered Anonymously
  • Q5. In your last firm what was your CTC ?
  • Ans. Tell them how much CTC you were getting in your last firm!!
  • Answered Anonymously
  • Q6. What you will do if the company will pressures you sometimes for multiple task?
  • Ans. 

    I will prioritize tasks and communicate with my manager to ensure realistic expectations.

    • Assess the urgency and importance of each task

    • Create a to-do list and prioritize tasks accordingly

    • Communicate with my manager to ensure realistic expectations

    • Delegate tasks if possible

    • Avoid multitasking and focus on one task at a time

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and don't show your weaknesses and speak alot in front of them don't let them ask you too much questions make them realize that you're so confident and you're best for the position

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Hard

The round was online. It had 3 coding questions to be solved.  Was asked about why are the javascript and jquery used? What is the difference between angular 8 and angular?

  • Q1. Permutation In String

    You are given two strings named str1 and str2 of length N and M respectively. Find whether string str2 contains one of the permutations of string str1 as its substring. In other words...

  • Ans. Permutation In String
    • Check for Base Case i.e if Length of str1 > Length of str2, return false.As substring length is always greater than or equal to permutation never small.
    • Generate all the permutations of the short string and then check for each permutation if this string is present as a substring of the second string or not.
    • Initialize a global boolean value named flag.
    • To generate all the permutations of the small ...
  • Answered by CodingNinjas
  • Q2. Minimum time

    There are ‘N’ junctions connected by ‘M’ bi-directional roads. At most, one road is present between any pair of junctions. There is no road connecting a junction to itself. The travel time for...

  • Ans. Depth First Search

    This approach will use DFS(Depth First Search) to make a recursive function in which we pass the currCost, which is the current cost. If the light is not green when we reach that junction, we have to add the waiting time in currCost. After that, we will call the recursive function on all the adjacent unvisited junctions by incrementing the currCost with the weight of the edge. We will maintain a vari...

  • Answered by CodingNinjas
  • Q3. Rat In A Maze

    You are given a starting position for a rat which is stuck in a maze at an initial point (0, 0) (the maze can be thought of as a 2-dimensional plane). The maze would be given in the form of a...

  • Ans. Bactracking

    Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.

     

    Algorithm is as follows:

     

    1. Take the starting position of th...
  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaNo criteriaPeopleStrong interview preparation:Topics to prepare for the interview - Arrays, string, oops, dbms, dyanamic programming, trees, graphsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : practice coding questions
Tip 2 : Search and study previous interview questions

Application resume tips for other job seekers

Tip 1 : Mention the things according to role
Tip 2 : just write a clear one page resume

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What are the roles and responsibilities of HR
  • Q2. An hr department is asked with maximizing employee productivity and protecting the company from any issues that may rise within the workforce. Hr responsiilities include compensation and benifits, recruitm...

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview lasted for 20 minutes. Don't be panic try to answer the questions confidently.

I applied via Naukri.com and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Creative Hands HR Consultancy Civil Engineer interview:
  • Civil Engineering
Interview preparation tips for other job seekers - Market yourself. ...
Apply even if you're not fully qualified. ...
Job search like it's your job. ...
Use informational interviews to network. ...
Set yourself apart with letters of recommendation. ...
Know yourself and what you want. ...
Pump yourself up and stay positive.
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. What is your current role
Round 3 - HR 

(1 Question)

  • Q1. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Very challenging and intelligent question asked

IITMATRIX Interview FAQs

How many rounds are there in IITMATRIX interview?
IITMATRIX interview process usually has 2 rounds. The most common rounds in the IITMATRIX interview process are Resume Shortlist and One-on-one Round.
How to prepare for IITMATRIX interview?
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 IITMATRIX. The most common topics and skills that interviewers at IITMATRIX expect are CSS, Javascript, B2B Sales, Direct Sales and Html5.

Tell us how to improve this page.

People are getting interviews through

based on 1 IITMATRIX 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
 • 10k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
LTIMindtree Interview Questions
3.9
 • 2.7k Interviews
Mphasis Interview Questions
3.4
 • 773 Interviews
Randstad Interview Questions
3.8
 • 254 Interviews
View all

IITMATRIX Reviews and Ratings

based on 11 reviews

2.4/5

Rating in categories

1.7

Skill development

1.8

Work-Life balance

2.7

Salary & Benefits

1.5

Job Security

1.4

Company culture

1.8

Promotions/Appraisal

1.4

Work Satisfaction

Explore 11 Reviews and Ratings
Manager - Sales - Packaging (8-10 yrs)

Mumbai

8-10 Yrs

Not Disclosed

Explore more jobs
Information Technology Recruiter
24 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

IT Head
3 salaries
unlock blur

₹3 L/yr - ₹3.5 L/yr

Lead Operator
3 salaries
unlock blur

₹3 L/yr - ₹3.5 L/yr

Explore more salaries
Compare IITMATRIX with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
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