Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by EAZY ERP Business Solutions Team. If you also belong to the team, you can get access from here

EAZY ERP Business Solutions Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 87 Reviews

Filter interviews by

EAZY ERP Business Solutions VB.NET Developer Interview Questions and Answers

Updated 25 May 2022

EAZY ERP Business Solutions VB.NET Developer Interview Experiences

1 interview found

I applied via Company Website and was interviewed before May 2021. 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 

They have given me a task to complete.

Round 3 - One-on-one 

(1 Question)

  • Q1. Vb.net programming and database related questions
Round 4 - HR 

(1 Question)

  • Q1. Some basic questions and salary regarding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare for coding and interview round.

Interview questions from similar companies

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

I applied via campus placement at Galgotias College of Engineering and Technology, Greater Noida and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on DSA were asked by the interviewer at first.
  • Q2. Some theoretical questions from DBMS and oops and also asked to write some SQL queries.
Round 2 - Technical 

(2 Questions)

  • Q1. This round was also similar to the first technical round at first given a DSA question.
  • Q2. After that I was asked to write some SQL queries and also questions from resume were asked.
Round 3 - One-on-one 

(2 Questions)

  • Q1. This was managerial round which was was offline in person interview. At first he asked sone basic DBMS and oops questions.
  • Q2. Then gave me a question and asked me to write a complex SQL query.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up DSA and work on SQL queries.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Difference between function and stored procedure.
  • Ans. 

    Functions return a value while stored procedures do not. Functions can be used in SELECT statements, stored procedures cannot.

    • Functions return a value, stored procedures do not

    • Functions can be used in SELECT statements, stored procedures cannot

    • Functions must return a value, stored procedures may or may not

  • Answered by AI
  • Q2. Write a query to find the manager of the employee.
  • Ans. 

    Use a self join to find the manager of the employee.

    • Join the employee table with itself on the manager_id and employee_id columns

    • Select the manager's details based on the employee's manager_id

  • Answered by AI
  • Q3. To write a stored procedure.
  • Q4. What is trigger?
  • Ans. 

    A trigger 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, perform data validation, or maintain referential integrity.

    • Examples of trigger events include INSERT, UPDATE, and DELETE operations on a table.

    • Triggers can be defined to execute before or after the triggering event.

  • Answered by AI
  • Q5. What do you know about JSON?

Skills evaluated in this interview

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 May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Some Objective questions and 1 Coding Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Situation based questions on Coroutines
  • Q2. About Project Tech Stack Used and Questions on that
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Dsa based 2 question
  • Q2. 1 linked list 2 sliding window
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Sri Krishna College of Engineering and Technology, Coimbatore and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

We had 21 questions including 3 coding questions. It was simple and beginners friendly questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Questions were asked based on DBMS, SQL, api, simple coding and testing
Round 3 - Technical 

(1 Question)

  • Q1. I was asked to describe my projects and questions were asked based on that. Had scenario based questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 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 

(2 Questions)

  • Q1. Very easy basic questions enough to crack? Polymorphism? Inheritance?
  • Q2. Polymorphism Inheritance

I applied via Job Portal and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How html css and js be executed
  • Ans. 

    HTML, CSS, and JS are executed by the browser.

    • HTML is parsed and rendered into a Document Object Model (DOM)

    • CSS is applied to the DOM to style the content

    • JS is executed to add interactivity and manipulate the DOM

    • Browser engines like Blink, Gecko, and WebKit handle the execution

  • Answered by AI
  • Q2. When to use functional components and when to use class components (other than state management)
  • Ans. 

    Functional components are simpler and easier to test, while class components offer more features and lifecycle methods.

    • Use functional components for simple UI components

    • Use class components for more complex UI components

    • Functional components are easier to read and maintain

    • Class components offer more lifecycle methods and state management options

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from the basics of your favourite technology whether it is react or angular or js

Skills evaluated in this interview

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

The platform was HackerEarth time duration was 1 hour.
2 Coding questions were asked, 30 minutes for each were allotted.

  • Q1. 

    Longest Substring Without Repeating Characters Problem Statement

    Given a string S of length L, determine the length of the longest substring that contains no repeating characters.

    Example:

    Input:
    "abac...
  • Ans. Brute Force

    In the brute force approach, we will use two nested loops. The outer loop is used to select the starting index of the substring and the inner loop is used to fix the ending index of the substring. After selecting the substring, we will use another loop (or a method) to check whether the substring contains all unique characters or not using a HashSet.

    Space Complexity: O(n)Explanation:

    O(L), where L is the len...

  • Answered Anonymously
  • Q2. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Ans. Brute Force
    • The most trivial approach would be to find all triplets of the array and count all such triplets whose ‘SUM’ = 'K'.
    • We can find the answer using three nested loops for three different indexes and check if the values at those indexes sum up to 'K'.
    • Create a set  to keep the track of triplets we have visited. Run first loop from i = 0 to i = ‘N’ - 3, second loop from j = i + 1 to j = ‘N’ - 2 and third loop ...
  • Answered Anonymously
Round 2 - Video Call 

Round duration - 120 Minutes
Round difficulty - Hard

This was a 2 hours round, with the following problem statement. At the end of the allotted time you had give a demo and explain your implementation.

Round 3 - Video Call 

Round duration - 45 Minutes
Round difficulty - Medium

The platform was Zoom, time duration was 45 mins. Started with Tell me something about yourself. I told them, that I like solving algorithms and real life problems.

Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interviewer was very friendly. Asked few questions about myself and then asked questions about what I know about the company.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Guru Gobind Singh Indraprastha University. I applied for the job as SDE - Intern in MumbaiEligibility criteriaAbove 7 CGPABrowserStack interview preparation:Topics to prepare for the interview - Data Structures, Dynamic Programming, Trees, NodeJS, OOPS, OS, MySQLTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Participate in live contests on websites like Codechef, Codeforces etc as much as possible.
Tip 2 : Practice questions from leetcode as mostly questions were asked from that only.
Tip 3 : Revise Computer Science subjects like DBMS, OS & OOPS thoroughly, it'll help you ace last round
Tip 4 : Revise everything about your mentioned internship projects and self projects. Projects hold a great weight in selection.

Application resume tips for other job seekers

Tip 1 : Competitive programming profiles is a must. That'll help you get shortlisted.
Tip 2 : Resume should reflect development and experience in DSA.
Tip 3 : Be genuine in your skills and technologies section, question will be asked from them.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. State props,push notification.

EAZY ERP Business Solutions Interview FAQs

How many rounds are there in EAZY ERP Business Solutions VB.NET Developer interview?
EAZY ERP Business Solutions interview process usually has 4 rounds. The most common rounds in the EAZY ERP Business Solutions interview process are Resume Shortlist, Coding Test and One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 897 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
SAP Interview Questions
4.2
 • 306 Interviews
Salesforce Interview Questions
4.1
 • 271 Interviews
Ramco Systems Interview Questions
3.9
 • 64 Interviews
BrowserStack Interview Questions
3.7
 • 48 Interviews
View all
EAZY ERP Business Solutions VB.NET Developer Salary
based on 4 salaries
₹3.5 L/yr - ₹5.4 L/yr
98% more than the average VB.NET Developer Salary in India
View more details

EAZY ERP Business Solutions VB.NET Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Resident Engineer
20 salaries
unlock blur

₹1.2 L/yr - ₹3.5 L/yr

Project Coordinator
15 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Project Manager
13 salaries
unlock blur

₹4.2 L/yr - ₹12 L/yr

Software Developer
12 salaries
unlock blur

₹3.5 L/yr - ₹7.2 L/yr

DMS Executive
11 salaries
unlock blur

₹1.3 L/yr - ₹3.6 L/yr

Explore more salaries
Compare EAZY ERP Business Solutions with

Tally Solutions

4.2
Compare

SAP

4.2
Compare

Oracle

3.7
Compare

Microsoft Corporation

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