Upload Button Icon Add office photos

Filter interviews by

Glance Software Engineer Intern Interview Questions and Answers

Updated 28 Apr 2022

Glance Software Engineer Intern Interview Experiences

1 interview found

I appeared for an interview in Mar 2022.

Round 1 - HR 

(1 Question)

  • Q1. Introduction Call - General Intro call about graduation , projects
Round 2 - Technical 

(3 Questions)

  • Q1. Basics of OOPS concept
  • Q2. Android Development Past projects
  • Ans. 

    Developed an Android app for tracking daily expenses

    • Used Java and Android Studio for development

    • Implemented SQLite database for storing data

    • Included charts and graphs for visual representation of expenses

  • Answered by AI
  • Q3. Basics of Java and Kotlin
Round 3 - Behavioral 

(2 Questions)

  • Q1. Question asked based on resume, which was work on previous company specifically my contribution. which component I have worked on
  • Q2. Basics of android MMVM, XM Layout, Android Components, and basics in's and out of androi

Interview Preparation Tips

Interview preparation tips for other job seekers - I reject in 3rd round. I got nervous a little bit. and messed up the interview. Stay calm and relaxed and answer questions in short and to the point. if you don't know just mentioned it.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Aug 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic Questions only, Oops concept, Android basic questions, work manager related, MVVM pattern, why kotlin?

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a well-motivated place in terms of work, they are really making the best use of technology that they can. The interview can be clarified by someone who has clear basics of technology, how things are really moving in technology. They are only examining the basics of technology.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before May 2023.

Round 1 - Technical 

(1 Question)

  • Q1. DSA - level order traversal, sliding window.
Round 2 - One-on-one 

(1 Question)

  • Q1. Atomic transaction in distributed system
  • Ans. 

    Atomic transactions ensure that all operations in a transaction are completed successfully or none at all in a distributed system.

    • Atomic transactions guarantee that all operations within a transaction are either all successful or all rolled back.

    • In distributed systems, atomic transactions are crucial for maintaining data consistency across multiple nodes.

    • ACID properties (Atomicity, Consistency, Isolation, Durability) a...

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions about python, Sql, Basic coding questions
Round 2 - One-on-one 

(1 Question)

  • Q1. How will you handle exceptions in django framework. it was basic discussion round with the cto
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. React, React Native Basics
  • Q2. Coding Arrays & Objects

Interview Preparation Tips

Interview preparation tips for other job seekers - Better Experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was good, actually they asked parentheses balance question, Getting duplicate values , pallindrome question and also Target sum with O(n) TC.

Round 2 - HR 

(2 Questions)

  • Q1. Basic questions
  • Q2. Tell Me about yourself?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well the basics
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Sep 2022. There were 2 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 tips
Round 2 - Technical 

(3 Questions)

  • Q1. How many sorting algorithms you know? Explain any one of the algorithm (He told me for insertion sort)? Write the code for it and tell the complexity
  • Q2. Puzzle based on 9 coins puzzle
  • Q3. Explain about the Project and the technologies used in it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident. Questions are easy. You just need to highlight the best part of yr resume during the discussion. Also, read about the company before going for the interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Timing was late evening. Platform was good.

  • Q1. 

    Largest Cycle in Maze Problem Statement

    Given a maze represented by 'N' cells numbered from 0 to N-1, and an array arr of 'N' integers where arr[i] denotes the cell number that can be reached from the 'i'...

  • Ans. 

    Identify the length of the largest cycle in a maze represented by cells and an array of integers.

    • Iterate through each cell and find the cycle length using DFS or Floyd's Tortoise and Hare algorithm.

    • Handle self-cycles and cells with no exit by checking arr[i] = i and arr[i] = -1 respectively.

    • Output the length of the largest cycle found or -1 if no cycles exist.

  • Answered by AI
  • Q2. 

    Ninja and the Maze Problem Statement

    Ninja is stuck in a maze represented as a 2D grid. He can move in four directions (Up, Down, Left, Right) until he hits a wall ('1'). Once stopped, he can choose a new...

  • Ans. 

    Determine if Ninja can reach the destination in a maze by moving in four directions until hitting a wall.

    • Create a function to traverse the maze using depth-first search or breadth-first search.

    • Keep track of visited cells to avoid infinite loops.

    • Return 'True' if destination is reachable, 'False' otherwise.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 6 CGPAJUSPAY 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 some projects.
Tip 2 : Practice dynamic programming.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

Timing was late evening . Platform was good.

  • Q1. 

    Largest Cycle in Maze Problem Statement

    Given a maze represented by 'N' cells numbered from 0 to N-1, and an array arr of 'N' integers where arr[i] denotes the cell number that can be reached from the 'i'...

  • Ans. 

    Identify the length of the largest cycle in a maze represented by cells and an array of integers.

    • Iterate through each cell and find the cycle length using DFS or Floyd's Tortoise and Hare algorithm.

    • Keep track of visited cells to avoid infinite loops.

    • Return the length of the largest cycle found or -1 if no cycles exist.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 6 CGPAJUSPAY interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Do some projects
Tip 2 : Be good in data structure
 

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Don't try to add false things.

Final outcome of the interviewRejected

Glance Interview FAQs

How many rounds are there in Glance Software Engineer Intern interview?
Glance interview process usually has 3 rounds. The most common rounds in the Glance interview process are HR, Technical and Behavioral.
What are the top questions asked in Glance Software Engineer Intern interview?

Some of the top questions asked at the Glance Software Engineer Intern interview -

  1. Android Development Past proje...read more
  2. Basics of android MMVM, XM Layout, Android Components, and basics in's and out ...read more
  3. Basics of OOPS conc...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

MagicPin Interview Questions
2.6
 • 50 Interviews
Tokopedia Interview Questions
4.1
 • 25 Interviews
Meritto Interview Questions
3.6
 • 22 Interviews
JUSPAY Interview Questions
3.1
 • 21 Interviews
Furlenco Interview Questions
3.4
 • 21 Interviews
Melorra Interview Questions
3.2
 • 20 Interviews
Droom Interview Questions
3.8
 • 19 Interviews
AstroTalk Interview Questions
3.4
 • 19 Interviews
Nestaway Interview Questions
3.8
 • 18 Interviews
View all
Product Manager
19 salaries
unlock blur

₹20 L/yr - ₹46 L/yr

Software Development Engineer II
18 salaries
unlock blur

₹32 L/yr - ₹43 L/yr

Sub Editor
15 salaries
unlock blur

₹5 L/yr - ₹7.6 L/yr

Senior Product Analyst
15 salaries
unlock blur

₹12 L/yr - ₹31.2 L/yr

Software Development Engineer 3
14 salaries
unlock blur

₹36.3 L/yr - ₹52 L/yr

Explore more salaries
Compare Glance with

Awign Enterprises

3.9
Compare

DentalKart

3.5
Compare

Ketto

3.8
Compare

MagicPin

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