Upload Button Icon Add office photos

Filter interviews by

Geval6 Senior Developer Interview Questions and Answers

Updated 3 Feb 2024

Geval6 Senior Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Design patterns
  • Q2. Absrtact Design
Round 2 - Technical 

(1 Question)

  • Q1. Coding on datastructure

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is angular Directives
  • Ans. 

    Angular Directives are markers on a DOM element that tell AngularJS's HTML compiler to attach a specified behavior to that DOM element.

    • Directives are used to create reusable components or custom behaviors in Angular applications.

    • They can be used to manipulate the DOM, add event listeners, show/hide elements, etc.

    • Examples include ngModel, ngIf, ngFor, etc.

  • Answered by AI
  • Q2. How to communicate with components
  • Ans. 

    Methods to communicate between components in Angular include Input and Output properties, ViewChild, Services, and Event Emitters.

    • Using Input and Output properties to pass data from parent to child components and emit events from child to parent components.

    • Using ViewChild to access child components from parent components.

    • Using Services to create a shared service that can be injected into multiple components to share da...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Linked list question to detect cycle
  • Q2. Basic questions from JS
Round 2 - Technical 

(2 Questions)

  • Q1. Some questions related to my projects
  • Q2. Some Questions related to my past experience
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. They ask me about my previous job description details and education details
  • Q2. About carrier goals
  • Q3. About my responsibility in side the current company
Round 2 - Technical 

(2 Questions)

  • Q1. They ask me about core concept of react js and next js
  • Q2. Ask me about core concepts of mongo Db and Node js
Round 3 - HR 

(1 Question)

  • Q1. They told me about company curriculum, goals and ethics

Interview Preparation Tips

Topics to prepare for HyScaler Junior Software Developer interview:
  • React.Js
  • Node.Js
  • MongoDB
  • Linux
Interview preparation tips for other job seekers - This is one of the most well structured company and they used latest technology to build product and services. Very supportive seniors and Hrs. So i highly recommend for job seekers to work in this company
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There is online aptitude test of 100 marks

Round 2 - One-on-one 

(2 Questions)

  • Q1. Coding question
  • Q2. Ask question related to DSA AND SQL
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning and Aptitude

Round 2 - Coding Test 

Functions with Pointers and strings concepts

Round 3 - Technical 

(2 Questions)

  • Q1. Mainly on Pointers and Dynamic Memory Allocation of 2-D Array
  • Q2. Structure Padding and Packing

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in depth in C and mainly on Bit-Manipulation.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Oops topic and aptitude

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

I applied via campus placement at Hindustan College of Science and Technology, Agra and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

1 round is coding round in pan paper test atleast 5 coding questions and some multiple questions and 1 DSA questions and 4 coding questions correct and dsa correct than interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Everything HTML CSS SQL and core java
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 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 

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

Geval6 Interview FAQs

How many rounds are there in Geval6 Senior Developer interview?
Geval6 interview process usually has 2 rounds. The most common rounds in the Geval6 interview process are Technical.
What are the top questions asked in Geval6 Senior Developer interview?

Some of the top questions asked at the Geval6 Senior Developer interview -

  1. Coding on datastruct...read more
  2. Design patte...read more
  3. Absrtact Des...read more

Tell us how to improve this page.

Project Manager
6 salaries
unlock blur

₹9 L/yr - ₹21.2 L/yr

Software Engineer
5 salaries
unlock blur

₹5 L/yr - ₹9.6 L/yr

Salesforce Developer
5 salaries
unlock blur

₹2 L/yr - ₹9.6 L/yr

Talent Management Executive
5 salaries
unlock blur

₹2.5 L/yr - ₹4.2 L/yr

Software Developer
4 salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Explore more salaries
Compare Geval6 with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview