Upload Button Icon Add office photos
Engaged Employer

i

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

Teleone Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Teleone HR Executive Interview Questions and Answers

Updated 25 Apr 2022

Teleone HR Executive Interview Experiences

1 interview found

HR Executive Interview Questions & Answers

user image Anonymous

posted on 25 Apr 2022

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

Round 1 - HR 

(2 Questions)

  • Q1. What is short key of filter?
  • Ans. 

    The short key of filter is Ctrl + F.

    • Ctrl + F is the shortcut key for filter.

    • It is used to search for specific text or data within a document or webpage.

    • It is commonly used in programs like Microsoft Excel, Word, and web browsers.

    • It saves time by quickly highlighting all instances of the searched text.

    • It can also be used to filter data in a table or spreadsheet.

  • Answered by AI
  • Q2. How to freeze cell and basic knowledge of Excel?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company. Seriously one day you'll regret it.

Interview questions from similar companies

I applied via Company Website and was interviewed before Nov 2021. There were 2 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 Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. KRA in previous company
  • Ans. 

    In my previous company, my Key Result Area (KRA) was to develop and implement HR policies and procedures.

    • Developed and implemented HR policies and procedures to ensure compliance with labor laws and regulations.

    • Conducted regular audits to assess the effectiveness of HR policies and made necessary improvements.

    • Streamlined the recruitment process by implementing an applicant tracking system, resulting in reduced time-to-...

  • Answered by AI
  • Q2. Recruitment strategy used in previous organizations

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be honest during the entire interview process

I applied via LinkedIn and was interviewed in Jun 2022. There were 2 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 Resume tips
Round 2 - Aptitude Test 

ABOUT 1 HOUR AND UNLIMITED QUESTIONS WE HAVE TO COMPLETE HOW MANY WE CAN

Interview Preparation Tips

Interview preparation tips for other job seekers - TRY SOLVE MANY APTITTUDE QUESTIONS FROM THE RESOURCES YOU HAVE . HOPE THIS HELP YOU .
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Simply question test

Round 2 - HR 

(1 Question)

  • Q1. Describe your self
  • Ans. 

    I am a dedicated HR professional with a passion for fostering a positive work environment and supporting employee growth.

    • Experienced in recruitment, onboarding, and employee relations

    • Skilled in conflict resolution and performance management

    • Strong communication and interpersonal skills

    • Passionate about promoting diversity and inclusion in the workplace

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. How to source the candidate?
Round 1 - One-on-one 

(1 Question)

  • Q1. Take us through your career

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thoroughly versed with your resume and have good bullet points ready for a summary of your experience.

Interview Preparation Tips

Round: Test
Experience: First round was a simple round which involved 10 multiple choice questions and 3 coding questions on hackerrank platform.

Round: Technical Interview
Experience: Mainly on topics like networks, data structures and algorithms, operating systems. The interviewers looked for people who have had prior experience in web development and asked questions regarding web development in depth too.
Tips: I recommend everyone to read the book titled, 'Cracking the Coding Interview' as it was helpful in my approach to an interview.

General Tips: The one major thing that would give you the edge in joining Myntra would definitely be exposure to web development. Since it is not a part of the curriculum , it's all the more important for you to familiarize yourself with web development. In fact, a few projects in the same field would put you in a very advantageous position to get the job.
Skill Tips: 1. Start your placement preparations well ahead, no point regretting later.
2. Keep a concise resume. Do not take your resume to several pages.
3. Do not neglect aptitude preparation. Many people do this mistake and end up not clearing the first round for several companies.
4. Be thorough with your basics across all subjects. (Do not neglect any subject, even they you may like a few and dislike the others.)
5. Keep in mind, the interviewers are really friendly and try to make sure that you're not nervous during the interview. All they want to do is to test you. Be confident and give it your best shot.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

10 Questions

  • Q1. What do you do when your schedule is interrupted? How you handle it?
  • Q2. PreOrder traversal without recursion?
  • Ans. 

    PreOrder traversal without recursion is done using a stack to simulate the function call stack.

    • Create an empty stack and push the root node onto it.

    • While the stack is not empty, pop a node from the stack and process it.

    • Push the right child of the popped node onto the stack if it exists.

    • Push the left child of the popped node onto the stack if it exists.

  • Answered by AI
  • Q3. Build a bst out of the unsorted array by looping over the array and inserting each element to the tree?
  • Ans. 

    Yes

    • Create an empty binary search tree (BST)

    • Loop over the unsorted array

    • For each element, insert it into the BST using the appropriate insertion logic

    • Repeat until all elements are inserted

    • The resulting BST will be built from the unsorted array

  • Answered by AI
  • Q4. Find 2 elements in array whose sum is equal to given number?
  • Ans. 

    The question asks to find two elements in an array whose sum is equal to a given number.

    • Iterate through the array and for each element, check if the difference between the given number and the current element exists in the array.

    • Use a hash set to store the elements as you iterate through the array for efficient lookup.

    • Return the pair of elements if found, otherwise return a message indicating no such pair exists.

  • Answered by AI
  • Q5. How many types of trigger?
  • Ans. 

    There are two types of triggers: DML triggers and DDL triggers.

    • DML triggers are fired in response to DML (Data Manipulation Language) statements like INSERT, UPDATE, DELETE.

    • DDL triggers are fired in response to DDL (Data Definition Language) statements like CREATE, ALTER, DROP.

    • Examples: A DML trigger can be used to log changes made to a table, while a DDL trigger can be used to enforce certain rules when a table is alt

  • Answered by AI
  • Q6. Can trigger be used with select statement?
  • Ans. 

    Yes, triggers can be used with select statements in SQL.

    • Triggers are database objects that are automatically executed in response to certain events, such as insert, update, or delete operations.

    • While triggers are commonly used with insert, update, and delete statements, they can also be used with select statements.

    • Using triggers with select statements allows you to perform additional actions or validations before or af...

  • Answered by AI
  • Q7. Indexing in mysql? How many types of indexing in mysql?
  • Ans. 

    Indexing in MySQL improves query performance. There are several types of indexing in MySQL.

    • Indexes are used to quickly locate data without scanning the entire table.

    • Types of indexing in MySQL include B-tree, hash, full-text, and spatial indexes.

    • B-tree indexes are the most common and suitable for most use cases.

    • Hash indexes are used for exact match lookups.

    • Full-text indexes are used for searching text-based data efficie...

  • Answered by AI
  • Q8. Engines in mysql?
  • Ans. 

    Engines in MySQL are the underlying software components that handle storage, indexing, and querying of data.

    • MySQL supports multiple storage engines, each with its own strengths and features.

    • Some commonly used engines in MySQL are InnoDB, MyISAM, and Memory.

    • InnoDB is the default engine in MySQL and provides support for transactions and foreign keys.

    • MyISAM is known for its simplicity and speed but lacks transaction suppo...

  • Answered by AI
  • Q9. Singlton pattern?
  • Q10. Can a constructor be private?
  • Ans. 

    Yes, a constructor can be private.

    • A private constructor can only be accessed within the class itself.

    • It is often used in singleton design pattern to restrict object creation.

    • Private constructors are also useful for utility classes that only contain static methods.

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

I applied via Referral and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Technical Questions (SQL and Python)
  • Q2. Business case studies

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up SQL skills, learn different methods of solving the same problem, learn basics of python, especially Pandas and Numpy

I applied via Referral and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. It is relevant to area where you are expertises and for position you applied for
  • Q2. Relevant to position

Interview Preparation Tips

Interview preparation tips for other job seekers - Really good company and can enjoy myntra benefits a lot .
Contribute & help others!
anonymous
You can choose to be anonymous

Teleone Interview FAQs

How many rounds are there in Teleone HR Executive interview?
Teleone interview process usually has 1 rounds. The most common rounds in the Teleone interview process are HR.
What are the top questions asked in Teleone HR Executive interview?

Some of the top questions asked at the Teleone HR Executive interview -

  1. What is short key of filt...read more
  2. How to freeze cell and basic knowledge of Exc...read more

Recently Viewed

INTERVIEWS

Shahi Exports

No Interviews

INTERVIEWS

Teleone

No Interviews

LIST OF COMPANIES

United University

Overview

JOBS

Shahi Exports

No Jobs

JOBS

Topsel Toyota

No Jobs

INTERVIEWS

TTSL

No Interviews

INTERVIEWS

Teleone

No Interviews

SALARIES

Josh Technology Group

LIST OF COMPANIES

Krish Technolabs

Overview

SALARIES

SALES ASSOCIATE

Tell us how to improve this page.

Teleone HR Executive Salary
based on 6 salaries
₹1.1 L/yr - ₹2 L/yr
46% less than the average HR Executive Salary in India
View more details

Teleone HR Executive Reviews and Ratings

based on 4 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.8

Salary

4.8

Job security

5.0

Company culture

4.8

Promotions

5.0

Work satisfaction

Explore 4 Reviews and Ratings
Telecaller
84 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Tele Sales Executive
49 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Telecalling Executive
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Executive
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Teleone with

HomeShop18

4.1
Compare

SHOP CJ Network

3.8
Compare

Naaptol Online Shopping

3.6
Compare

Star Cj Alive

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