Upload Button Icon Add office photos

Filter interviews by

Jolly Food Fellow Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via LinkedIn and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is the Naive Bayes algorithm?
  • Ans. 

    Naive Bayes is a probabilistic algorithm used for classification and prediction based on Bayes' theorem.

    • It assumes that the presence of a particular feature in a class is unrelated to the presence of any other feature.

    • It calculates the probability of each class based on the input features and selects the class with the highest probability.

    • It is commonly used in spam filtering, sentiment analysis, and document classific...

  • Answered by AI
  • Q2. When do we use Null Hypothesis?
  • Ans. 

    Null hypothesis is used to test the significance of a statistical result.

    • Null hypothesis assumes that there is no significant difference between two groups or variables.

    • It is used to determine if the observed results are due to chance or not.

    • If the p-value is less than the significance level, we reject the null hypothesis.

    • Examples include testing the effectiveness of a new drug compared to a placebo, or comparing the m

  • Answered by AI
  • Q3. Suppose we need to find the sales of Rosogolla sweets being sold in Kolkata. What approach would you take?
  • Ans. 

    I would use a combination of primary and secondary research to find the sales of Rosogolla sweets in Kolkata.

    • Conduct surveys and interviews with local sweet shop owners and customers

    • Analyze sales data from major sweet shops in Kolkata

    • Research online for articles and reports on the popularity of Rosogolla in Kolkata

    • Compare sales data with other popular sweets in Kolkata

    • Consider factors such as seasonality and festivals

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - FOR DATA SCIENCE POSITION:
Learn all the basic concepts and fundamentals of Statistics, Data Science and Python, and SQL.
You may be asked to do EDA from scratch using python.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Given a data set of hotel you need to find number of booking.
  • Q2. SQL Query based upon join leetcode.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. 2 sum problem [leetcode]
  • Q2. Linkedlist problem
  • Ans. 

    Implement various operations on a linked list and solve related problems like reversing a linked list or detecting a cycle.

    • Understand the basic structure of a linked list with nodes containing data and a reference to the next node.

    • For insertion, update the pointers of the nodes accordingly to maintain the sequence.

    • For deletion, adjust the pointers to skip the node to be deleted.

    • To reverse a linked list, iterate through...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

The round primarily focused on assessing data structure and algorithm (DSA) knowledge, as well as coding proficiency.

I applied via Naukri.com and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. It's completely based on job profile.
  • Q2. Some basic questions in data analyst.
  • Q3. Some questions on ML
  • Q4. Some questions on statistics
  • Q5. Some on previous projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with job profile and the contents written in cv.

I applied via Recruitment Consulltant and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. SQL,Python,Machine Learning,Model based question
Round 2 - HR 

(1 Question)

  • Q1. General question , previous company role and responsibility etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with market oriented model, clustering model, classification model,SQL analysis queries
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Assignment 

A comprehensive overview of digital marketing includes its various strategies, channels, and tools utilized to promote products and services through online platforms.

Round 2 - Group Discussion 

Regarding client management.

Interview Preparation Tips

Interview preparation tips for other job seekers - Adsify is a reputable company that provides comprehensive support to its employees, and securing a position here is considered a blessing.
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Easy leetcode data structure question

Round 3 - Technical 

(1 Question)

  • Q1. Write working code for calling a rest API, design rate limiter
  • Ans. 

    Code for calling a REST API and designing a rate limiter

    • Use a library like requests or axios to make the API call

    • Implement a token bucket algorithm for rate limiting

    • Set a maximum number of requests per second and queue excess requests

    • Consider using a distributed rate limiter for scalability

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Design Database schema for instagram
  • Ans. 

    Design a database schema for Instagram.

    • Create tables for users, posts, comments, likes, and follows.

    • Use primary and foreign keys to establish relationships between tables.

    • Store user data such as username, email, and password securely.

    • Include fields for post content, location, and timestamp.

    • Track likes and comments on posts.

    • Implement a notification system for follows and likes.

    • Consider scalability and performance in the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All round was smooth and interviewer were friendly.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on vlook up, h-look up, pivot and if else condition
  • Q2. You must know how to use vlook up, h-look up and if-else condition
Round 2 - Assignment 

Excel file was give, used sumifs, countifs , index match formulas

Interview Preparation Tips

Interview preparation tips for other job seekers - Just learn the excel famous questions and concept like look up, index match, nested if, concate function etc
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is invoke controller?
  • Ans. 

    Invoke controller is a component in a software application that manages the flow of requests and responses between the user interface and the backend services.

    • Manages the communication between user interface and backend services

    • Handles the routing of requests to appropriate functions or methods

    • Coordinates the flow of data and actions within the application

  • Answered by AI
  • Q2. What is facade in laravel?
  • Ans. 

    Facade in Laravel is a design pattern that provides a simple interface to a complex subsystem.

    • Facade provides a static interface to classes that are available in the application's service container.

    • It is used to simplify the usage of complex classes by providing a simpler interface.

    • Facade allows you to access Laravel's features without needing to instantiate objects or use dependency injection.

    • Example: The Auth facade ...

  • Answered by AI

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

3 Minds Digital Interview Questions
4.4
 • 65 Interviews
Z1 Tech Interview Questions
4.0
 • 11 Interviews
Bikayi Interview Questions
2.9
 • 10 Interviews
Xeno Interview Questions
3.3
 • 5 Interviews
Digitabytes Interview Questions
5.0
 • 5 Interviews
We Think North Interview Questions
4.5
 • 4 Interviews
PivotRoots Interview Questions
3.4
 • 4 Interviews
Adonmo Interview Questions
3.8
 • 4 Interviews
View all
Compare Jolly Food Fellow with

Adonmo

3.8
Compare

Z1 Tech

4.0
Compare

Bikayi

2.9
Compare

Zocket Technologies

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