Upload Button Icon Add office photos

Filter interviews by

Sensight Technologies Interview Questions and Answers

Updated 25 Dec 2019

9 Interview questions

A Software Engineer was asked
Q. What is the application lifecycle?
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.

  • Iterati...

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is Firebase and how do you integrate it with a 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 secu...

View all Software Engineer interview questions
A Software Engineer was asked
Q. Tell me something about Shared Preferences 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.

View all Software Engineer interview questions
A Software Engineer was asked
Q. How do you integrate Bluetooth Low Energy with Android and iOS applications?
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

View all Software Engineer interview questions
A Software Engineer was asked
Q. Tell me about Push Notifications and why we use them.
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 notificati...

View all Software Engineer interview questions
A Software Engineer was asked
Q. How do you use UserDefaults in an 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:)

View all Software Engineer interview questions
A Software Engineer was asked
Q. 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 ...

View all Software Engineer interview questions
Are these interview questions helpful?
A Software Engineer was asked
Q. 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 flexibilit...

View all Software Engineer interview questions
A Software Engineer was asked
Q. 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 patte...

View all Software Engineer interview questions

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 trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Sensight Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Sep 2021.

Round 1 - HR 

(1 Question)

  • Q1. Tell me something about your self and your previous organisation?
  • Ans. 

    Dynamic sales executive with 5 years of experience in driving revenue growth and building client relationships in the tech industry.

    • Worked at Tech Solutions Inc. as a Sales Executive, achieving 120% of my sales target in the last fiscal year.

    • Developed strong relationships with clients, resulting in a 30% increase in repeat business.

    • Implemented a new CRM system that improved lead tracking and follow-up efficiency by 40%...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Why you want to join this organisation?
  • Ans. 

    I am drawn to this organization for its innovative approach, strong values, and commitment to employee growth and customer satisfaction.

    • The organization's reputation for innovation aligns with my passion for staying ahead in sales strategies.

    • I admire your commitment to customer satisfaction, as seen in your recent award for outstanding service.

    • The emphasis on employee development through training programs resonates wit...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Never say ‚ u left ur previous organisation for growth.

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

Interview Questionnaire 

2 Questions

  • Q1. Are you happy?
  • Ans. 

    Happiness is a state of mind influenced by personal achievements, relationships, and a positive outlook on life.

    • I find joy in achieving sales targets, which motivates me to perform better.

    • Building strong relationships with clients brings me satisfaction and happiness.

    • I enjoy collaborating with my team, sharing successes, and learning from each other.

    • Personal growth through challenges in sales keeps me engaged and happy...

  • Answered by AI
  • Q2. Where you go when you make holiday
  • Ans. 

    I love exploring new cultures and relaxing on beautiful beaches during my holidays, often visiting places like Bali or the Amalfi Coast.

    • I enjoy beach destinations, such as Bali, for relaxation and water sports.

    • Cultural trips to cities like Paris or Rome allow me to immerse in history and art.

    • I also appreciate nature retreats, like hiking in the Swiss Alps or visiting national parks.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - when someone need job. no ask any question by interviewr

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

Interview Questionnaire 

5 Questions

  • Q1. Question 1)Tell me about yourself and qualifications?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and experience in web development.

    • Recent graduate with a degree in Computer Science

    • Experience in web development

    • Strong problem-solving skills

    • Proficient in programming languages such as Java, JavaScript, and HTML/CSS

  • Answered by AI
  • Q2. Question 2)What are your hobbies?
  • Ans. 

    My hobbies include reading, hiking, and playing the guitar.

    • Reading: I enjoy reading fiction and non-fiction books in my free time.

    • Hiking: I love exploring nature trails and challenging myself with new hikes.

    • Playing the guitar: I have been playing the guitar for several years and enjoy learning new songs.

  • Answered by AI
  • Q3. Question 3)What do you know about our company?
  • Ans. 

    Our company is a leading tech startup specializing in AI-driven solutions for businesses.

    • Specializes in AI-driven solutions for businesses

    • Considered a leading tech startup in the industry

    • Known for innovative and cutting-edge technology

    • Has a strong focus on research and development

    • Provides services to a wide range of industries

  • Answered by AI
  • Q4. Question 4) Why do you want to join our company?
  • Ans. 

    I want to join your company because of its innovative projects, strong company culture, and opportunities for growth.

    • Innovative projects that align with my interests and skills

    • Strong company culture that values collaboration and employee development

    • Opportunities for growth and advancement within the company

  • Answered by AI
  • Q5. Question 5) Tell me about your training and projects you have done in college?
  • Ans. 

    I completed various training programs and projects during my college years, gaining hands-on experience in different areas.

    • Completed a training program in data analysis using Python and R

    • Developed a mobile application for a class project using Java and Android Studio

    • Participated in a research project on renewable energy sources

    • Completed an internship at a local software company, working on web development projects

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Start by researching about the company and job profile you applied for. Practice common interview questions. Be confident. Ask questions at the end of the interview. Remember your CV details. Arrive on time and stay relaxed.

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

Interview Questionnaire 

3 Questions

  • Q1. How to increase business?
  • Ans. 

    To increase business, focus on customer satisfaction, expand marketing efforts, and offer promotions.

    • Improve customer service to increase customer satisfaction and loyalty

    • Expand marketing efforts through social media, email marketing, and targeted advertising

    • Offer promotions such as discounts, referral programs, and loyalty rewards

    • Analyze market trends and adjust business strategies accordingly

    • Collaborate with other bu...

  • Answered by AI
  • Q2. Case study and solutions to business problem
  • Q3. Experience

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 40 candidates and 2 posts were there,
The interview was ,
Written test,
Group discussion,
Interview with Manager.

You need to be prepared for ground level questions.

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I applied for an internship in your company through internshala.com . I got an email telling me that I was shortlisted it and now I have to fill this in order to move to the next round

I appeared for an interview in Jul 2017.

Interview Questionnaire 

1 Question

  • Q1. The first question was to introduce yourself and if have a past working experience then what was your profile in past internship?

Interview Preparation Tips

Round: Resume Shortlist
Experience: Hi, i applied from naukri.com for an internship in Ambition box and i got a mail that my resume got shortlisted and i have to revert them with my availability for an internship
Tips: always check your mail on time so that u don't miss it

Round: HR Interview
Experience: In the HR round u i was asked about my experience and learning about my previous internship and what do i know about digital marketing because that was my interest area.
Tips: Be confident and precise in your answers

Round: Test
Experience: i was asked to write about any topic in 15 minutes just to evaluate my writing skills and my idea of writing.
Tips: Be creative,quick and natural
Duration: 10 minutes
Total Questions: -3

Round: Group Activity
Experience: we have to present about in topic in front it can b any political or technical topic.so i present a technical topic
Tips: be confident,expressive and clear

Skills: Communication And Confidence, General Awareness, Inter Person Communication Skills, Interaction Skills
College Name: Babu Banarasi Das National Institute Of Technology And Management (BBDNITM)
Are these interview questions helpful?

I appeared for an interview in Jul 2017.

Interview Questionnaire 

3 Questions

  • Q1. Are You a Fresher? If not tell about your past working experience?
  • Ans. 

    Yes, I am a fresher with no past working experience.

    • I am a recent graduate looking to gain experience in the field.

    • I have completed internships or projects during my studies.

    • I am eager to learn and grow in a professional environment.

  • Answered by AI
  • Q2. What was your work profile in your past internship?
  • Ans. 

    I was responsible for conducting market research, creating social media content, and assisting with event planning.

    • Conducted market research to identify trends and opportunities

    • Created engaging social media content to increase brand awareness

    • Assisted in planning and executing events to promote company products/services

  • Answered by AI
  • Q3. Introduce yourself ?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Strong communication and teamwork skills

    • Experience with programming languages such as Java, Python, and C++

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Hi, i applied from naukri.com for internship in AmbitionBox.com..They checked my entire CV and checked about my eligibility criteria and then I got a mail stating .My resume has been shortlisted and i would get a call from Hr for the further steps.
Tips: Make your CV properly .

Round: HR Interview
Experience: In this round HR asked me about my working profile in my past internship..and about my likes ,dislikes and my skills and preffered working area.
Tips: Be cool ,be confident and be clear and interactive.

Round: Test
Experience: I was asked to read out my article...about the topic i chose to write..it can be any topic technical or political or anything ..i chose Movie reviews
Tips: write about the topic you know in details about. Be quick ,be clear
Duration: 10 minutes
Total Questions: -3

Round: Group Activity
Experience: In this round ,i was asked to prepare a presentation..about any topic you know in details about and share some news ideas
Tips: Be expressive and loud

Skills: Inter Person Communication Skills, Writing Skills, General Awareness, Self-Awareness
College Name: Babu Banarasi Das National Institute Of Technology And Management (BBDNITM)

Interview Preparation Tips

Round: Resume Shortlist
Experience: abt my work profile

General Tips: Be confident,be determined
Skills: Communication, Body Language, Problem Solving

I applied via Approached by Company and was interviewed in Jul 2017. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They call us for a face to face interview initially they interviewed about my personal intrest,hobbies

Interview Preparation Tips

Round: Resume Shortlist
Experience: On the basis of my profile at naukri.com

Round: Test
Experience: presentation round

General Tips: Be confident ,attentive and focussed.
Skills: Communication, Body Language, Leadership, Presentation Skills, Decision Making Skills
Duration: <1 week

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.7
 • 474 Interviews
Meesho Interview Questions
3.7
 • 368 Interviews
CARS24 Interview Questions
3.5
 • 361 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Zepto Interview Questions
3.5
 • 296 Interviews
BlackBuck Interview Questions
3.7
 • 194 Interviews
Tata 1mg Interview Questions
3.6
 • 186 Interviews
Digit Insurance Interview Questions
3.8
 • 158 Interviews
Paisabazaar.com Interview Questions
3.4
 • 154 Interviews
AmbitionBox Interview Questions
4.8
 • 150 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.7
Compare

CARS24

3.5
Compare

BlackBuck

3.7
Compare
write
Share an Interview