Upload Button Icon Add office photos
Engaged Employer

i

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

NIIT Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

NIIT Vendor Coordinator Interview Questions and Answers

Updated 20 Mar 2024

NIIT Vendor Coordinator Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(1 Question)

  • Q1. What are basic checks for an Invoice? How do u coordinate with vendors when payment is pending?
  • Ans. 

    Basic checks for an invoice include verifying accuracy, ensuring proper authorization, and confirming payment terms.

    • Verify accuracy of invoice details such as amount, date, and vendor information

    • Ensure proper authorization for the invoice by checking for signatures or approval from relevant parties

    • Confirm payment terms such as due date, payment method, and any discounts or penalties

    • Coordinate with vendors by sending re...

  • Answered by AI
Round 2 - Coding Test 

Exam relating to managerial skills and identifying the errors in first instance.

Round 3 - Technical 

(1 Question)

  • Q1. Regarding our experience on work.

Interview questions from similar companies

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 spell check and pronunciation test

Round 3 - One-on-one 

(2 Questions)

  • Q1. Interview with HR and process head
  • Q2. Basic question like tell me about your self and why British council etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be original and confident. Just go with the flow.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in May 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 - Aptitude Test 

(2 Questions)

  • Q1. First round will be of written examination in the concerned subject. The first 20 questions are for +4 marks for each correct answer and -1 for wrong answer. The next 10 questions will carry+6 marks for co...
  • Q2. Written examination followed as described above
Round 3 - One-on-one 

(1 Question)

  • Q1. The 2nd round will be of one to one demonstration of a topic. The process allows you to talk for 30 minutes uninterrupted and later followed by Viva voce on the same topic or a different topic
Round 4 - HR 

(1 Question)

  • Q1. HR round usually asks about your previous experience and your interest to work for their organisation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be prepared in your subject. Only your communication skills and subject matter. Have faith in yourself and you will surely qualify.

I applied via Walk-in and was interviewed before Sep 2021. There were 2 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 - One-on-one 

(3 Questions)

  • Q1. About yourself, Your current profile
  • Q2. About yourself Your current profile
  • Q3. Your current profile

Interview Preparation Tips

Interview preparation tips for other job seekers - No tips, interviewer not ask specific question simply ask about yourself your current organisation your work profile

I applied via LinkedIn and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Question asked related to finance like Reconciliation purpose, open items resolution, journal entries at the month end.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepare for basic questions like Reconciliation, Closing entries, Accrual and Prepaid and clarity about your work.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2023. 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 

(3 Questions)

  • Q1. What is method overloading?
  • Ans. 

    Method overloading is when multiple methods in a class have the same name but different parameters.

    • Allows multiple methods with the same name but different parameters to be defined in a class

    • Parameters can differ in number, type, or order

    • Example: void print(int num) and void print(String text) are overloaded methods

  • Answered by AI
  • Q2. What is method overiding ?
  • Ans. 

    Method overriding is a feature in object-oriented programming that allows a subclass to provide a specific implementation of a method that is already provided by its superclass.

    • Method overriding is done when a subclass provides a specific implementation for a method that is already defined in its superclass.

    • The method in the subclass must have the same name, return type, and parameters as the method in the superclass.

    • M...

  • Answered by AI
  • Q3. What is sigleton class ?
  • Ans. 

    A singleton class is a class that can only have one instance created and provides a global point of access to that instance.

    • Singleton classes are often used for logging, caching, database connections, and thread pools.

    • They typically have a private constructor to prevent instantiation from outside the class.

    • The class itself usually provides a static method to access the single instance.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What are Oops Pillars?
  • Ans. 

    Oops Pillars are the four main concepts of Object-Oriented Programming: Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundles data and methods into a single unit, protecting data from outside interference.

    • Polymorphism: Allows objects to be treated as instances of their parent class, enabling flexibility in code.

    • ...

  • Answered by AI
  • Q2. What is Dependency injection?
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by mocking dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview in Mar 2024.

Round 1 - Assignment 

Mcq test on c#, sql, Mvc

Round 2 - Technical 

(5 Questions)

  • Q1. Introduce your self?
  • Q2. What is pipeline? Explained in brif?
  • Ans. 

    A pipeline is a series of interconnected steps or stages in a process, where output of one step is input to the next step.

    • Pipeline is commonly used in software development for continuous integration and continuous delivery processes.

    • Each step in the pipeline performs a specific task, such as building, testing, and deploying code.

    • Pipeline automation tools like Jenkins, GitLab CI/CD, and Azure DevOps help in managing and

  • Answered by AI
  • Q3. Explained the dot net framework
  • Ans. 

    The .NET Framework is a software framework developed by Microsoft that provides a large library of pre-coded solutions to common programming problems.

    • Developed by Microsoft

    • Provides a large library of pre-coded solutions

    • Supports multiple programming languages like C#, VB.NET, F#

    • Consists of Common Language Runtime (CLR) and Framework Class Library (FCL)

  • Answered by AI
  • Q4. What Are The Different Components Of DOT-NET?
  • Ans. 

    The different components of DOT-NET include Common Language Runtime (CLR), Framework Class Library (FCL), and ASP.NET.

    • Common Language Runtime (CLR) - provides various services such as memory management, exception handling, and security.

    • Framework Class Library (FCL) - a collection of reusable classes, interfaces, and value types that provide access to system functionality.

    • ASP.NET - a web application framework for buildi...

  • Answered by AI
  • Q5. What Is The Difference Between Abstract Classes And Interfaces In C#?
  • Ans. 

    Abstract classes can have implementation details while interfaces cannot.

    • Abstract classes can have method implementations while interfaces cannot.

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

    • Abstract classes can have access modifiers on their members while interfaces cannot.

    • Interfaces are used to define a contract for classes to implement.

    • Abstract classes are used to provide a commo

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - After 1 hour interview they rejected you. Slow process.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Your role in your company

Interview Preparation Tips

Interview preparation tips for other job seekers - I worked AS a data entry operator

I applied via Recruitment Consultant and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Related to network and difference between Inc and request

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication skills needs to be good because they only concern is good English
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. About myself and my working skills and my previous experience
  • Q2. What is expected salary
  • Q3. Are willing to reloacte
  • Ans. 

    Yes, I am willing to relocate for the right opportunity.

    • I am open to relocating for a position that aligns with my career goals

    • I have relocated for previous job opportunities and am comfortable with the process

    • I understand the importance of being flexible and adaptable in the tech industry

  • Answered by AI
Round 2 - Coding Test 

C#,Dotnet MVC,Webform ,sql server, write code ,they give task ask about and explanation.

Round 3 - HR 

(2 Questions)

  • Q1. Policy term and conditions and expectation
  • Q2. Why i am leaving privious organization

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience about my interview and job at chandigarh university

NIIT Interview FAQs

How many rounds are there in NIIT Vendor Coordinator interview?
NIIT interview process usually has 3 rounds. The most common rounds in the NIIT interview process are Technical and Coding Test.

Tell us how to improve this page.

NIIT Vendor Coordinator Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 796 Interviews
View all

NIIT Vendor Coordinator Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

2.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Senior Training Coordinator
250 salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Training Coordinator
221 salaries
unlock blur

₹1.8 L/yr - ₹4.5 L/yr

Assistant Manager
169 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Software Engineer
153 salaries
unlock blur

₹1.8 L/yr - ₹8.2 L/yr

Senior Software Engineer
131 salaries
unlock blur

₹2.7 L/yr - ₹12.6 L/yr

Explore more salaries
Compare NIIT with

Aakash Educational Services

3.4
Compare

Chandigarh University

4.2
Compare

AIIMS

4.2
Compare

Podar International School

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