Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by KGISL Team. If you also belong to the team, you can get access from here

KGISL Verified Tick

Compare button icon Compare button icon Compare
3.0

based on 667 Reviews

Filter interviews by

KGISL Hybrid Mobile Application Developer Interview Questions and Answers

Updated 14 Oct 2024

KGISL Hybrid Mobile Application Developer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Related experience
Round 2 - HR 

(1 Question)

  • Q1. Personal information

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Explain clean architecture
  • Ans. 

    Clean architecture is a software design approach that separates concerns and enforces a clear separation of responsibilities.

    • Separates code into layers (presentation, domain, data)

    • Dependence on abstractions rather than concrete implementations

    • Allows for easier testing and maintenance

    • Promotes scalability and flexibility

    • Example: MVP, MVVM, VIPER

  • Answered by AI
  • Q2. Explain mvvm acrhitecture
  • Ans. 

    MVVM is an architectural pattern that separates the UI, business logic, and data layers in an Android app.

    • Model - represents the data and business logic

    • View - UI components that display data and interact with the user

    • ViewModel - acts as a mediator between the Model and View, handling data operations and updating the UI

    • Data binding - connects the View and ViewModel, automatically updating the UI when data changes

  • Answered by AI
  • Q3. Explain SOLID principle
  • Ans. 

    SOLID is a set of five principles for writing clean, maintainable, and scalable object-oriented code.

    • Single Responsibility Principle: A class should have only one reason to change.

    • Open/Closed Principle: Classes should be open for extension but closed for modification.

    • Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness.

    • In...

  • Answered by AI

Skills evaluated in this interview

IOS Developer Interview Questions & Answers

NeoSOFT user image Tejaswini Kadam

posted on 7 Jun 2024

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

I applied via Company Website and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. GCD, Operation queue, struct vs class, some small logical coding ,
Round 2 - Technical 

(1 Question)

  • Q1. GCD, operation queue, URL Session tasks, ref type , value tyep,
Round 3 - HR 

(1 Question)

  • Q1. Basic and discussion about Job offer
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

45 minutes logical reasoing coding mocqs

Round 2 - Coding Test 

Not abale to sahre something yes do this wo this

Interview Preparation Tips

Interview preparation tips for other job seekers - be preapre
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 May 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference Between Dispatch Queue and OperationalQueue
  • Ans. 

    Dispatch Queue is a high-level API for managing concurrent operations, while OperationQueue is built on top of Dispatch Queue and adds additional features for managing operation objects.

    • Dispatch Queue is a lightweight way to execute tasks serially or concurrently, while OperationQueue is used to manage operation objects that represent tasks.

    • OperationQueue allows for dependencies between operations, while Dispatch Queue...

  • Answered by AI
  • Q2. SOLID Principle
Round 2 - Technical 

(1 Question)

  • Q1. Programming task

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident while answering the question

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Assignment 

Started with a normal assignment. A basic form application with few operation

Round 2 - Technical 

(5 Questions)

  • Q1. Javascript basics and React native
  • Q2. Closures,let var and const
  • Q3. Threads of javascript, Architecture
  • Ans. 

    Threads of javascript refer to the concept of asynchronous programming in JavaScript. Architecture in this context likely refers to the overall structure and organization of a React Native application.

    • JavaScript is single-threaded, meaning it can only execute one piece of code at a time. Asynchronous programming allows for non-blocking operations, improving performance and user experience.

    • React Native architecture typi...

  • Answered by AI
  • Q4. Storage, Secure storage, Offline app handling
  • Q5. Push notification, Camera, geomaps

Skills evaluated in this interview

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

Interview Questionnaire 

3 Questions

  • Q1. 1)what is intent.
  • Ans. 

    Intent is a messaging object used to request an action from another app component.

    • Intents facilitate communication between components in an app or between different apps.

    • They can be used to start activities, services, or broadcast receivers.

    • Intents can also carry data using extras and can specify the type of action to be performed using action and category.

    • Explicit intents specify the component to be invoked while impl...

  • Answered by AI
  • Q2. What is services
  • Ans. 

    Services are background processes that run independently of the UI and can perform long-running operations.

    • Services are used to perform tasks that should continue even when the app is not in the foreground.

    • They can be started and stopped by the app or by the system.

    • Examples include playing music in the background, downloading files, and syncing data.

    • Services can be bound to activities to allow communication between the...

  • Answered by AI
  • Q3. Which Architecture pattern you know
  • Ans. 

    I know about Model-View-Controller (MVC), Model-View-Presenter (MVP), and Model-View-ViewModel (MVVM) architecture patterns.

    • MVC separates the application into three components: Model, View, and Controller.

    • MVP separates the application into three components: Model, View, and Presenter.

    • MVVM separates the application into three components: Model, View, and ViewModel.

    • MVC, MVP, and MVVM are all commonly used in Android deve...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic should be clear. Introduce yourself.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Weak - Strong Difference
  • Ans. 

    Weak - Strong Difference is a common interview question to assess understanding of object-oriented programming concepts.

    • Weak references do not prevent the referenced object from being deallocated, while strong references do.

    • Weak references are used to avoid retain cycles in iOS development.

    • Strong references increase the retain count of an object, keeping it in memory until all strong references are released.

  • Answered by AI
  • Q2. Open - Public Difference
  • Ans. 

    In iOS development, 'open' allows access to the class or method from any module, while 'public' restricts access to the current module only.

    • Open access modifier allows classes and methods to be accessed from any module.

    • Public access modifier restricts access to the current module only.

    • Example: 'open class MyClass' can be accessed from any module, while 'public class MyClass' can only be accessed within the current modu

  • Answered by AI

I applied via Recruitment Consulltant and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Techincal basic questiin

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company.hr response is quick
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Scaler Carrera Hub and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The whole interview about DSA, oops database and your relevant text

Round 2 - Coding Test 

There is two interview around L1 and L2 L1 is about data structure and algorithm and oops. Concept in L2 interview is about all tach stack and resume Q&A, Ask about react, redux, Python DSA, oops, SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - The company has a positive culture, although the salary is lower. However, the job rules align well with my preferences.

KGISL Interview FAQs

How many rounds are there in KGISL Hybrid Mobile Application Developer interview?
KGISL interview process usually has 2 rounds. The most common rounds in the KGISL interview process are Technical and HR.

Tell us how to improve this page.

KGISL Hybrid Mobile Application Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 802 Interviews
NeoSOFT Interview Questions
4.0
 • 260 Interviews
View all
Associate
396 salaries
unlock blur

₹1.6 L/yr - ₹9.2 L/yr

Senior Associate
323 salaries
unlock blur

₹4.8 L/yr - ₹15 L/yr

Process Associate
272 salaries
unlock blur

₹1 L/yr - ₹4.1 L/yr

Junior Associate
190 salaries
unlock blur

₹1.3 L/yr - ₹5.4 L/yr

Senior Process Associate
177 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Explore more salaries
Compare KGISL with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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