Upload Button Icon Add office photos

Hike

Compare button icon Compare button icon Compare

Filter interviews by

Hike Interview Questions, Process, and Tips

Updated 27 Feb 2025

Top Hike Interview Questions and Answers

View all 88 questions

Hike Interview Experiences

Popular Designations

32 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Hackerearth platform was provided , Question was based on Tree dsa. Need to run and pass few test cases.

Round 2 - Case Study 

Design patterns , chess LLD

Round 3 - Case Study 

Design blocking queue which can handle the multithreading scenario

Round 4 - One-on-one 

(5 Questions)

  • Q1. Last project experiences
  • Ans. 

    Developed a web application for tracking inventory and sales data

    • Used React for front-end development

    • Implemented RESTful APIs using Node.js and Express

    • Utilized MongoDB for database management

  • Answered by AI
  • Q2. And management cases.
  • Q3. Discussion about recent projects
  • Q4. Discussion about working in projects for which hiring for
  • Q5. Discussion about why leaving previous company.

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 5 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 - Coding Test 

5 DSA Questions 2 Easy, 2Medium, 1 Hard, hackerrank

Round 3 - Technical 

(2 Questions)

  • Q1. 3 DSA question were asked of medium level
  • Q2. Largest vertical rectangle in array
  • Ans. 

    Find the largest vertical rectangle in an array of strings

    • Iterate through each column in the array

    • For each column, find the consecutive vertical rectangles of '1's

    • Calculate the area of each rectangle and keep track of the largest one

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. 1 DSA and around OS, DBMS, Resume
Round 5 - Technical 

(1 Question)

  • Q1. Around projects, Multithreading, LLD, HLD

Skills evaluated in this interview

Top Hike Software Developer Interview Questions and Answers

Q1. Reverse Words in a String: Problem Statement You are given a string of length N. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading or trailing spaces. The output should... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Hike Interview Questions and Answers for Freshers
illustration image

Team Lead Interview Questions & Answers

user image Anonymous

posted on 14 Sep 2022

Round 1 - Technical 

(1 Question)

  • Q1. Experience on huge infrastructure, how to make decisions of scaling, performance and availability?
  • Ans. 

    Scaling, performance, and availability decisions on huge infrastructure require a data-driven approach.

    • Analyze data on usage, traffic, and resource utilization to identify bottlenecks and areas for improvement.

    • Consider the impact of scaling on cost, user experience, and maintenance.

    • Implement monitoring and alerting systems to quickly identify and address issues.

    • Use load testing and performance profiling to optimize sys...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Cut throat level interview. Apply only if you are prepared.

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)

HR Manager Interview Questions & Answers

user image Anonymous

posted on 30 May 2022

I applied via Walk-in and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. What is Hr To manage business Hr basic rules? Processing, Planing, price
  • Ans. 

    HR is the management of human resources to achieve business goals.

    • HR involves recruiting, training, and managing employees.

    • HR policies and procedures ensure compliance with laws and regulations.

    • HR also includes compensation and benefits management.

    • Effective HR planning can help organizations achieve their objectives.

    • HR analytics can provide insights into workforce trends and performance.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What is meant by hr?
  • Ans. Business related that responsibilities to Work related Exmpl. On boarding, selecting, hiring Training and promoting
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Hike HR Manager interview:
  • HR Operations
  • Programming
  • Payroll Processing
  • Organisation Structuring
Interview preparation tips for other job seekers - Market urslf
Stay positive
Be confident
Good communication and work enthusiastic good atmosphere to attention. Work hard

HR Manager Interview Questions asked at other Companies

Q1. Can you explain the meaning of performance Management as stated in your CV
View answer (5)

Hike interview questions for popular designations

 Software Developer

 (6)

 Software Developer Intern

 (4)

 Android Developer

 (3)

 Associate Product Manager

 (1)

 Senior Software Engineer

 (1)

 HR Manager

 (1)

 Salesman

 (1)

 Software Development Engineer

 (1)

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 10AM. The platform was quite good.

  • Q1. 

    Maximum Size Rectangle Sub-matrix with All 1's Problem Statement

    You are provided with an N * M sized binary matrix 'MAT' where 'N' denotes the number of rows and 'M' denotes the number of columns. Your t...

  • Ans. 

    Find the maximum area of a submatrix with all 1's in a binary matrix.

    • Iterate over each cell in the matrix and calculate the maximum area of submatrix with that cell as the top-left corner.

    • Use dynamic programming to keep track of the maximum width of 1's ending at each cell.

    • Update the maximum area as you iterate through the matrix.

    • Return the maximum area found.

  • Answered by AI
  • Q2. 

    Binary Tree Maximum Path Sum Problem Statement

    Determine the maximum path sum for any path in a given binary tree with 'N' nodes.

    Note:

    • A 'path' is defined as any sequence of adjacent nodes connected...
  • Ans. 

    Find the maximum path sum in a binary tree with 'N' nodes.

    • Traverse the binary tree to find all possible paths and calculate their sums.

    • Keep track of the maximum sum encountered during traversal.

    • Consider both left and right child nodes while calculating the path sum.

    • Handle null nodes represented by '-1' in the input.

    • Return the maximum path sum for each test case.

  • Answered by AI
  • Q3. 

    Minimum Number of Swaps to Sort an Array

    Find the minimum number of swaps required to sort a given array of distinct elements in ascending order.

    Input:

    T (number of test cases)
    For each test case:
    N (siz...
  • Ans. 

    The minimum number of swaps required to sort a given array of distinct elements in ascending order.

    • Use graph theory to solve the problem by counting cycles in the permutation.

    • The number of swaps needed is equal to the number of cycles in the permutation minus one.

    • Consider using a hashmap to keep track of visited elements to optimize the solution.

    • Example: For input array [4, 3, 2, 1], the minimum number of swaps require

  • Answered by AI
  • Q4. 

    Infix to Postfix Conversion

    Convert a given infix expression, represented as a string EXP, into its equivalent postfix expression.

    Explanation:

    An infix expression is formatted as a op b where the opera...

  • Ans. 

    Convert infix expression to postfix expression.

    • Use a stack to keep track of operators and operands.

    • Follow the rules of precedence for operators.

    • Handle parentheses to ensure correct order of operations.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in DelhiEligibility criteriaAbove 7 CGPAHike interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Do at least 1 project.
Tip 2 : Practice data structure questions.
Tip 3 : Dynamic programming is must.

Application resume tips for other job seekers

Tip 1 : Do not put false things.
Tip 2 : Keep it short and direct.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Hike Software Developer Intern Interview Questions and Answers

Q1. Maximum Size Rectangle Sub-matrix with All 1's Problem Statement You are provided with an N * M sized binary matrix 'MAT' where 'N' denotes the number of rows and 'M' denotes the number of columns. Your task is to determine and return the m... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Get interview-ready with Top Hike Interview Questions

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 10AM. The platform was user-friendly.

  • Q1. 

    Maximum Size Rectangle Sub-matrix with All 1's Problem Statement

    You are provided with an N * M sized binary matrix 'MAT' where 'N' denotes the number of rows and 'M' denotes the number of columns. Your t...

  • Ans. 

    Find the maximum area of a submatrix with all 1's in a binary matrix.

    • Iterate over each cell in the matrix and calculate the maximum area of submatrix with that cell as the top-left corner.

    • Use dynamic programming to keep track of the maximum width of 1's ending at each cell.

    • Update the maximum area as you iterate through the matrix.

    • Return the maximum area found.

  • Answered by AI
  • Q2. 

    Binary Tree Maximum Path Sum Problem Statement

    Determine the maximum path sum for any path in a given binary tree with 'N' nodes.

    Note:

    • A 'path' is defined as any sequence of adjacent nodes connected...
  • Ans. 

    Find the maximum path sum in a binary tree with 'N' nodes.

    • Traverse the binary tree to find the maximum path sum.

    • Keep track of the maximum sum encountered so far.

    • Consider all possible paths in the tree to find the maximum sum.

    • Example: For input 1 2 3 4 -1 5 6 -1 -1 -1 -1 -1 -1, the maximum path sum is 16.

  • Answered by AI
  • Q3. 

    Minimum Number of Swaps to Sort an Array

    Find the minimum number of swaps required to sort a given array of distinct elements in ascending order.

    Input:

    T (number of test cases)
    For each test case:
    N (siz...
  • Ans. 

    Find the minimum number of swaps required to sort an array of distinct elements in ascending order.

    • Use graph theory to solve the problem by considering each element as a node and edges representing the swaps needed to sort the array

    • Implement a graph-based approach like cycle detection to find the minimum number of swaps required

    • Consider using an efficient sorting algorithm like bubble sort or selection sort to minimize

  • Answered by AI
  • Q4. 

    Prefix to Infix Conversion

    Transform a string representing a valid Prefix expression, which may contain operators '+', '-', '*', '/', and uppercase letters, into its corresponding Infix expression.

    Examp...

  • Ans. 

    Convert a valid Prefix expression to its corresponding Infix expression.

    • Use a stack to store operands and operators while traversing the prefix expression from right to left.

    • Pop operands from the stack and form the infix expression by placing them between corresponding operators.

    • Handle the precedence of operators to ensure correct order of operations.

    • Ensure to handle parentheses to maintain the correct evaluation order...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in New DelhiEligibility criteriaAbove 8 cgpaHike interview preparation:Topics to prepare for the interview - Data stucture , pointer , tree ,Core java ,OopsTime required to prepare for the interview - 15 daysInterview preparation tips for other job seekers

Tip 1 : Atleast 1 project
Tip 2 : Practice data structures
 

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Don't put false information

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Hike Software Developer Intern Interview Questions and Answers

Q1. Maximum Size Rectangle Sub-matrix with All 1's Problem Statement You are provided with an N * M sized binary matrix 'MAT' where 'N' denotes the number of rows and 'M' denotes the number of columns. Your task is to determine and return the m... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Jobs at Hike

View all

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 10AM. The platform was quite good.

  • Q1. 

    Maximum Size Rectangle Sub-Matrix with All 1's

    Given an N x M binary matrix 'MAT', where N is the number of rows and M is the number of columns, determine the maximum area of a submatrix consisting entire...

  • Ans. 

    Find the maximum area of a submatrix consisting entirely of 1's in a binary matrix.

    • Iterate over each cell in the matrix and calculate the maximum area of a submatrix with that cell as the top-left corner.

    • Use dynamic programming to keep track of the maximum width of 1's ending at each cell in the current row.

    • Update the maximum area as you iterate through the matrix and consider each cell as the bottom-right corner of th

  • Answered by AI
  • Q2. 

    Maximum Sum Path in a Binary Tree

    Your task is to determine the maximum possible sum of a simple path between any two nodes (possibly the same) in a given binary tree of 'N' nodes with integer values.

    Ex...

  • Ans. 

    Find the maximum sum of a simple path between any two nodes in a binary tree.

    • Use a recursive approach to traverse the binary tree and calculate the maximum sum path.

    • Keep track of the maximum sum path found so far while traversing the tree.

    • Consider negative values in the path sum calculation to handle cases where the path can skip nodes.

    • Update the maximum sum path if a new path with a higher sum is found.

  • Answered by AI
  • Q3. 

    Minimum Number of Swaps to Sort an Array

    Find the minimum number of swaps required to sort a given array of distinct elements in ascending order.

    Input:

    T (number of test cases)
    For each test case:
    N (siz...
  • Ans. 

    The minimum number of swaps required to sort a given array of distinct elements in ascending order.

    • Use a graph-based approach to find cycles in the array for swapping

    • Count the number of swaps needed to sort the array

    • Example: For [4, 3, 2, 1], 2 swaps are needed to sort it to [1, 2, 3, 4]

  • Answered by AI
  • Q4. 

    Prefix to Infix Conversion

    Transform a string representing a valid Prefix expression, which may contain operators '+', '-', '*', '/', and uppercase letters, into its corresponding Infix expression.

    Examp...

  • Ans. 

    Convert a valid Prefix expression to its corresponding Infix expression.

    • Use a stack to store operands and operators while traversing the prefix expression from right to left.

    • Pop operands from the stack and form the infix expression by placing them between corresponding operators.

    • Handle the precedence of operators to ensure correct order of operations in the infix expression.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as SDE - Intern in New DelhiEligibility criteriaAbove 8 CGPAHike interview preparation:Topics to prepare for the interview - Data Structure,OOPS, Java, Graphs, PointersTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do at least 1 project.
Tip 2 : Practice data structure questions.
Tip 3 : Dynamic programming is must.

Application resume tips for other job seekers

Tip 1 : Do not put false things.
Tip 2 : Keep it short and direct.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Hike Software Developer Intern Interview Questions and Answers

Q1. Maximum Size Rectangle Sub-matrix with All 1's Problem Statement You are provided with an N * M sized binary matrix 'MAT' where 'N' denotes the number of rows and 'M' denotes the number of columns. Your task is to determine and return the m... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Interview Questionnaire 

3 Questions

  • Q1. Coding round
  • Q2. Questiond related to DS
  • Q3. Questions related yo time complexity

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared. do practice and learn DS.

Senior QA QC Engineer Interview Questions asked at other Companies

Q1. What is the design mix of M30 grade concrete?what is follow of IS Code for design mix?
View answer (2)

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Maximum Difference in Matrix

    Given an n x n matrix mat[n][n] of integers, find the maximum value of mat[c][d] - mat[a][b] for all possible indices where c > a and d > b.

    Input:

    The first line cont...
  • Ans. 

    Find the maximum difference between elements in a matrix with specific conditions.

    • Iterate through all possible pairs of indices (a, b) and (c, d) where c > a and d > b.

    • Calculate the difference between mat[c][d] and mat[a][b] for each pair.

    • Keep track of the maximum difference found so far.

    • Return the maximum difference as the final result.

  • Answered by AI
Round 2 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Lokmanya Tilak College of Engineering. Eligibility criteria6.75+ CGPAHike interview preparation:Topics to prepare for the interview - Data Structures, OOPS, DBMS, OOPs, Algorithms, DP, GreedyTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Try solving Love Babbar 450 Prog questions
Tip 2 : Have a good resume
Tip 3 : Do learn some extra technologies eg. ML/AI

Application resume tips for other job seekers

Tip 1 : Do not lie at all
Tip 2 : Have some projects listed

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Hike Software Developer Intern Interview Questions and Answers

Q1. Maximum Size Rectangle Sub-matrix with All 1's Problem Statement You are provided with an N * M sized binary matrix 'MAT' where 'N' denotes the number of rows and 'M' denotes the number of columns. Your task is to determine and return the m... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

I was interviewed in Feb 2017.

Interview Questionnaire 

17 Questions

  • Q1. Print a linked list in zig zag manner. Link : -----/
  • Q2. Design a photo viewer app (Technical architecture) for android device.
  • Ans. 

    A photo viewer app for Android devices.

    • Use RecyclerView to display a grid of photos

    • Implement a caching mechanism to improve performance

    • Support gestures for zooming and swiping between photos

    • Integrate with a cloud storage service for photo storage and retrieval

    • Implement a search feature to allow users to find specific photos

  • Answered by AI
  • Q3. Given a String, write a function, which will return a boolean. The function will tell you whether one permutation of the string is Palindrome or not
  • Q4. Given an array, which consist of natural numbers only. The elements are in random order, tell the first missing natural number in the array. e.g 4,6,3,1,6,8 o.p - 2 1,2,3 O/P - 4
  • Ans. 

    Given an array of natural numbers, find the first missing natural number.

    • Sort the array and iterate through it to find the first missing number.

    • Use a hash set to keep track of the numbers present in the array.

    • The first missing number will be the smallest positive integer not present in the array.

  • Answered by AI
  • Q5. Given an Object 'Ball'. How will you transfer this ball object from one thread to another in Android.
  • Ans. 

    To transfer the Ball object from one thread to another in Android, we can use Handler or AsyncTask.

    • Use Handler to post the Ball object from one thread to another

    • Create a Handler in the receiving thread and use its post() method to receive the Ball object

    • Alternatively, use AsyncTask to perform the transfer in the background thread and update the UI thread with the Ball object

  • Answered by AI
  • Q6. Methods of IPC in android.
  • Ans. 

    IPC (Inter-Process Communication) methods in Android allow communication between different processes.

    • Binder: Android's default IPC mechanism, provides high-performance communication between processes.

    • AIDL (Android Interface Definition Language): Used to define the programming interface for IPC using Binder.

    • Intents: Used for asynchronous communication between components within an application or between different applica...

  • Answered by AI
  • Q7.  Implement LRU cache. (Implement you own HashMap meanwhile) Main focus was around this question only.
  • Q8. If you were asked to make your own HashMap, how will you do it. (As it was used in the first question)
  • Ans. 

    A HashMap is a data structure that stores key-value pairs and provides constant time complexity for basic operations.

    • Implement a hash function to convert keys into array indices

    • Create an array to store the key-value pairs

    • Handle collisions using a technique like chaining or open addressing

    • Implement methods like put(), get(), and remove() to interact with the HashMap

  • Answered by AI
  • Q9. Some definitions and basic android questions. AsyncTask, IntentService, Service, internals of ArrayList, etc.
  • Q10. Weather App. Given a screen. There is a button and full screen image view. When you press button, a image url is hit, and response contains the file and you have to show on Screen that image. The URL is a...
  • Q11. Extended same question for the adapter with multiple images, (Half of the last round was covered in it). How will you go on handling the multiple request, Handling AsyncTask in Threadpool.
  • Q12. You have application which shows list of all contacts, the Name can be duplicated, also it can contain duplicated numbers (0XXXXX, XXXXX etc). How will you go on and do searching in this. Search term can ...
  • Ans. 

    To search for contacts with duplicate names and numbers, create a search function that checks both fields.

    • Create a function that takes a search term as input

    • Iterate through the list of contacts

    • Check if the search term exists in the Name field or Num field

    • Return the contacts that match the search term

  • Answered by AI
  • Q13. Launch Mode of Activity in Android
  • Ans. 

    Launch mode determines how a new instance of an activity is created and added to the task stack.

    • Standard: Creates a new instance of the activity each time it is launched.

    • SingleTop: If an instance of the activity already exists at the top of the stack, it will be reused.

    • SingleTask: If an instance of the activity already exists in the stack, it will be brought to the front and cleared of any activities above it.

    • SingleIns...

  • Answered by AI
  • Q14. How do you do DeepLinking in android.
  • Ans. 

    Deep linking in Android allows linking to specific content within an app, enabling seamless navigation.

    • Deep linking is achieved by defining intent filters in the app's manifest file.

    • The intent filter specifies the data format and scheme for the deep link.

    • Deep links can be triggered from other apps, websites, or even notifications.

    • Handling deep links involves extracting data from the intent and navigating to the appropr

  • Answered by AI
  • Q15. Java cyclicbarrier.
  • Q16. Some Project based questions, What were your challenges, which project you loved most, which one you did not etc......
  • Q17. You have to design screen in which at a time on screen 10 nearest restaurants will be shown in a list. How will you go on design this. (Need to keep UI as un interrupted as possible).
  • Ans. 

    Design a screen to show 10 nearest restaurants in a list while keeping the UI uninterrupted.

    • Use a scrollable list view to display the restaurants

    • Implement a location-based search algorithm to find the nearest restaurants

    • Include a search bar to allow users to search for specific restaurants

    • Display relevant information for each restaurant such as name, rating, and distance

    • Implement filters or sorting options to allow use...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: It was a telephonic round.

Round: Technical Interview
Experience: Director of engineering round

Skills: Android, Java Application Development, Data Strrutures, Algorithm

Skills evaluated in this interview

Top Hike Software Development Engineer Interview Questions and Answers

Q1. You have application which shows list of all contacts, the Name can be duplicated, also it can contain duplicated numbers (0XXXXX, XXXXX etc). How will you go on and do searching in this. Search term can either exist in Name or in Num.
View answer (1)

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)
Contribute & help others!
anonymous
You can choose to be anonymous

Hike Interview FAQs

How many rounds are there in Hike interview?
Hike interview process usually has 2-3 rounds. The most common rounds in the Hike interview process are Technical, Coding Test and HR.
How to prepare for Hike 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 Hike. The most common topics and skills that interviewers at Hike expect are Gaming, Python, SQL, Data Analysis and Analytical.
What are the top questions asked in Hike interview?

Some of the top questions asked at the Hike interview -

  1. Design an photo viewing app which will show images from the disk in the list, a...read more
  2. You have to design screen in which at a time on screen 10 nearest restaurants w...read more
  3. You have application which shows list of all contacts, the Name can be duplicat...read more
How long is the Hike interview process?

The duration of Hike interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

JOBS

Hike

No Jobs

SALARIES

dezerv

SALARIES

Hike

SALARIES

CONCAST

SALARIES

Bata

INTERVIEWS

RED CHIEF

No Interviews

LIST OF COMPANIES

CONCAST

Overview

SALARIES

CONCAST

SALARIES

Bata

SALARIES

dezerv

Tell us how to improve this page.

Hike Interview Process

based on 10 interviews

Interview experience

4
  
Good
View more

Explore Interview Questions and Answers for Top Skills at Hike

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 752 Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
BigBasket Interview Questions
3.9
 • 359 Interviews
PolicyBazaar Interview Questions
3.6
 • 349 Interviews
Zomato Interview Questions
3.8
 • 312 Interviews
Ola Cabs Interview Questions
3.4
 • 139 Interviews
MakeMyTrip Interview Questions
3.7
 • 122 Interviews
BookMyShow Interview Questions
4.0
 • 23 Interviews
View all

Hike Reviews and Ratings

based on 56 reviews

3.6/5

Rating in categories

3.3

Skill development

3.2

Work-life balance

4.1

Salary

2.9

Job security

3.4

Company culture

3.1

Promotions

3.2

Work satisfaction

Explore 56 Reviews and Ratings
SDE Security ( Full Time, Remote)

Kolkata,

Mumbai

+5

2-3 Yrs

Not Disclosed

Lead Marketing - Web3

Remote

12-14 Yrs

Not Disclosed

Community Manager - Web3

Remote

4-9 Yrs

Not Disclosed

Explore more jobs
Senior Product Analyst
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Product Manager
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Hike with

Ola Cabs

3.4
Compare

Flipkart

4.0
Compare

Paytm

3.3
Compare

Swiggy

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