Upload Button Icon Add office photos

Filter interviews by

Inito (samplytics Technology Private Limited) Interview Questions and Answers

Updated 4 Dec 2024

Inito (samplytics Technology Private Limited) Interview Experiences

Popular Designations

6 interviews found

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 Nov 2024. There were 3 interview rounds.

Round 1 - Case Study 

There was a guesstimate and another question on profitability. This round ended after the interviewer asked a puzzle

Round 2 - Case Study 

There was a product design case. It was relatively easier and one needs to think about the solution with an open mind to crack the case.

Round 3 - Product Management 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Explain to me the design project that you have written in your CV

Interview Preparation Tips

Interview preparation tips for other job seekers - Would suggest that give the interviews with a calm mind. The panelists are very supportive and will guide you throughout the interview.

Associate Product Manager Interview Questions asked at other Companies

Q1. 2. You have water filled Jar X and empty Jar Y. You transferred a portion of water from Jar X to Y using spunch which absorbs A% of water and it pours B% of water in Jar B. After one iteration, Z ml of water is present in Jar Y find water i... read more
View answer (2)

Software Developer Interview Questions & Answers

user image mailmswordsuraj

posted on 20 Sep 2024

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

DSA, system design including HLD and LLD

Round 2 - Technical 

(2 Questions)

  • Q1. 3 sum problem was asked
  • Q2. Rate in a maze was asked
  • Ans. 

    Rate in a maze refers to the speed at which a player can navigate through the maze.

    • Rate in a maze can be calculated by dividing the distance traveled by the time taken to reach the destination.

    • For example, if a player covers 100 meters in 10 minutes, the rate in the maze would be 10 meters per minute.

    • Rate in a maze is important for measuring efficiency and performance in maze-solving algorithms.

  • Answered by AI

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 (38)
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Asked to design a system to read logs from a file and send it to client. The logs will be sent in near real time and log file is too big to be fully loaded into memory.

Interview Preparation Tips

Interview preparation tips for other job seekers - I told the strategy to divide file into chunks and user kafka as well to solve the problem but they were expecting me to write the complete solution within 2 hours after agreeing to the solution. They allowed internet usage but the method which I was using was not doable within time. I had to install kafka and java spring framework. I had to find apis for kafka and reading from the file and writing. This is just too much expectation.

Software Engineer2 Interview Questions asked at other Companies

Q1. - Given a water -tight orientable 2-manifold, how to find if a point is inside or outside its volume? - Given a bunch of points with their coordinates, how to merge closeby points together? - How to determine if the normals of the two trian... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I was interviewed in Nov 2023.

Round 1 - Aptitude Test 

Puzzle and Guesstimate. 30 mins

Round 2 - Case Study 

Product Case Study. 60 mins

Round 3 - Assignment 

Take home assignment on product design

Round 4 - One-on-one 

(1 Question)

  • Q1. Assignment discussion round

Product Manager Interview Questions asked at other Companies

Q1. You see the number of people cancelling the order increasing. Cancel window 24 hours. What would you do?
View answer (26)

Inito (samplytics Technology Private Limited) interview questions for popular designations

 Software Developer

 (2)

 Associate Product Manager

 (1)

 Product Manager

 (1)

 Software Engineer Intern

 (1)

 Software Engineer2

 (1)

Interview experience
4
Good
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 - Assignment 

A backend assignment was given

Round 3 - Technical 

(1 Question)

  • Q1. CS Fundamental questions were asked and general questions about tech stacks like NodeJS.
Round 4 - Technical 

(1 Question)

  • Q1. General questions about CS fundamentals were asked and a puzzle was asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good knowledge of CS Fundamentals and the basics of tech stacks should be well known to you, which you are using.

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
Add answer
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Database schema
Round 2 - Technical 

(1 Question)

  • Q1. DSA problem solving

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 (38)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Assignment 

ReactJS and PHP based User Management Portal

Round 2 - One-on-one 

(6 Questions)

  • Q1. DSA - to find frequency of numbers in an array
  • Ans. 

    Use a hashmap to store the frequency of each number in the array.

    • Create a hashmap to store the frequency of each number in the array.

    • Iterate through the array and update the frequency in the hashmap.

    • Return the hashmap with the frequency of each number.

  • Answered by AI
  • Q2. Default Session time in PHP
  • Ans. 

    The default session time in PHP is 24 minutes.

    • Default session time in PHP is 24 minutes

    • Session time can be changed using the 'session.gc_maxlifetime' directive in php.ini file

    • Session time can also be set using the 'session_set_cookie_params()' function in PHP

  • Answered by AI
  • Q3. SQL - Get list of duplicate emails
  • Ans. 

    SQL query to retrieve duplicate email addresses from a table

    • Use GROUP BY and HAVING clause to identify duplicates

    • Select the email column and count the occurrences

    • Filter the results to show only emails with count greater than 1

  • Answered by AI
  • Q4. React useContext
  • Q5. CORS applications and how to enable it
  • Ans. 

    CORS allows web applications to make requests to a different domain than the one it originated from.

    • CORS is enabled on the server side by setting the 'Access-Control-Allow-Origin' header to specify which domains are allowed to make requests.

    • Options requests are sent by the browser to check if the server allows the actual request. The server should respond with the appropriate headers.

    • CORS can be configured to allow spe...

  • Answered by AI
  • Q6. How to fetch lakhs of records fast in an application?
  • Ans. 

    Use indexing, pagination, caching, and optimized queries to fetch large amounts of data quickly.

    • Utilize indexing on database columns to speed up search queries.

    • Implement pagination to limit the number of records fetched at once.

    • Use caching mechanisms to store frequently accessed data and reduce database load.

    • Optimize queries by selecting only necessary columns and avoiding unnecessary joins.

    • Consider using asynchronous ...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Why are you changing the current Company
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is Private Labelling
  • Q2. What is the Working of a BD
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Who is the 13 th president of india
  • Ans. 

    Pranab Mukherjee

    • Pranab Mukherjee served as the 13th President of India from 2012 to 2017.

    • He was a veteran politician and had previously held various key positions in the Indian government.

    • Pranab Mukherjee was known for his vast experience in public service and his diplomatic skills.

  • Answered by AI
  • Q2. How many president of india now
  • Ans. 

    There is currently one President of India.

    • The current President of India is Ram Nath Kovind.

    • The President of India serves as the head of state and is elected by an electoral college composed of elected members of both houses of Parliament and the Legislative Assemblies of the States.

    • The President's role is largely ceremonial, with executive powers being vested in the Prime Minister and their Council of Ministers.

  • Answered by AI
  • Q3. Which state is know as bowl of sugar
  • Ans. 

    Uttar Pradesh is known as the bowl of sugar in India due to its large production of sugarcane.

    • Uttar Pradesh is the largest producer of sugarcane in India

    • The state has numerous sugar mills and contributes significantly to the country's sugar production

    • The fertile soil and favorable climate in Uttar Pradesh make it ideal for sugarcane cultivation

  • Answered by AI
  • Q4. Who is first lady president of india
  • Ans. 

    There has not been a first lady president of India as the position of president is held by a male individual.

    • The President of India is the head of state and is a male individual.

    • The spouse of the President of India is referred to as the First Lady, but they do not hold the position of president themselves.

  • Answered by AI
  • Q5. Who is first lady prime minister of india
  • Ans. 

    Indira Gandhi was the first female Prime Minister of India.

    • Indira Gandhi served as the Prime Minister of India from 1966 to 1977 and then again from 1980 until her assassination in 1984.

    • She was the daughter of Jawaharlal Nehru, the first Prime Minister of India.

    • Indira Gandhi was known for her strong leadership and controversial decisions during her time in office.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your work happily and honestly
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. How to verbally instruct a client on performing the deadlift exercise without physical contact.
  • Ans. 

    Verbal cues for deadlift exercise without physical contact

    • Start by explaining the correct stance and grip to the client

    • Use cues like 'push through your heels' and 'keep your back straight'

    • Encourage the client to engage their core and hinge at the hips

    • Provide feedback on form and adjust cues as needed

  • Answered by AI
  • Q2. How would you advise a client who has come to you with the goal of losing weight for his upcoming marriage? He is seeking to reduce 15 kilograms within a one-month timeframe.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always listen to the question first and then pause to collect your thoughts before responding. Prepare your answer in your mind and deliver it clearly and confidently, without any hesitation. If necessary, provide an example to illustrate your point.

Inito (samplytics Technology Private Limited) Interview FAQs

How many rounds are there in Inito (samplytics Technology Private Limited) interview?
Inito (samplytics Technology Private Limited) interview process usually has 2-3 rounds. The most common rounds in the Inito (samplytics Technology Private Limited) interview process are Technical, Case Study and Assignment.
How to prepare for Inito (samplytics Technology Private Limited) 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 Inito (samplytics Technology Private Limited). The most common topics and skills that interviewers at Inito (samplytics Technology Private Limited) expect are Customer Relationship, BPO, Back Office, Biotechnology and Buying.
What are the top questions asked in Inito (samplytics Technology Private Limited) interview?

Some of the top questions asked at the Inito (samplytics Technology Private Limited) interview -

  1. rate in a maze was as...read more
  2. Asked to design a system to read logs from a file and send it to client. The lo...read more
  3. Explain to me the design project that you have written in your...read more

Tell us how to improve this page.

Inito (samplytics Technology Private Limited) Interview Process

based on 8 interviews

Interview experience

3.4
  
Average
View more

Interview Questions from Similar Companies

Tata 1mg Interview Questions
3.7
 • 146 Interviews
Practo Interview Questions
3.2
 • 74 Interviews
Cult.fit Interview Questions
3.7
 • 69 Interviews
HealthifyMe Interview Questions
3.0
 • 46 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
Medlife Interview Questions
3.7
 • 27 Interviews
Portea Medical Interview Questions
4.3
 • 26 Interviews
PhableCare Interview Questions
2.7
 • 9 Interviews
Lybrate Interview Questions
3.5
 • 5 Interviews
View all

Inito (samplytics Technology Private Limited) Reviews and Ratings

based on 7 reviews

3.4/5

Rating in categories

2.7

Skill development

3.1

Work-life balance

3.8

Salary

3.0

Job security

3.4

Company culture

2.9

Promotions

2.7

Work satisfaction

Explore 7 Reviews and Ratings
Software Engineer
8 salaries
unlock blur

₹16 L/yr - ₹25 L/yr

Data Scientist
6 salaries
unlock blur

₹9 L/yr - ₹20 L/yr

Talent Acquisition Specialist
5 salaries
unlock blur

₹8 L/yr - ₹11 L/yr

Software Developer
4 salaries
unlock blur

₹4.8 L/yr - ₹15 L/yr

Data Analyst
4 salaries
unlock blur

₹2.9 L/yr - ₹4 L/yr

Explore more salaries
Compare Inito (samplytics Technology Private Limited) with

PhableCare

2.7
Compare

Lybrate

3.5
Compare

Practo

3.2
Compare

Portea Medical

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