Upload Button Icon Add office photos
Engaged Employer

i

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

Niktor Inc Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Niktor Inc Interview Questions and Answers

Updated 25 Feb 2024

Niktor Inc Interview Experiences

Popular Designations

2 interviews found

Senior Technical Recruiter Interview Questions & Answers

user image Lokesh Kumar Gudisena

posted on 27 Sep 2023

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Aug 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 - One-on-one 

(1 Question)

  • Q1. About Visa status, work experience, process, client and salary package
Round 3 - One-on-one 

(1 Question)

  • Q1. About requirements, which technologies, reason for looking change, recruitment process.

Interview Preparation Tips

Topics to prepare for Niktor Inc Senior Technical Recruiter interview:
  • Technical Skills
  • Visa status
  • recruitment process
  • Sourcing Profiles
  • Job portals
  • Client name
  • Tax term
Interview preparation tips for other job seekers - To be frank, I am rejected for this role but felt good with the experience with the interviewer, even though interviewer did not trusted my answers for reason looking for change and he thought I am not into stability for more then 1 and half year or like that. But I worked in two companies for more then 2 years. I said him half truth regarding why I changed for challenging roles.. but full truth was whenever I changed the organisation it was because of my personal reasons. If I had said that reason the next questions are like what and why and they think he won't stay.. to avoid that I said half truth. Its ok thanks for considering my profile. A bit good experience with interview. Even though I have geniune experience.. I was like how silly I couldn't answered some silly questions well its my mistake. But one thing I can say that we are into business where we use little lies right 😜🤪😂. Thanks for considering my profile next time I will adapt and improvise.

Senior Technical Recruiter Interview Questions asked at other Companies

Q1. What is a difference between Java developer and full stack developer.
View answer (1)

Senior IT Recruiter Interview Questions & Answers

user image Akshay sharma

posted on 25 Feb 2024

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Resume Screening and Describe your self.
Round 2 - HR 

(1 Question)

  • Q1. Tell me something about yourself? why you left last organisation.
Round 3 - Behavioral 

(1 Question)

  • Q1. Salary description and Communication

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Company

Senior IT Recruiter Interview Questions asked at other Companies

Q1. My understanding about Prevalent AI and What they do?
View answer (1)

Interview questions from similar companies

I appeared for an interview before Sep 2016.

Interview Questionnaire 

1 Question

  • Q1. It was an online technical test. Questions were related to ME outlook, mobile device management , Networking and many more

Interview Preparation Tips

Round: Grammar Round
Experience: It was a written English grammar test to analyse how grammatically sound you are.
Tips: Just revise your basic English grammar like prepositions verbs nd essay/paragraph writing

Round: COMMUNICATION SKILLS Round
Experience: In this round they ask you to speak something on the given topic or sometimes group discussion . Basically they test your vocabulary, your thought process, pronunciation, accent and above all confidence.
Tips: Be confident in whatever you speak. Remember if you get nervous you will need with your words .

Round: Technical Interview
Experience: This was an online test and it had 50 questions all objective types.
Tips: Be technically sound. You cannot Google them as these search engines are blocked

College Name: Babu Banarasi Das National Institute Of Technology And Management (BBDNITM)

I applied via Recruitment Consultant and was interviewed before Sep 2018. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1.  overloading ,inheritance concepts,structures,pointers

Interview Preparation Tips

Interview preparation tips for other job seekers - have good understanding of basics and have expertise on any specific area.

Interview Questionnaire 

2 Questions

  • Q1. Basic Programming Questions, Data structures, SQL queries
  • Q2. This was the most simple one, they simply asked introduce yourself and fine with night shifts.

Interview Preparation Tips

General Tips: I joined HCL as a fresher and got Intervie

Interview Questionnaire 

1 Question

  • Q1. What I know and what I don't know

Interview Preparation Tips

Round: Test
Experience: Aptitude, reasoning, logical, etc. 2 hours

Interview Questionnaire 

2 Questions

  • Q1. C and C++ - technically related stuffs
  • Q2. Communicate and fluency

Analyst Interview Questions & Answers

HCLTech user image Raj Hrithik

posted on 2 Sep 2017

I appeared for an interview in Jul 2017.

Interview Questionnaire 

1 Question

  • Q1. Experience summary and the roles

Interview Preparation Tips

Round: Test
Experience: I was allowed to write a test for 2hrs in that each headings seems to be different and also there is a section heading marks
Duration: 2 hours
Total Questions: 70

Round: Technical Interview
Experience: After finishing i was advised to attend 2nd round in that they ask about the detailed experience of my previous company and finally technical terms question also flows

Skills: Logical And Structured Thinking, Communication And Confidence, Attitude, Psychometric Test, Project Management

Interview Questionnaire 

6 Questions

  • Q1. Given a Linked list , print yes if it is palindrome else print no
  • Q2. Print the level order traversal of the binary tree in the spiral form
  • Ans. 

    Print the level order traversal of binary tree in spiral form

    • Perform level order traversal of the binary tree

    • Alternate the direction of traversal for each level

    • Use a stack to reverse the order of nodes in each level

    • Print the nodes in the order of traversal

  • Answered by AI
  • Q3. Maximum of all subarrays of size k(Expected Time Complexity O(N). Input : arr[] = {1, 2, 3, 1, 4, 5, 2, 3, 6} k = 3 Output : 3 3 4 5 5 5 6
  • Ans. 

    Find the maximum element in each subarray of size k in a given array.

    • Iterate through the array from index 0 to n-k.

    • For each subarray of size k, find the maximum element.

    • Store the maximum elements in a separate array.

    • Return the array of maximum elements.

  • Answered by AI
  • Q4. Given Two sorted array of size size n each. Find the Kth largest element in these two array (Expected Time Complexity Log(n))
  • Ans. 

    To find the Kth largest element in two sorted arrays, we can use the merge step of merge sort algorithm.

    • Merge the two arrays into a single sorted array using a modified merge sort algorithm.

    • Return the Kth element from the merged array.

  • Answered by AI
  • Q5. Website having several web-pages. And also there are lot many user who are accessing the web-site. say user 1 has access pattern : x->y->z->a->b->c->d->e->f user 2 has access pattern : z->a->b->c->d user 3...
  • Q6. Given two array , one of size m+n and contains m element and other position are empty , 2nd array is of size n and contains n element. both array are sorted , now merge the second array to first one such t...
  • Ans. 

    Merge two sorted arrays into one sorted array with expected time complexity of (m+n).

    • Use a two-pointer approach to compare elements from both arrays and merge them into the first array.

    • Start comparing elements from the end of both arrays and place the larger element at the end of the first array.

    • Continue this process until all elements from the second array are merged into the first array.

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 90 minutes

Skills: Algorithm , OS, DBMS, data structure
College Name: NIT BHOPAL

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: Coding questions were comparatively easy. There were three questions.1. Given a string map each character of which to the corresponding digit in a 10 digit mobile phone keypad.2. Don't remember, will add when it comes to my mind.3. Don't remember, will add when it comes to my mind.

Skills: Coding ability, Complete knowledge of working of internet.,
College Name: IIT Bombay

Niktor Inc Interview FAQs

How many rounds are there in Niktor Inc interview?
Niktor Inc interview process usually has 3 rounds. The most common rounds in the Niktor Inc interview process are One-on-one Round, Resume Shortlist and HR.
How to prepare for Niktor Inc 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 Niktor Inc. The most common topics and skills that interviewers at Niktor Inc expect are US Staffing, US IT Staffing, W2, Bench Sales and US IT Recruitment.

Tell us how to improve this page.

Niktor Inc Interview Process

based on 4 interviews

Interview experience

4.5
  
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
Amazon Interview Questions
4.1
 • 5k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Reliance Retail Interview Questions
3.9
 • 1.6k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Bharti Airtel Interview Questions
4.0
 • 850 Interviews
Paytm Interview Questions
3.3
 • 753 Interviews
View all

Niktor Inc Reviews and Ratings

based on 31 reviews

4.4/5

Rating in categories

4.4

Skill development

4.4

Work-life balance

4.3

Salary

4.2

Job security

4.3

Company culture

4.3

Promotions

4.4

Work satisfaction

Explore 31 Reviews and Ratings
US IT Recruiter
6 salaries
unlock blur

₹2.4 L/yr - ₹3.2 L/yr

Information Technology Recruiter
6 salaries
unlock blur

₹2 L/yr - ₹3.9 L/yr

Technical Recruiter
5 salaries
unlock blur

₹2.9 L/yr - ₹4 L/yr

US Technical Recruiter
4 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

NON IT Recruiter
4 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Explore more salaries
Compare Niktor Inc with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Paytm

3.3
Compare

Reliance Retail

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