Upload Button Icon Add office photos
Engaged Employer

i

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

Hostnetindia Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Hostnetindia HR Intern Interview Questions and Answers

Updated 28 May 2024

Hostnetindia HR Intern Interview Experiences

1 interview found

HR Intern Interview Questions & Answers

user image Anonymous

posted on 28 May 2024

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

I applied via Internshala and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Introduce yourself then they asked a lot about hr its insights
  • Q2. Introduction about yourself
  • Q3. What is your educational background and skills set
  • Q4. How much you know about human resource management
  • Ans. 

    I have a strong understanding of human resource management principles and practices.

    • I have studied HRM courses in my academic curriculum

    • I have practical experience in handling HR tasks such as recruitment, onboarding, performance management, and employee relations

    • I am familiar with HR laws and regulations governing the workplace

    • I understand the importance of employee engagement and retention strategies in HRM

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confodent that's the main key to success.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Write a code for insert a record inside table and show the same record in any framework as per your comfort?
  • Ans. 

    Code to insert record in table and display in framework

    • Use SQL INSERT statement to insert record in table

    • Retrieve the record using SELECT statement

    • Display the record in framework using appropriate syntax

    • Example: INSERT INTO table_name (column1, column2, column3) VALUES (value1, value2, value3);

    • Example: SELECT * FROM table_name WHERE column1=value1;

    • Example: Display record in HTML table using PHP or JavaScript

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If are good in your coding skill then you will get selection in ZnetLive.

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed before Dec 2022. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Java, j2ee, jre
  • Q2. Html, xtml, java script
  • Q3. Seo, smm, development
  • Q4. Core java, basic java
  • Q5. Designing, frontend, synchronized

Interview Preparation Tips

Interview preparation tips for other job seekers - Best to. Work there
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Its was english grammer ,math & IT and genral knowledge based test paper

Round 2 - Technical 

(6 Questions)

  • Q1. Java developer questions they ask
  • Q2. Frontend development
  • Q3. Backend development
  • Q4. Information technology
  • Q5. Core java development
  • Q6. Html xtml java script
Round 3 - HR 

(4 Questions)

  • Q1. Introduction questions
  • Q2. Family background questions
  • Q3. College related questions
  • Q4. Salary negotiable

Interview Preparation Tips

Interview preparation tips for other job seekers - Before going fir attending interview prepare yourself very well

I applied via Walk-in and was interviewed in May 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 tips
Round 2 - HR 

(2 Questions)

  • Q1. Tell me something about your job role
  • Ans. 

    As a Software Developer, my job role involves designing, coding, testing, and maintaining software applications.

    • Designing and implementing software solutions based on user requirements

    • Writing clean and efficient code using programming languages like Java, C++, or Python

    • Testing and debugging software to ensure it functions correctly

    • Collaborating with cross-functional teams to develop and deploy software applications

    • Main...

  • Answered by AI
  • Q2. Tell me about yourself
  • Ans. 

    I am a software developer with experience in multiple programming languages and a passion for problem-solving.

    • Experienced in Java, C++, and Python

    • Strong understanding of data structures and algorithms

    • Worked on various projects including web development and mobile app development

    • Excellent problem-solving and analytical skills

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please confirm about their job confirmation or rejection

I applied via Campus Placement and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. As I was from ECE background I was asked some basic electronics questions like logic gates AND, NAND, NOR and Flipflops and Latches and Master-Slave flipflop.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good and simple. Be confident, answer confidently, when they ask about your personals maintain a smile on ur face. But I would suggest you not to join CtrlS because the management of the company is not that good. Even if you mail them a 100 times and call them a 1000 times there will be no rply from their side. Everything is very slow and a delayed process in that company. They'll keep you waiting for hours and hours. Even if you get an offer you will be in a dilemma if you'll get placed in the domain or they'll keep you waiting for days and days before giving you the domain. This is my opinion and you better consider all the factors before joining here.
Interview experience
3
Average
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 - Coding Test 

Coding test in any language

Round 3 - Group Discussion 

Any topics for the GD

Round 4 - One-on-one 

(4 Questions)

  • Q1. Experience about the java script
  • Q2. My work experience about the java scirpt
  • Q3. Palindrome in any code language
  • Ans. 

    A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Check if the input string is equal to its reverse

    • Ignore spaces and punctuation when checking for palindromes

    • Convert the input string to lowercase for case-insensitive comparison

  • Answered by AI
  • Q4. Other general maths programming questions

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Peak element in array
  • Ans. 

    A peak element in an array is an element that is greater than or equal to its neighbors.

    • Iterate through the array and check if the current element is greater than its neighbors.

    • If the element at index i is greater than or equal to elements at indices i-1 and i+1, it is a peak element.

    • Example: ['1', '3', '2', '4', '1'] has peak elements at index 1 and 3.

  • Answered by AI
  • Q2. 2 dimentional array rotate 90 degree
  • Ans. 

    Rotate a 2D array by 90 degrees clockwise

    • Transpose the array

    • Reverse each row of the transposed array

  • Answered by AI
Round 2 - Group Discussion 

Pollitices current generation

Skills evaluated in this interview

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

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

Round 1 - HR 

(1 Question)

  • Q1. Basic details around experience
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic details and system design
Round 3 - Technical 

(1 Question)

  • Q1. Coding for a solution
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What are statics functions in OOPS
  • Ans. 

    Static functions in OOP are functions that belong to the class itself, rather than to instances of the class.

    • Static functions can be called without creating an instance of the class.

    • They are commonly used for utility functions that do not require access to instance-specific data.

    • Static functions are declared using the 'static' keyword in many programming languages.

    • Example: In Java, a static function in a class can be c

  • Answered by AI
  • Q2. What is Polymorphism in OOPs
  • Ans. 

    Polymorphism in OOPs allows objects of different classes to be treated as objects of a common superclass.

    • Polymorphism allows methods to be called on objects of different classes that all inherit from a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overriding in inheritance and method overloading within the same class.

  • Answered by AI
  • Q3. What is websockets and its alternative
  • Ans. 

    Websockets are a communication protocol that allows for full-duplex communication between a client and a server over a single, long-lived connection.

    • Websockets provide real-time, bi-directional communication between a client and a server.

    • They are commonly used in applications that require instant updates, such as chat applications, online gaming, and financial trading platforms.

    • Websockets use a persistent connection, u...

  • Answered by AI
  • Q4. What is JWT and How it works
  • Ans. 

    JWT stands for JSON Web Token, a compact and self-contained way for securely transmitting information between parties as a JSON object.

    • JWT is composed of three parts: header, payload, and signature.

    • Header typically consists of the type of token and the hashing algorithm being used.

    • Payload contains the claims, which are statements about an entity and additional data.

    • Signature is created by encoding the header, payload, ...

  • Answered by AI

Skills evaluated in this interview

Hostnetindia Interview FAQs

How many rounds are there in Hostnetindia HR Intern interview?
Hostnetindia interview process usually has 1 rounds. The most common rounds in the Hostnetindia interview process are One-on-one Round.

Tell us how to improve this page.

Hostnetindia HR Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

CtrlS Interview Questions
3.5
 • 38 Interviews
Path Infotech Interview Questions
3.9
 • 19 Interviews
GoDaddy Interview Questions
3.4
 • 14 Interviews
Calibraint Interview Questions
3.5
 • 12 Interviews
AppLogiQ Interview Questions
4.5
 • 4 Interviews
MilesWeb Interview Questions
4.5
 • 3 Interviews
Browseinfo Interview Questions
5.0
 • 3 Interviews
View all

Hostnetindia HR Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

3.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Compare Hostnetindia with

GoDaddy

3.4
Compare

Bigrock

5.0
Compare

Net4

2.7
Compare

ZNetLive

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