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 and Answers

Updated 6 Jul 2024
Popular Designations

11 Interview questions

A Full Stack Software Developer was asked 12mo ago
Q. What is an 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

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked 12mo ago
Q. What are 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 s...

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked 12mo ago
Q. How do you communicate between two APIs?
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

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked 12mo ago
Q. What is the difference between an API and a Web Service?
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...

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked 12mo ago
Q. What is the difference between a table variable and a 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 batche...

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked 12mo ago
Q. 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.

View all Full Stack Software Developer interview questions
An Android Developer was asked
Q. What are the basics of Kotlin?
Ans. 

Kotlin is a modern, statically typed programming language used for Android development, known for its conciseness and safety features.

  • Kotlin is fully interoperable with Java, allowing developers to use existing Java libraries.

  • It supports null safety, reducing the risk of NullPointerExceptions. Example: 'var name: String? = null' allows null values.

  • Kotlin has concise syntax, such as type inference. Example: 'val ag...

View all Android Developer interview questions
Are these interview questions helpful?
An Android Developer was asked
Q. 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.

  • Laun...

View all Android Developer interview questions
An Android Developer was asked 11mo ago
Q. 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.

View all Android Developer interview questions
An Android Developer was asked
Q. 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 acti...

View all Android Developer interview questions

GormalOne Interview Experiences

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.
  • Ans. 

    Create a .NET Core Web API for managing employee data with CRUD operations.

    • 1. Set up a new .NET Core Web API project using 'dotnet new webapi -n EmployeeApp'.

    • 2. Define an Employee model class with properties: Id, Name, Salary.

    • 3. Create an EmployeeController with methods for Create, Read, Update, and Delete operations.

    • 4. Use Entity Framework Core for data access and create a DbContext for the Employee model.

    • 5. Implement...

  • Answered by AI

Skills evaluated in this interview

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
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
  • Ans. 

    Kotlin is a modern, statically typed programming language used for Android development, known for its conciseness and safety features.

    • Kotlin is fully interoperable with Java, allowing developers to use existing Java libraries.

    • It supports null safety, reducing the risk of NullPointerExceptions. Example: 'var name: String? = null' allows null values.

    • Kotlin has concise syntax, such as type inference. Example: 'val age = 2...

  • Answered by AI
  • 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

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

Top trending discussions

View All
Interview Tips & Stories
5d (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 GormalOne?
Ask anonymously on communities.

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

Are these interview questions helpful?
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 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 appeared for an interview in Dec 2016.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself tell me about your internship My interview was unstructured(i.e based on your reply interviewer was asking Questions)

Interview Preparation Tips

Round: Test
Experience: Questions were very difficult and solving one Question gets you shortlisted for interview
I don't remember the Questions
Duration: 1 hour 30 minutes
Total Questions: 2

Skills: Internship Work, Inter Person Communication Skills
College Name: IIT Roorkee

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, Android, JSON, Javascript and Scrum.
What are the top questions asked in GormalOne interview?

Some of the top questions asked at the GormalOne interview -

  1. Create Web API Project .Net Core for EmployeeApp which contain id, name sala...read more
  2. What is coroutines? Launch mode of coroutin...read more
  3. Difference between Table variable and Temporary Ta...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.3/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.8
 • 150 Interviews
Cogoport Interview Questions
3.1
 • 53 Interviews
MyCaptain Interview Questions
3.1
 • 44 Interviews
HyperVerge Interview Questions
4.2
 • 26 Interviews
Treebo Hotels Interview Questions
3.2
 • 25 Interviews
View all

GormalOne Reviews and Ratings

based on 17 reviews

4.1/5

Rating in categories

4.0

Skill development

3.5

Work-life balance

4.1

Salary

4.3

Job security

4.1

Company culture

3.9

Promotions

4.2

Work satisfaction

Explore 17 Reviews and Ratings
Field Associate

Mumbai

0-2 Yrs

Not Disclosed

Senior Business Development Associate

Mumbai

1-4 Yrs

Not Disclosed

Senior Business Development Executive

Mumbai

1-4 Yrs

Not Disclosed

Explore more jobs
Business Analyst
5 salaries
unlock blur

₹1.2 L/yr - ₹7.4 L/yr

Software Developer
4 salaries
unlock blur

₹7 L/yr - ₹13 L/yr

Data Analyst
4 salaries
unlock blur

₹8 L/yr - ₹9 L/yr

Product Owner
4 salaries
unlock blur

₹9 L/yr - ₹12 L/yr

Technical Analyst
3 salaries
unlock blur

₹16 L/yr - ₹16.5 L/yr

Explore more salaries
Compare GormalOne with

Cogoport

3.1
Compare

Treebo Hotels

3.2
Compare

Arzooo.com

2.5
Compare

KrazyBee

3.7
Compare
write
Share an Interview