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 for Freshers

Updated 6 Jul 2024
Popular Designations

7 Interview questions

A Full Stack Software Developer was asked
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
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
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
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
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
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
A Full Stack Software Developer was asked
Q. Create a Web API project in .Net Core for an EmployeeApp, which contains id, name, salary, etc., and supports CRUD operations.
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. Impl...

View all Full Stack Software Developer interview questions
Are these interview questions helpful?

GormalOne Interview Experiences for Freshers

2 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
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
1w (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

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.
Are these interview questions helpful?

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

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)

GormalOne Interview FAQs

How many rounds are there in GormalOne interview for freshers?
GormalOne interview process for freshers usually has 3 rounds. The most common rounds in the GormalOne interview process for freshers are Coding Test, Technical and HR.
How to prepare for GormalOne interview for freshers?
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 Artificial Intelligence, C, Data Mining, Deep Learning and Linux.
What are the top questions asked in GormalOne interview for freshers?

Some of the top questions asked at the GormalOne interview for freshers -

  1. Create Web API Project .Net Core for EmployeeApp which contain id, name sala...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.

Overall Interview Experience Rating

2.5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
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 Executive

Mumbai

1-4 Yrs

Not Disclosed

Senior Business Development Associate

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.2
Compare

KrazyBee

3.7
Compare

Treebo Hotels

3.2
Compare

Arzooo.com

2.5
Compare
write
Share an Interview