Upload Button Icon Add office photos

Filter interviews by

Genius Minds Consulting and Services Software Engineer Interview Questions and Answers

Updated 13 Dec 2023

Genius Minds Consulting and Services Software Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Dec 2022. There were 4 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 

(1 Question)

  • Q1. Basic technical questions
Round 3 - Technical 

(1 Question)

  • Q1. Advanced Technical Questions
Round 4 - HR 

(1 Question)

  • Q1. HR Discussion is final

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How does Django apply migrations to the database?
  • Ans. 

    Django applies migrations to the database using the 'manage.py migrate' command.

    • Django tracks changes to models and generates migration files accordingly.

    • The 'manage.py makemigrations' command creates migration files based on model changes.

    • The 'manage.py migrate' command applies the generated migration files to the database.

    • Migrations help keep the database schema in sync with the changes in Django models.

  • Answered by AI
  • Q2. What is hoisting in javascript?
  • Ans. 

    Hoisting in JavaScript is the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their assignments.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
Round 2 - Assignment 

Create a full stack application in 3 days.

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

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain microservices.
  • Q2. OOPS

Interview Preparation Tips

Interview preparation tips for other job seekers - This was a contract-based position, so just 1 round of interviews was conducted.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 5 interview rounds.

Round 1 - Coding Test 

F2f virtual coding round

Round 2 - One-on-one 

(2 Questions)

  • Q1. DSA questions were asked
  • Q2. Oops questions were asked
Round 3 - One-on-one 

(2 Questions)

  • Q1. Java questions were asked
  • Q2. Sql questions were asked
Round 4 - One-on-one 

(2 Questions)

  • Q1. System design questions were asked
  • Q2. LLM questions was asked
Round 5 - HR 

(2 Questions)

  • Q1. Behavioural questions were asked
  • Q2. Managerial questions were asked

Interview Preparation Tips

Topics to prepare for Goldman Sachs Software Engineer interview:
  • DSA
  • OOPS
  • Java
  • SQL
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What fifo? diff btwn fifo and lifo
  • Ans. 

    FIFO stands for First In, First Out. LIFO stands for Last In, First Out.

    • FIFO is a method for organizing and manipulating a data buffer, where the first element added is the first to be removed.

    • LIFO is a method where the last element added is the first to be removed.

    • FIFO is like a queue, while LIFO is like a stack.

    • Example: In a FIFO queue, if elements A, B, and C are added in that order, they will be removed in the same...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. C#, Angular,.net
  • Q2. SQl,Jobject,Bidning
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 features
  • Q2. Spring IOC
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Package discussion
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. SQL interview question
  • Q2. Stored Procedure and function differences
  • Ans. 

    Stored procedures are precompiled and stored in the database, while functions are compiled and stored in memory.

    • Stored procedures are precompiled and stored in the database for reuse.

    • Functions are compiled and stored in memory for faster execution.

    • Stored procedures can return multiple values, while functions return a single value.

    • Functions can be called from within a stored procedure, but stored procedures cannot be ca

  • Answered by AI
  • Q3. SQL query flow and window function they will ask

Interview Preparation Tips

Interview preparation tips for other job seekers - Good hands on SQL is required
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2023. There were 3 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 - Aptitude Test 

First time attend aptitude test .

Round 3 - Technical 

(5 Questions)

  • Q1. Any computer engineering basic questions
  • Q2. C,C++,java , python
  • Q3. What is inheritance.how many times of inheritance.
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Inheritance allows for code reusability and promotes the concept of 'is-a' relationship.

    • There are different types of inheritance such as single inheritance, multiple inheritance, multilevel inheritance, and hierarchical inheritance.

    • Example: Class B inheriting from Class A - 'class B: public A {}'

  • Answered by AI
  • Q4. How many characters are used in C.
  • Ans. 

    C uses a set of 128 characters, including letters, digits, special characters, and control characters.

    • C uses 26 letters (uppercase and lowercase), 10 digits (0-9), and various special characters like !, @, #, $, %, etc.

    • C also includes control characters like newline, tab, carriage return, etc.

    • The total number of characters used in C is 128.

  • Answered by AI
  • Q5. What is c. How many characters are used.
  • Ans. 

    C is a programming language known for its efficiency and flexibility. It uses 256 characters.

    • C is a high-level programming language used for system programming, embedded systems, and applications.

    • C uses 256 characters, including letters, digits, special characters, and whitespace.

    • Examples of characters in C include 'a', '1', '+', and ' '.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is react life cycle?

Genius Minds Consulting and Services Interview FAQs

How many rounds are there in Genius Minds Consulting and Services Software Engineer interview?
Genius Minds Consulting and Services interview process usually has 4 rounds. The most common rounds in the Genius Minds Consulting and Services interview process are Technical, Resume Shortlist and HR.
What are the top questions asked in Genius Minds Consulting and Services Software Engineer interview?

Some of the top questions asked at the Genius Minds Consulting and Services Software Engineer interview -

  1. Basic technical questi...read more
  2. Advanced Technical Questi...read more
  3. HR Discussion is fi...read more

Tell us how to improve this page.

Genius Minds Consulting and Services Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Genius Minds Consulting and Services Software Engineer Salary
based on 7 salaries
₹3 L/yr - ₹8.1 L/yr
28% less than the average Software Engineer Salary in India
View more details
Senior Software Engineer
8 salaries
unlock blur

₹6.2 L/yr - ₹21.7 L/yr

Software Engineer
7 salaries
unlock blur

₹3 L/yr - ₹8.1 L/yr

Software Developer
4 salaries
unlock blur

₹4 L/yr - ₹6.2 L/yr

Associate Software Engineer
4 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Java Developer
3 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Explore more salaries
Compare Genius Minds Consulting and Services with

Wipro

3.7
Compare

Infosys

3.6
Compare

Tech Mahindra

3.5
Compare

WNS

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