Upload Button Icon Add office photos
Engaged Employer

i

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

EBA SOLUTIONS Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

EBA SOLUTIONS Full Stack Developer Interview Questions and Answers

Updated 7 Jun 2021

EBA SOLUTIONS Full Stack Developer Interview Experiences

Interview questions from similar companies

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

I applied via Company Website and was interviewed before Feb 2023. There were 4 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What is closure
  • Ans. 

    Closure is a feature in programming languages that allows a function to access variables from its outer scope even after it has finished executing.

    • Closure is created when a nested function references variables from its parent function.

    • It allows for data encapsulation and privacy in JavaScript.

    • Closures are commonly used in event handlers, callbacks, and asynchronous programming.

    • They can be used to create private variabl...

  • Answered by AI
  • Q2. How JS handles hoisting
  • Ans. 

    JS hoisting is a mechanism where variable and function declarations are moved to the top of their scope during compilation.

    • Variable declarations are hoisted but not their initializations.

    • Function declarations are fully hoisted, including their definitions.

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

    • Example: console.log(x); var x = 5; // Output: undefined

  • Answered by AI
  • Q3. What are the different CSS position properties
  • Ans. 

    CSS position properties determine how an element is positioned on a web page.

    • static: default position, elements flow in document order

    • relative: positioned relative to its normal position

    • absolute: positioned relative to its nearest positioned ancestor

    • fixed: positioned relative to the browser window

    • sticky: positioned based on scroll position

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What are the different component lifecycles in react
  • Ans. 

    React has several component lifecycles, including mounting, updating, and unmounting.

    • Mounting: when a component is being created and inserted into the DOM

    • Updating: when a component is being re-rendered due to changes in props or state

    • Unmounting: when a component is being removed from the DOM

  • Answered by AI
  • Q2. What is the use of ref in react
  • Ans. 

    Ref is used in React to access and manipulate the DOM directly.

    • Ref provides a way to access and modify DOM elements or React components.

    • It is commonly used for focusing input fields, triggering animations, or integrating with third-party libraries.

    • Ref can be created using the useRef() hook or by using the ref attribute in class components.

    • Example: const inputRef = useRef();

    • Example: const button

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Design the DB for slack
  • Ans. 

    Designing the database for Slack

    • Create tables for users, channels, messages, and teams

    • Use foreign keys to establish relationships between tables

    • Include columns for user details, channel details, message content, and timestamps

    • Consider indexing frequently queried columns for performance optimization

  • Answered by AI
  • Q2. How will you improve the db performanc
  • Ans. 

    To improve db performance, optimize queries, use indexing, cache data, and scale horizontally.

    • Optimize queries by using appropriate indexes and avoiding unnecessary joins

    • Cache frequently accessed data to reduce database load

    • Scale horizontally by distributing the database across multiple servers

    • Use database monitoring tools to identify and resolve performance bottlenecks

  • Answered by AI
Round 4 - Technical 

(3 Questions)

  • Q1. Explain the projects that you worked on
  • Q2. What is CDN and list its uses
  • Ans. 

    CDN stands for Content Delivery Network. It is a distributed network of servers that helps deliver web content efficiently.

    • CDN improves website performance by caching content closer to the user

    • It reduces latency and improves page load times

    • CDN helps handle high traffic loads and prevents server overload

    • It provides global coverage and ensures content availability worldwide

    • CDN can deliver various types of content like im...

  • Answered by AI
  • Q3. How will improve the api latency of a system
  • Ans. 

    To improve API latency, optimize database queries, use caching, implement load balancing, and optimize code.

    • Optimize database queries by using indexes, reducing unnecessary joins, and optimizing query execution plans.

    • Implement caching to store frequently accessed data in memory, reducing the need for repeated database queries.

    • Use load balancing to distribute incoming requests across multiple servers, preventing any sin...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're looking for FE/Fullstack roles, be strong with the basics of JS and React

Skills evaluated in this interview

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. They questioned me about backend-to-front-end connections.
Round 2 - HR 

(1 Question)

  • Q1. We discussed the fundamentals like my experience, resume, my future plans, and then the compensation package.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know the company well and be clear about your role and the reasons to join.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Reasoning , maths , coding, english

Round 2 - Coding Test 

Java python css c programming sql, html.

Interview Preparation Tips

Interview preparation tips for other job seekers - No comments
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

MCQ - 20 (aptitude), 20(c+ and sql)

Round 2 - Coding Test 

Pattern, array and sql questions

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

(2 Questions)

  • Q1. Intro about Experience
  • Q2. Knowledge on tools
Round 2 - One-on-one 

(2 Questions)

  • Q1. Sdfsfd kjdk dvfikjsf vsjv
  • Q2. Sdjvks sdkvjsk skdcj
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Assignment 

Giva a Full stack project. based on MERN AND MEAN stack

Round 2 - One-on-one 

(2 Questions)

  • Q1. Dsa , were easy to medium
  • Q2. Some backend and azure related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(15 Questions)

  • Q1. Oops Concept in c#
  • Ans. 

    Oops concept in C# refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

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

    • Encapsulation hides the internal state of an object and only exposes necessary information.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Abstraction focuses on...

  • Answered by AI
  • Q2. Manage and unmanaged code
  • Q3. Dependency injection
  • Q4. Filter and its type
  • Ans. 

    A filter is a tool used to select specific data from a larger set based on certain criteria.

    • Filters can be used in various programming languages and databases to narrow down results.

    • Types of filters include text filters, numeric filters, date filters, and custom filters.

    • Examples of filters include WHERE clause in SQL, filter() function in Python, and filter() method in JavaScript.

  • Answered by AI
  • Q5. View in sql server
  • Ans. 

    A view in SQL Server is a virtual table that contains the result set of a SELECT statement.

    • Views are used to simplify complex queries by storing them as a virtual table.

    • Views can be used to restrict access to specific columns or rows of a table.

    • Views can be created using the CREATE VIEW statement.

    • Example: CREATE VIEW vwEmployee AS SELECT FirstName, LastName FROM Employees;

  • Answered by AI
  • Q6. Primary key vs unique key
  • Ans. 

    Primary key uniquely identifies a record in a table, while unique key ensures uniqueness but allows null values.

    • Primary key enforces uniqueness and not null constraint on a column

    • Primary key can consist of multiple columns

    • Unique key enforces uniqueness but allows null values

    • Unique key can be applied to multiple columns as well

  • Answered by AI
  • Q7. Procedure vs function
  • Ans. 

    Procedures are a set of instructions that perform a specific task, while functions return a value after performing a task.

    • Procedures do not return a value, while functions do.

    • Functions can be called within expressions, while procedures cannot.

    • Functions are more versatile and reusable compared to procedures.

  • Answered by AI
  • Q8. Trigger in sql server
  • Ans. 

    A trigger in SQL Server is a special type of stored procedure that automatically executes when certain events occur in a database.

    • Triggers can be used to enforce business rules, audit changes, or replicate data.

    • There are two main types of triggers in SQL Server: DML triggers and DDL triggers.

    • DML triggers fire in response to data manipulation language (DML) events like INSERT, UPDATE, and DELETE.

    • DDL triggers fire in res...

  • Answered by AI
  • Q9. Interface in c#
  • Ans. 

    Interface in C# is a reference type that defines a contract for classes to implement certain methods and properties.

    • Interfaces cannot have implementation, only method signatures and properties.

    • Classes can implement multiple interfaces in C#.

    • Interfaces are used to achieve abstraction and multiple inheritance in C#.

    • Example: public interface IShape { void Draw(); }

    • Example: public class Circle : IShape { public void Draw()

  • Answered by AI
  • Q10. Abstract class vs interface
  • Ans. 

    Abstract class is a class that can have both abstract and non-abstract methods, while interface is a contract that defines methods that must be implemented by a class.

    • Abstract class can have constructor, fields, and methods, while interface cannot have any implementation.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes are used when some common functionality needs ...

  • Answered by AI
  • Q11. Partial view in.det
  • Ans. 

    Partial view in ASP.NET MVC allows reusing common UI elements across multiple views.

    • Partial views are like reusable components that can be included in multiple views

    • They help in reducing code duplication and improving maintainability

    • Partial views are rendered using Html.Partial or Html.RenderPartial methods

  • Answered by AI
  • Q12. Method overloading vs overriding
  • Ans. 

    Method overloading is having multiple methods in the same class with the same name but different parameters. Method overriding is redefining a method in a subclass with the same name and parameters as in the superclass.

    • Method overloading involves multiple methods with the same name but different parameters.

    • Method overriding involves redefining a method in a subclass with the same name and parameters as in the superclas...

  • Answered by AI
  • Q13. Union vs union all
  • Ans. 

    Union combines and removes duplicates, while union all combines all rows including duplicates.

    • Union removes duplicates, while union all includes duplicates.

    • Union is slower as it has to remove duplicates, while union all is faster.

    • Use union when you want to remove duplicates, use union all when duplicates are acceptable.

  • Answered by AI
  • Q14. Foreign key In sql
  • Ans. 

    Foreign key in SQL is a field in a table that links to a primary key in another table, enforcing referential integrity.

    • Foreign key constraints ensure data consistency between related tables

    • Foreign key values must exist in the referenced table's primary key column

    • Foreign key can be used to establish relationships between tables

  • Answered by AI
  • Q15. Constructor in c#
  • Ans. 

    Constructor in C# is a special type of method that is automatically called when an instance of a class is created.

    • Constructors have the same name as the class and do not have a return type.

    • They can be used to initialize the data members of the class.

    • Constructors can be overloaded to have multiple versions with different parameters.

    • Example: public class Person { public Person(string name) { this.Name = name; } }

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about your project
  • Q2. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Create a good resume and practice common interview questions and improve your logic using pattern printing and continuous learning.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Strecture of sql statement
  • Ans. 

    SQL statements are used to interact with databases by performing operations like querying, updating, and deleting data.

    • SQL statements are made up of keywords like SELECT, INSERT, UPDATE, DELETE, etc.

    • They are structured in a specific order, with clauses like WHERE, ORDER BY, GROUP BY, etc.

    • Tables are referenced using their names, and conditions are specified to filter data.

    • Joins can be used to combine data from multiple

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Feb 2023. 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 - Coding Test 

Basic questions like reverse a number, print Fibonacci series, character replacement

Round 3 - Technical 

(3 Questions)

  • Q1. Basic questions on .net framework, c# coding language
  • Q2. Advanced level questions on MySql and Linq.
  • Q3. What is the best approach to find the missing number from set of consecutive n numbers
  • Ans. 

    One approach is to calculate the sum of all numbers in the set and then subtract the sum of the given numbers to find the missing number.

    • Calculate the sum of all numbers in the set using the formula n*(n+1)/2, where n is the total number of elements in the set.

    • Calculate the sum of the given numbers in the set.

    • Subtract the sum of the given numbers from the sum of all numbers to find the missing number.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiation and document process. No questions.

Interview Preparation Tips

Topics to prepare for Keyideas Infotech Full Stack Software Developer interview:
  • Basic coding
  • MySQL Database Administration
  • ASP.Net
  • C#
Interview preparation tips for other job seekers - The coding test is taken by HR Executive so basic questions with correct answer with any approach will help.
Technical round is taken by CEO of the company and its quite question on question.

Skills evaluated in this interview

Tell us how to improve this page.

EBA SOLUTIONS Full Stack Developer Salary
based on 5 salaries
₹2 L/yr - ₹14.6 L/yr
8% less than the average Full Stack Developer Salary in India
View more details
Softwaretest Engineer
7 salaries
unlock blur

₹3.5 L/yr - ₹10 L/yr

Senior Process Associate
7 salaries
unlock blur

₹3.9 L/yr - ₹5.7 L/yr

Solution Developer
6 salaries
unlock blur

₹3.8 L/yr - ₹9 L/yr

Full Stack Developer
5 salaries
unlock blur

₹2 L/yr - ₹14.6 L/yr

Project Lead
5 salaries
unlock blur

₹16.1 L/yr - ₹18.3 L/yr

Explore more salaries
Compare EBA SOLUTIONS with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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