Upload Button Icon Add office photos

Filter interviews by

Hiremee Interview Questions and Answers

Updated 7 Aug 2024

Hiremee Interview Experiences

Popular Designations

3 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Group Discussion 

General topics like e-learning vs traditional learning

Round 2 - One-on-one 

(1 Question)

  • Q1. How to flutter the backend to front end
  • Ans. 

    Flutter is a framework for building cross-platform apps, not for connecting backend to frontend.

    • Flutter is a UI toolkit for building natively compiled applications for mobile, web, and desktop from a single codebase.

    • To connect backend to frontend, you would typically use APIs like REST or GraphQL to send and receive data between the two.

    • You can use packages like http or dio in Flutter to make HTTP requests to your back...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have strong knowledge on the job role you are seeking for.

Skills evaluated in this interview

Full Stack Software Developer Interview Questions asked at other Companies

Q1. Oops in Java Patterns in Java JDK,JRE,JVM MVC Array questions strings in Java This,super keywords Java problems like palindrome, prime number,and so many problems and logics Why java is platform independent Why java is not platform dependen... read more
View answer (1)

Sun Pharmaceutical Industries

Join us and thrive in a company culture that inspires and empowers.

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Maximum number find and tell me about your self and largest number in array

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy

Associate Software Developer Interview Questions asked at other Companies

Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1. Input: The input consists of a single intege... read more
View answer (1)
Hiremee Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy Questions only, TIME AND WORK

Round 2 - Coding Test 

Medium Questions ,OOPS and DSA

Interview Preparation Tips

Interview preparation tips for other job seekers - study dsa main and oops ,dbms.

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)

Interview questions from similar companies

Interview Questionnaire 

8 Questions

  • Q1. Given a doubly linked list with one pointer of each node pointing to the next node just like in a singly linked list. The second pointer(arbit pointer) however can point to any node in the list and not jus...
  • Ans. 

    Program to create a copy of a doubly linked list with an arbit pointer.

    • Traverse the original list and create a new node for each node in the list.

    • Store the mapping of original node to the new node in a hash table.

    • Traverse the original list again and set the next and arbit pointers of the new nodes.

    • Return the head of the new list.

  • Answered by AI
  • Q2. Implement funcionality of 1000 of students giving a online test and timer is running. You have to calculate th etime when test is tarted and auto-matically stop the test when test is ended. Handle the scen...
  • Ans. 

    Implement functionality for online test with timer and handle power failure scenarios

    • Create a timer function to track the time

    • Store the start time and end time of the test

    • Implement a backup system to save progress in case of power failure

    • Use a database to store test data and progress

    • Handle edge cases like internet connectivity issues

  • Answered by AI
  • Q3. WAP of prime number using reursion?
  • Ans. 

    A recursive function to check if a number is prime or not.

    • Create a function that takes a number as input.

    • Check if the number is less than 2, return false.

    • Check if the number is 2, return true.

    • Check if the number is divisible by any number less than it, return false.

    • If none of the above conditions are met, call the function recursively with the number minus 1.

  • Answered by AI
  • Q4. Reverse a linked list?
  • Ans. 

    To reverse a linked list, we need to traverse the list and change the direction of the pointers.

    • Create three pointers: prev, curr, and next

    • Initialize prev to null, curr to head of the linked list, and next to null

    • Traverse the list and change the direction of the pointers: next = curr.next; curr.next = prev; prev = curr; curr = next;

    • Set the new head of the linked list to prev

  • Answered by AI
  • Q5. Some sql related questions – not very tough : some inner joins and self join based?
  • Q6. How can you stop man in the middle attack over an insecure communication line without using any kind of encryption ?
  • Ans. 

    It is not possible to stop man in the middle attack over an insecure communication line without using any kind of encryption.

    • Without encryption, the communication line is inherently insecure and vulnerable to man-in-the-middle attacks.

    • One possible solution is to use a secure communication line, such as a VPN or a dedicated private network.

    • Another solution is to use digital signatures to verify the authenticity of the c...

  • Answered by AI
  • Q7. What is the difference between http and https?
  • Ans. 

    HTTP is unsecured while HTTPS is secured with SSL/TLS encryption.

    • HTTP stands for Hypertext Transfer Protocol while HTTPS stands for Hypertext Transfer Protocol Secure.

    • HTTP operates on port 80 while HTTPS operates on port 443.

    • HTTP is unencrypted while HTTPS is encrypted with SSL/TLS.

    • HTTPS provides authentication and data integrity while HTTP does not.

    • HTTPS is used for secure online transactions such as online banking, e

  • Answered by AI
  • Q8. Heap memory and stack memory? Local variables are stored where? What is memory tables?
  • Ans. 

    Heap and stack memory are two types of memory allocation in a program. Local variables are stored in stack memory. Memory tables are used to track memory allocation.

    • Heap memory is used for dynamic memory allocation, while stack memory is used for static memory allocation.

    • Local variables are stored in stack memory and are only accessible within the scope of the function they are declared in.

    • Memory tables are used to kee...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Finally, I got offer from Aspiring Minds after 15 days of negotiation.

Skills: data structure, Algorithm
College Name: na

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: Numeric Reasoning Test

Round: Test
Experience: Numeric Reasoning Test

Round: Test
Experience: Numeric Reasoning Test

I applied via Campus Placement and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Given an array findtwo elements whose sum will equal to the given target number (two sum)
  • Ans. 

    Given an array, find two elements whose sum equals the target number (two sum).

    • Use a hash table to store the difference between the target and each element in the array.

    • Iterate through the array and check if the current element exists in the hash table.

    • If it does, return the current element and the corresponding value in the hash table.

    • If it doesn't, add the difference between the target and the current element to the

  • Answered by AI
  • Q2. Find repeated and missing no.s
  • Ans. 

    The task is to find the repeated and missing numbers in an array of integers.

    • Iterate through the array and mark the visited numbers by changing the sign of the element at the corresponding index.

    • If a number is already negative, it means it is a repeated number.

    • The missing number can be found by checking the index of the positive number.

    • Alternatively, we can use a hash set to keep track of visited numbers and find the m...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Give eLitmus exam and try to score good marks they will definitely shortlist you and practice basics DSA questions mainly on array and strings .

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

DSA, 2hrs. along with aptitude and reasoning que were asked

Round 2 - english test 

(2 Questions)

  • Q1. Verbal test was taken
  • Q2. Grammar, punctuation, article ets were asked
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why you want to join us
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

Nice interview experience on the aptitude

Round 2 - Technical 

(2 Questions)

  • Q1. Introduced ourselves
  • Q2. Explain about about projects
  • Ans. 

    Projects are specific tasks or assignments undertaken to achieve a particular goal or outcome.

    • Projects involve a defined scope, timeline, and budget.

    • They require a team of individuals with specific skills and roles.

    • Examples include developing a new software application, implementing a website redesign, or launching a marketing campaign.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Oct 2023.

Round 1 - Coding Test 

It was a simple coding round with recursion question like backtracking

Round 2 - Technical 

(2 Questions)

  • Q1. Some questions were around DSA
  • Q2. Some questions were arround my personal projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go with this comapany now
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Do you have any experience into recruitment?
Round 2 - Group Discussion 

How can you manage daily travelling?

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Communication Skills
Contribute & help others!
anonymous
You can choose to be anonymous

Hiremee Interview FAQs

How many rounds are there in Hiremee interview?
Hiremee interview process usually has 1-2 rounds. The most common rounds in the Hiremee interview process are Coding Test, Aptitude Test and Group Discussion.
How to prepare for Hiremee 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 Hiremee . The most common topics and skills that interviewers at Hiremee expect are OOPS, Javascript, MVC, MySQL and .Net.

Recently Viewed

REVIEWS

eLitmus Evaluation

No Reviews

SALARIES

TCS

DESIGNATION

REVIEWS

TCS

No Reviews

REVIEWS

EXL Service

No Reviews

SALARIES

Berkadia

JOBS

Browse jobs

Discover jobs you love

SALARIES

McFadyen Digital

No Salaries

COMPANY BENEFITS

McFadyen Digital

No Benefits

REVIEWS

IBM

No Reviews

Tell us how to improve this page.

Hiremee Interview Process

based on 4 interviews

Interview experience

3.3
  
Average
View more

HCLTech

A more secure future awaits you

Interview Questions from Similar Companies

Right Advisors Interview Questions
4.5
 • 25 Interviews
Talview Interview Questions
3.1
 • 10 Interviews
Wheebox Interview Questions
3.5
 • 6 Interviews
Aspiring Minds Interview Questions
4.0
 • 4 Interviews
TalentSprint Interview Questions
4.0
 • 4 Interviews
Mettl Interview Questions
3.8
 • 4 Interviews
MeritTrac Interview Questions
3.9
 • 1 Interview
Youth4work Interview Questions
2.8
 • 1 Interview
View all

Hiremee Reviews and Ratings

based on 17 reviews

3.7/5

Rating in categories

3.4

Skill development

4.1

Work-life balance

3.9

Salary

3.2

Job security

3.9

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 17 Reviews and Ratings
Territory Sales Manager
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Territory Sales Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Regional Sales Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Key Account Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Territory Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Hiremee with

Aspiring Minds

4.0
Compare

CoCubes Technologies

2.1
Compare

MeritTrac

3.9
Compare

eLitmus Evaluation

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