Upload Button Icon Add office photos

Filter interviews by

Time Legend It And Hr Consulting Solutions Interview Questions, Process, and Tips

Updated 25 May 2024

Top Time Legend It And Hr Consulting Solutions Interview Questions and Answers

Time Legend It And Hr Consulting Solutions Interview Experiences

Popular Designations

4 interviews found

Web Developer Interview Questions & Answers

user image Anonymous

posted on 25 May 2024

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

(5 Questions)

  • Q1. React related basic and intermediate questions
  • Q2. What are hooks?
  • Ans. 

    Hooks are functions that allow developers to use state and other React features in functional components.

    • Hooks were introduced in React 16.8

    • They allow functional components to have state and lifecycle methods

    • Examples of hooks include useState, useEffect, useContext

  • Answered by AI
  • Q3. What is useState?
  • Ans. 

    useState is a hook in React that allows functional components to have state.

    • useState is a hook provided by React for managing state in functional components.

    • It returns an array with two elements - the current state value and a function to update that value.

    • Example: const [count, setCount] = useState(0);

  • Answered by AI
  • Q4. Axios and fetch difference
  • Ans. 

    Axios is a popular library for making HTTP requests in JavaScript, while fetch is a built-in browser API.

    • Axios is a third-party library that works on both client and server side, while fetch is a browser API that only works on the client side.

    • Axios has built-in support for handling request and response interceptors, while fetch requires more manual handling.

    • Axios has better error handling and response validation compar...

  • Answered by AI
  • Q5. Lifecycle of react
  • Ans. 

    React has three main lifecycle phases: Mounting, Updating, and Unmounting.

    • Mounting: Component is created and inserted into the DOM.

    • Updating: Component is re-rendered when props or state change.

    • Unmounting: Component is removed from the DOM.

  • Answered by AI

Skills evaluated in this interview

Web Developer Interview Questions asked at other Companies

Q1. Check Indices With Given Difference Problem Statement You are provided with an integer array ARR of size N along with two integers A and B. Your task is to determine if there exist two distinct indices in the array such that the absolute di... read more
View answer (1)

Product Manager Holidays Interview Questions & Answers

user image Anonymous

posted on 14 Jan 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic info about self and experience
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic info about self and experience
Round 3 - HR 

(1 Question)

  • Q1. Team handling experience, career aspirations

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with knowledge of your area of work and thats it.

I applied via Newspaper Ad and was interviewed in Aug 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 subjet knolowege short ans questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. How to handle students in class.about homework,disiplion,assignments & yearly exam pattern.
  • Q2. How to control students in the class,successive methods for fail student subject notes,improvement of bad students marks.
  • Ans. 

    Effective methods for controlling students and improving academic performance.

    • Establish clear rules and expectations from the beginning of the course.

    • Use positive reinforcement and praise good behavior.

    • Provide individual attention and support to struggling students.

    • Offer extra credit opportunities and additional resources for improvement.

    • Communicate regularly with students and provide constructive feedback.

    • Utilize tech...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Remember self confidence is must in front of students,subjet materil,power presentation,speak loudly clean blackboard writing,labeled diagrams.

Maths Lecturer Interview Questions asked at other Companies

Q1. How to control students in the class,successive methods for fail student subject notes,improvement of bad students marks.
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Institute of Technical Education and Research, Bhuvaneshwar and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was good so faar I liked the environment

Round 2 - Technical 

(2 Questions)

  • Q1. What are your ambition
  • Q2. Why do we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm

IT Consultant Interview Questions asked at other Companies

Q1. Tell me if your system is infected by a virus how you will recover the data.
View answer (1)

Time Legend It And Hr Consulting Solutions interview questions for popular designations

 IT Consultant

 (1)

 Maths Lecturer

 (1)

 Web Developer

 (1)

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to django and python.
Round 2 - Coding Test 

One python coding(easy) and django ORM queries

Round 3 - Behavioral 

(1 Question)

  • Q1. Some technical and about company.
Round 4 - Behavioral 

(1 Question)

  • Q1. About company and some technical.

Interview Preparation Tips

Topics to prepare for Advanced Structures India Python Software Developer interview:
  • Python
  • Django
  • about company
  • django ORM
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain promises and callback functions with example
  • Ans. 

    Promises and callback functions are used in Node.js for handling asynchronous operations.

    • Callback functions are functions passed as arguments to another function to be executed later.

    • Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • Example of callback function: fs.readFile('file.txt', (err, data) => { if (err) throw err; console.log(data); });

    • Example of promise: const re...

  • Answered by AI
  • Q2. What is middleware
  • Ans. 

    Middleware is a function that has access to the request and response objects in Node.js, and can modify or terminate the request-response cycle.

    • Middleware functions can perform tasks like logging, authentication, error handling, etc.

    • They are executed sequentially in the order they are defined in the code.

    • Example: Express.js uses middleware to handle requests before they reach the route handler.

  • Answered by AI
Round 2 - Coding Test 

Find the second largest elements in an array

Round 3 - Assignment 

Student crud operations

Round 4 - Technical 

(1 Question)

  • Q1. What is event loop
  • Ans. 

    Event loop is a mechanism in Node.js that allows asynchronous operations to be executed non-blocking.

    • Event loop is responsible for handling asynchronous operations in Node.js.

    • It allows Node.js to perform non-blocking I/O operations.

    • Event loop continuously checks the event queue for new events to execute.

    • Event loop helps in efficient handling of multiple concurrent operations in Node.js.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - this is a fraud company. taking ghost interview only.

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. WAY OF QUESTION TREND
  • Ans. 

    Question trends in customer service are constantly evolving based on customer needs and technological advancements.

    • Stay updated on industry trends through research and training

    • Adapt communication style to match current trends (e.g. chatbots, social media)

    • Utilize data analytics to understand customer preferences and behavior

    • Provide personalized and efficient service to meet evolving customer expectations

  • Answered by AI
  • Q2. REPLY MY WAY OF PERFECT ENGLISH
  • Q3. ALL BESED ON COMPUTER WORKS IN NON VOICE PROCESS
  • Q4. I FLEXIBLE IN DAY SHIFT
  • Q5. MY EXPECT 25K SALARY

Interview Preparation Tips

Interview preparation tips for other job seekers - I PREFERED GOOD SALARY NEED

Motar Insurance Advisor Interview Questions & Answers

BTW Financial Services & IMF Private Limited user image Jiganesha

posted on 10 Jan 2025

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

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Assignment 

Draft an email about how will you convence a client.

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about your self?
  • Ans. 

    I am a dedicated insurance advisor with 5 years of experience in the industry, specializing in motor insurance policies.

    • 5 years of experience in the insurance industry

    • Specialize in motor insurance policies

    • Dedicated and customer-oriented approach

    • Strong knowledge of insurance regulations and policies

  • Answered by AI
  • Q2. What are skills , strength and weakness?
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic level questions array string topics

Round 2 - Coding Test 

Easy level questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Sorting array questions
  • Q2. Searching array questions
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 Apr 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about Yourself.
  • Q2. Walk us through your role in the past organisation.
Round 2 - One-on-one 

(3 Questions)

  • Q1. Past working Experiences
  • Q2. Educational Qualifications
  • Q3. Awareness about the Indian Economy

Time Legend It And Hr Consulting Solutions Interview FAQs

How many rounds are there in Time Legend It And Hr Consulting Solutions interview?
Time Legend It And Hr Consulting Solutions interview process usually has 2-3 rounds. The most common rounds in the Time Legend It And Hr Consulting Solutions interview process are One-on-one Round, Technical and Aptitude Test.
How to prepare for Time Legend It And Hr Consulting Solutions 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 Time Legend It And Hr Consulting Solutions. The most common topics and skills that interviewers at Time Legend It And Hr Consulting Solutions expect are AWS, Accounting, Book Keeping, Business Development and Data Modeling.
What are the top questions asked in Time Legend It And Hr Consulting Solutions interview?

Some of the top questions asked at the Time Legend It And Hr Consulting Solutions interview -

  1. How to control students in the class,successive methods for fail student subjec...read more
  2. what are hoo...read more
  3. what is useSta...read more

Tell us how to improve this page.

Time Legend It And Hr Consulting Solutions Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Quess Interview Questions
3.9
 • 405 Interviews
Randstad Interview Questions
3.8
 • 258 Interviews
Team Lease Interview Questions
3.9
 • 200 Interviews
ABC Consultants Interview Questions
3.9
 • 185 Interviews
Adecco Group Interview Questions
3.7
 • 87 Interviews
ManpowerGroup Interview Questions
3.9
 • 51 Interviews
Iksula Interview Questions
3.5
 • 27 Interviews
Kelly Services Interview Questions
4.2
 • 15 Interviews
Gi Group Interview Questions
3.9
 • 15 Interviews
View all

Time Legend It And Hr Consulting Solutions Reviews and Ratings

based on 63 reviews

3.5/5

Rating in categories

3.1

Skill development

3.6

Work-life balance

3.3

Salary

3.4

Job security

3.3

Company culture

3.0

Promotions

3.1

Work satisfaction

Explore 63 Reviews and Ratings
Executive Accountant
59 salaries
unlock blur

₹1.8 L/yr - ₹4.2 L/yr

Assistant Manager
11 salaries
unlock blur

₹4.5 L/yr - ₹9 L/yr

Digital Marketing Executive
11 salaries
unlock blur

₹2.8 L/yr - ₹5 L/yr

Senior Accounts Executive
11 salaries
unlock blur

₹3.2 L/yr - ₹4.7 L/yr

Accountant
8 salaries
unlock blur

₹2.9 L/yr - ₹5.5 L/yr

Explore more salaries
Compare Time Legend It And Hr Consulting Solutions with

ABC Consultants

3.9
Compare

Randstad

3.8
Compare

Team Lease

3.9
Compare

Mafoi Management Consultants

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