Upload Button Icon Add office photos

Filter interviews by

Sensight Technologies Interview Questions, Process, and Tips

Updated 25 Dec 2019

Sensight Technologies Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jun 2019. There was 1 interview round.

Interview Questionnaire 

10 Questions

  • Q1. Tell me about Push Notification and why we use it?
  • Ans. 

    Push Notification is a message that pops up on a mobile device. It is used to notify users about new content or events.

    • Push notifications are used to keep users engaged with an app.

    • They can be used to inform users about new content, updates, or events.

    • Push notifications can be personalized based on user preferences.

    • They can be sent even when the app is not open.

    • Examples include news alerts, social media notifications,

  • Answered by AI
  • Q2. What is Firebase and how to integrate with mobile application?
  • Ans. 

    Firebase is a mobile and web application development platform that provides real-time database, authentication, and hosting services.

    • Firebase provides a real-time database to store and sync data between clients

    • Firebase Authentication allows users to sign in to your app using different authentication methods

    • Firebase Cloud Messaging enables sending push notifications to users

    • Firebase Hosting provides a fast and secure wa...

  • Answered by AI
  • Q3. Memory Management in ios application for eg. ARC
  • Ans. 

    ARC is an automatic memory management system used in iOS applications.

    • ARC stands for Automatic Reference Counting.

    • It automatically manages the memory of objects in an iOS application.

    • It keeps track of the number of references to an object and deallocates it when there are no more references.

    • ARC is the default memory management system in iOS applications since iOS 5.

    • ARC reduces the risk of memory leaks and crashes cause

  • Answered by AI
  • Q4. Life cycle of application ?
  • Ans. 

    Application life cycle includes planning, development, testing, deployment, and maintenance.

    • Planning phase involves gathering requirements and creating a project plan.

    • Development phase involves coding and building the application.

    • Testing phase involves identifying and fixing bugs.

    • Deployment phase involves releasing the application to users.

    • Maintenance phase involves updating and maintaining the application.

    • Iterative pr...

  • Answered by AI
  • Q5. Design patterns in android and ios application development ?
  • Ans. 

    Design patterns are important in Android and iOS app development for efficient and scalable code.

    • MVC (Model-View-Controller) pattern is commonly used in both Android and iOS development.

    • Android also uses MVP (Model-View-Presenter) and MVVM (Model-View-ViewModel) patterns.

    • iOS uses the Delegate pattern for communication between objects and the Singleton pattern for creating a single instance of an object.

    • Other patterns u...

  • Answered by AI
  • Q6. Architecture of android and ios application
  • Ans. 

    Android and iOS applications have different architectures.

    • Android follows a layered architecture with four main components: activities, services, broadcast receivers, and content providers.

    • iOS follows a Model-View-Controller (MVC) architecture with three main components: models, views, and controllers.

    • Both architectures have their own unique features and advantages.

    • Android's architecture allows for more flexibility and...

  • Answered by AI
  • Q7. Tell me something about Shared Preference in Android
  • Ans. 

    SharedPreference is a key-value pair storage mechanism in Android.

    • Used to store small amounts of data

    • Data is stored in XML format

    • Can be accessed from any activity or fragment within the app

    • Can be used to store user preferences, login credentials, etc.

  • Answered by AI
  • Q8. How to use UserDefault in ios application
  • Ans. 

    UserDefault is used to store small amounts of data in key-value pairs in iOS applications.

    • Import UserDefault in your class

    • Set a value for a key using set(_:forKey:)

    • Retrieve a value for a key using object(forKey:)

    • Remove a value for a key using removeObject(forKey:)

  • Answered by AI
  • Q9. What is Beacon?
  • Q10. How to integrate Bluetooth Low Energy with android and ios application?
  • Ans. 

    Bluetooth Low Energy can be integrated with Android and iOS apps using Bluetooth APIs and libraries.

    • Use BluetoothGatt API for Android and CoreBluetooth framework for iOS

    • Implement BluetoothGattCallback for Android and CBCentralManagerDelegate for iOS

    • Use UUIDs to identify services and characteristics

    • Handle Bluetooth permissions and enable Bluetooth on devices

    • Test the integration with Bluetooth Low Energy devices

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident and try to get the depth knowledge of any topic.

Skills evaluated in this interview

Top Sensight Technologies Software Engineer Interview Questions and Answers

Q1. How to integrate Bluetooth Low Energy with android and ios application?
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (219)

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1.  related to your business you asked questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview the ability of a person to be recognized by person quality human nature.

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

Interview Questionnaire 

2 Questions

  • Q1. Job profile
  • Q2. Describe yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Was nice and friendly atmosphere

I applied via Recruitment Consultant and was interviewed in Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions are about fresh department only

Interview Preparation Tips

Interview preparation tips for other job seekers - You should know about fresh department

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    0/1 Knapsack Problem Statement

    A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...

  • Ans. 

    Yes, the 0/1 Knapsack problem can be solved using dynamic programming with a space complexity of not more than O(W).

    • Use a 1D array to store the maximum value that can be stolen for each weight capacity from 0 to W.

    • Iterate through each item and update the array based on whether including the item would increase the total value.

    • The final value in the array at index W will be the maximum value that can be stolen.

  • Answered by AI
  • Q2. 

    Find the Second Largest Element

    Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.

    If a second largest element does not exist, return -1.

    Example:

    Input:
    ARR = [2,...
  • Ans. 

    Find the second largest element in an array of integers.

    • Iterate through the array to find the largest and second largest elements.

    • Handle cases where all elements are identical.

    • Return -1 if a second largest element does not exist.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

System Design Round

  • Q1. Design a system for Twitter, discussing its architecture, key components, and scalability considerations.
  • Ans. 

    Design a scalable system for Twitter with key components and architecture.

    • Use microservices architecture for scalability and fault isolation.

    • Key components include user service, tweet service, timeline service, and notification service.

    • Use a distributed database like Cassandra for storing tweets and user data.

    • Implement a message queue like Kafka for handling real-time updates and notifications.

    • Use a caching layer like ...

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

It is just a formality

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaResume shortlistingSwiggy interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, DBMS, SQL,Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : System Design
Tip 2 : Practice questions from leetcode
Tip 3 : Have some projects.

Application resume tips for other job seekers

Tip 1 : Mention what you know 
Tip 2 : Good previous work to showcase

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Introduction

I applied via Internshala and was interviewed in Jun 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why do you want to work at ambition box?
  • Ans. 

    I want to work at Ambition Box because of its innovative work culture and opportunities for growth.

    • Innovative work culture

    • Opportunities for growth

    • Positive company reputation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied through internshala, and got shortlisted in a few days. Then i had a telephonic interview. After that, there was one F2F interview in the company office. in couple of days, i was selected and received the offer letter.

I applied via Naukri.com and was interviewed in Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1) Tell About Yourself
  • Ans. 

    I am a motivated and enthusiastic individual with a strong passion for learning and gaining practical experience in the field of [field].

    • I am currently pursuing a degree in [field] at [university].

    • I have completed internships at [company] and [company], where I gained valuable skills in [specific skills].

    • I am proficient in [programming languages/tools] and have experience in [relevant experience].

    • I am a quick learner a...

  • Answered by AI
  • Q2. What are your future plans?
  • Ans. 

    I plan to gain valuable experience and skills through this internship and use it as a stepping stone for my future career.

    • I plan to learn as much as possible during this internship and apply the knowledge in my future endeavors.

    • I aim to develop strong professional relationships and network with industry experts.

    • I intend to explore different areas within the company to gain a well-rounded understanding of the business.

    • I...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1)Speak confidently.
2)Give honest answers.
3)Have a full knowledge about the company and your role in it.

I applied via Referral and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How can you understand the supply of restaurant in a particular area of a city ?
  • Ans. 

    To understand the supply of restaurants in a particular area of a city, we can use various methods.

    • Collect data from online directories like Yelp, Zomato, etc.

    • Conduct surveys to gather information about the number of restaurants in the area.

    • Analyze the population density and demographics of the area to estimate the demand for restaurants.

    • Check the number of restaurant permits issued by the local government.

    • Use GIS mapp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand any city's demographics for instance. Take most busy road and assume that 70% supply will be on food -tech (MArket Standard). Open Sw / Zo and see the supply available in that area in peak time. There can be more than one way to solve for these question

I applied via Naukri.com and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Work experience
  • Q2. R u comfertable traveling
  • Ans. 

    Yes, I am comfortable traveling for work.

    • I have experience traveling for work in my previous roles.

    • I am adaptable and enjoy exploring new places.

    • I am willing to travel for client meetings and conferences.

    • I understand the importance of face-to-face interactions in sales.

    • I am organized and can handle the logistics of travel efficiently.

  • Answered by AI
  • Q3. What is your study status
  • Q4. Graduate
  • Q5. Can u join immediatly
  • Q6. Will you able to sell product by showing them on thier phone screen on the app
  • Q7. This is something new,but India is going through digitalisation,so ofcourse that wouldnt be that problem.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good,i got selected,after two days i got a cl bck,and on 3 days i did my joining procedure

Sensight Technologies Interview FAQs

How to prepare for Sensight Technologies 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 Sensight Technologies. The most common topics and skills that interviewers at Sensight Technologies expect are Java, MySQL, Backend, Core Java and Design Patterns.
What are the top questions asked in Sensight Technologies interview?

Some of the top questions asked at the Sensight Technologies interview -

  1. How to integrate Bluetooth Low Energy with android and ios applicati...read more
  2. What is Firebase and how to integrate with mobile applicati...read more
  3. Tell me something about Shared Preference in Andro...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 434 Interviews
CARS24 Interview Questions
3.5
 • 337 Interviews
Udaan Interview Questions
3.9
 • 334 Interviews
Meesho Interview Questions
3.7
 • 333 Interviews
Zepto Interview Questions
3.5
 • 240 Interviews
BlackBuck Interview Questions
3.8
 • 180 Interviews
AmbitionBox Interview Questions
4.9
 • 153 Interviews
Tata 1mg Interview Questions
3.6
 • 151 Interviews
Digit Insurance Interview Questions
3.9
 • 146 Interviews
Paisabazaar.com Interview Questions
3.4
 • 142 Interviews
View all

Sensight Technologies Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

1.0

Skill development

4.0

Work-life balance

2.0

Salary

2.0

Job security

3.0

Company culture

2.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Compare Sensight Technologies with

Udaan

3.9
Compare

Swiggy

3.8
Compare

CARS24

3.5
Compare

BlackBuck

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