Upload Button Icon Add office photos
Engaged Employer

i

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

GormalOne Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

GormalOne Interview Questions, Process, and Tips

Updated 6 Jul 2024

Top GormalOne Interview Questions and Answers

View all 10 questions

GormalOne Interview Experiences

Popular Designations

4 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. Difference between Table variable and Temporary Table
  • Ans. 

    Table variables are created in memory and are scoped to the batch, while temporary tables are stored in tempdb and can be accessed across batches.

    • Table variables are created using DECLARE statement, while temporary tables are created using CREATE TABLE statement.

    • Table variables are limited to the scope of the batch or stored procedure in which they are declared, while temporary tables can be accessed across batches.

    • Tab...

  • Answered by AI
  • Q2. Difference between API and Web Services
  • Ans. 

    API is a set of rules and protocols that allows different software applications to communicate with each other. Web services are a type of API that are accessed over a network, typically using HTTP.

    • API is a broader term that encompasses all types of interfaces for software communication.

    • Web services are a specific type of API that are accessed over a network, often using HTTP protocols.

    • APIs can be used for various purp...

  • Answered by AI
  • Q3. How to Communicate Two API
  • Ans. 

    Communicate two APIs by using HTTP requests to send and receive data between them.

    • Use HTTP methods like GET, POST, PUT, DELETE to interact with APIs

    • Utilize JSON or XML format to send and receive data

    • Implement authentication mechanisms like API keys or OAuth for secure communication

  • Answered by AI
  • Q4. What is SQL Locks
  • Ans. 

    SQL locks are mechanisms used to control access to data in a database to prevent conflicts and ensure data integrity.

    • SQL locks are used to prevent multiple users from accessing or modifying the same data simultaneously.

    • There are different types of SQL locks such as shared locks, exclusive locks, and update locks.

    • Locks can be applied at different levels such as row-level, page-level, or table-level.

    • For example, a shared...

  • Answered by AI
  • Q5. Which SQL execution plan is better
  • Ans. 

    The SQL execution plan that is more efficient and utilizes indexes is better.

    • Look for execution plans that utilize indexes to minimize the number of rows scanned.

    • Avoid full table scans if possible, as they can be resource-intensive.

    • Consider the use of join algorithms like nested loops, hash joins, or merge joins for optimal performance.

  • Answered by AI
  • Q6. What is Identity Management System
  • Ans. 

    Identity Management System is a system used to manage and control user identities and access permissions within an organization.

    • It centralizes user data and permissions

    • It allows for single sign-on across multiple systems

    • It enhances security by enforcing access controls

    • Examples include Active Directory, Okta, and OneLogin

  • Answered by AI
  • Q7. Create Web API Project .Net Core for EmployeeApp which contain id, name salary etc... CRUD operation.

Skills evaluated in this interview

Top GormalOne Full Stack Software Developer Interview Questions and Answers

Q1. Difference between Table variable and Temporary Table
View answer (1)

Full Stack Software Developer Interview Questions asked at other Companies

Q1. Oops in Java Patterns in Java JDK,JRE,JVM MVC Array questions strings in Java This,super keywords Java problems like palindrome, prime number,and so many problems and logics Why java is platform independent Why java is not platform dependen... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Scope function in kotlin.
  • Ans. 

    Scope functions in Kotlin are functions that allow you to execute a block of code within the context of an object.

    • Scope functions include let, run, with, apply, and also.

    • They help in reducing boilerplate code and improving code readability.

    • For example, using 'apply' to initialize properties of an object.

  • Answered by AI
  • Q2. Work manger, Component of android

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Basic of android
  • Q2. Basics of kotlin
  • Q3. What is coroutines? Launch mode of coroutines.
  • Ans. 

    Coroutines are a way to perform asynchronous operations in a sequential manner. Launch modes include launch, async, and runBlocking.

    • Coroutines are lightweight threads that can be used for asynchronous programming in Kotlin.

    • Launch mode 'launch' starts a new coroutine and does not return any result.

    • Launch mode 'async' starts a new coroutine and returns a 'Deferred' object that can be used to retrieve the result.

    • Launch mo...

  • Answered by AI
  • Q4. OOPs concept of core java.
  • Ans. 

    OOPs concept in core Java refers to the principles of Object-Oriented Programming such as Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction:...

  • Answered by AI
  • Q5. LifeCycle of android.
  • Ans. 

    The Android lifecycle refers to the series of states an activity or fragment goes through from creation to destruction.

    • Android components like activities, services, and broadcast receivers have lifecycles.

    • The main lifecycle methods include onCreate(), onStart(), onResume(), onPause(), onStop(), and onDestroy().

    • Understanding the lifecycle is crucial for managing resources and handling state changes.

    • Example: An activity ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GormalOne Android Developer interview:
  • Android developer

Skills evaluated in this interview

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jun 2023. There were 5 interview rounds.

Round 1 - Coding Test 

Basic DSA + Tech stack

Round 2 - Coding Test 

Advanced questions related to Tech stack and project

Round 3 - Coding Test 

Basic DSA + project discussion

Round 4 - HR 

(1 Question)

  • Q1. Aptitude questions
Round 5 - One-on-one 

(1 Question)

  • Q1. One on one with Founder

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

GormalOne interview questions for popular designations

 Android Developer

 (2)

 Software Developer

 (1)

 Full Stack Software Developer

 (1)

Jobs at GormalOne

View all

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Group Discussion 

IOS vs Android
Conducted a group discussion about the of IOS vs Android for sixteen members present there.

Round 2 - HR 

(2 Questions)

  • Q1. Introduce Yourself.
  • Ans. 

    I am a passionate Android Developer with 5 years of experience in building mobile applications.

    • 5 years of experience in Android development

    • Proficient in Java and Kotlin programming languages

    • Strong understanding of Android SDK and design patterns

    • Experience with RESTful APIs and third-party libraries

    • Published apps on Google Play Store

  • Answered by AI
  • Q2. Why u want to join here?
  • Ans. 

    I am passionate about Android development and believe this company offers exciting opportunities for growth and innovation.

    • Passionate about Android development

    • Excited about growth and innovation opportunities

    • Believe company aligns with career goals

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

I applied via LinkedIn and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Group Discussion 

Discussion on latest topics

Round 2 - One-on-one 

(2 Questions)

  • Q1. Asked typical hr question
  • Q2. Avg no of cars in delhi
  • Ans. 

    The average number of cars in Delhi is estimated to be around 3 million.

    • Delhi has a high population density and traffic congestion, leading to a large number of cars on the roads.

    • The number of cars in Delhi is constantly increasing due to urbanization and economic growth.

    • Government initiatives like odd-even schemes and public transportation improvements aim to reduce the number of cars on the roads.

  • Answered by AI
Round 3 - Aptitude Test 

Medium or easy level aptitude were ther

Round 4 - Technical 

(2 Questions)

  • Q1. Asked about android development experience
  • Q2. 2 DSA question were to be solved

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare for best at your end
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Why Iphone sales are increasing

Round 2 - Aptitude Test 

15 qns 50 mins So WRITE FAST

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

I applied via Campus Placement and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Puzzel : There are 4 persons (A,B,C, and D) who wants to cross a bridge in night . A takes 1 minute to cross the bridge. B takes 2 minutes to cross the bridge. C takes 5 minute to cross the bridge. D takes...

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.

GormalOne Interview FAQs

How many rounds are there in GormalOne interview?
GormalOne interview process usually has 2 rounds. The most common rounds in the GormalOne interview process are Technical, Coding Test and HR.
How to prepare for GormalOne 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 GormalOne. The most common topics and skills that interviewers at GormalOne expect are HTML, JSON, Android, Javascript and Scrum.
What are the top questions asked in GormalOne interview?

Some of the top questions asked at the GormalOne interview -

  1. What is coroutines? Launch mode of coroutin...read more
  2. Difference between Table variable and Temporary Ta...read more
  3. Which SQL execution plan is bet...read more

Tell us how to improve this page.

GormalOne Interview Process

based on 4 interviews

Interview experience

3.3
  
Average
View more

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.9
 • 153 Interviews
Cogoport Interview Questions
2.9
 • 53 Interviews
MyCaptain Interview Questions
3.1
 • 42 Interviews
HyperVerge Interview Questions
4.3
 • 25 Interviews
Arzooo.com Interview Questions
2.4
 • 23 Interviews
Treebo Hotels Interview Questions
3.2
 • 22 Interviews
Qicpic Interview Questions
2.9
 • 19 Interviews
View all

GormalOne Reviews and Ratings

based on 12 reviews

4.2/5

Rating in categories

4.1

Skill development

3.7

Work-life balance

3.9

Salary

4.3

Job security

4.3

Company culture

3.9

Promotions

4.3

Work satisfaction

Explore 12 Reviews and Ratings
Field Associate

Mumbai

0-2 Yrs

Not Disclosed

Senior Business Development Executive

Mumbai

1-4 Yrs

Not Disclosed

Senior Business Development Associate

Mumbai

1-4 Yrs

Not Disclosed

Explore more jobs
Business Analyst
4 salaries
unlock blur

₹3 L/yr - ₹7.5 L/yr

Data Analyst
4 salaries
unlock blur

₹8 L/yr - ₹9 L/yr

Product Owner
4 salaries
unlock blur

₹9 L/yr - ₹14.5 L/yr

Senior Test Engineer
3 salaries
unlock blur

₹6.7 L/yr - ₹8.2 L/yr

Senior Software Developer
3 salaries
unlock blur

₹13.2 L/yr - ₹18 L/yr

Explore more salaries
Compare GormalOne with

Cogoport

2.9
Compare

Arzooo.com

2.4
Compare

KrazyBee

3.7
Compare

Treebo Hotels

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