Upload Button Icon Add office photos

Entab Infotech

Compare button icon Compare button icon Compare

Filter interviews by

Entab Infotech Software Developer Interview Questions and Answers

Updated 8 Jul 2024

Entab Infotech Software Developer Interview Experiences

6 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Array conversion
  • Q2. Cloud Computing
Round 1 - One-on-one 

(1 Question)

  • Q1. What is model view controller in mvc
  • Ans. 

    MVC is a software design pattern that separates an application into three interconnected components: Model, View, and Controller.

    • Model represents the data and business logic of the application

    • View is responsible for rendering the user interface

    • Controller handles user input and updates the model and view accordingly

    • MVC promotes separation of concerns and modularity

    • MVC is widely used in web development frameworks like Ru...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Sql server questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Read ambitionbox reviews carefully first. Ask for the technology you get to work. Ask for Exact criteria for increment. Ask for internet availability for you.

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. What is MVC and .net core how differ from
  • Ans. 

    MVC is a design pattern used in software development to separate concerns, while .NET Core is a cross-platform, open-source framework for building modern, cloud-based, internet-connected applications.

    • MVC stands for Model-View-Controller, which separates the application into three main components: the model (data), the view (user interface), and the controller (logic)

    • .NET Core is a cross-platform, open-source framework ...

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Basic asp.net mvc questions Sql queries Oops concepts
  • Q2. 1. Abstraction, encapsulation, polymorphism, inheritance with examples
  • Q3. 2. Nth higest salary
  • Ans. 

    Find the Nth highest salary from a list of salaries in a database or array.

    • Use SQL query: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET N-1;

    • In programming, sort the array and access the N-1 index: salaries.sort(); return salaries[salaries.length - N];

    • Handle edge cases: If N is greater than the number of unique salaries, return null or an appropriate message.

    • Consider performance: For large da...

  • Answered by AI
  • Q4. 3. Cross join and compare with other joins
  • Ans. 

    Cross join returns all possible combinations of rows from two tables. It differs from other joins in that it does not use any join condition.

    • Cross join is also known as Cartesian join.

    • It is used when we want to combine all rows from two tables.

    • It does not require any join condition.

    • It can result in a large number of rows if the tables being joined are large.

    • Other joins like inner join, left join, right join, etc. requi...

  • Answered by AI
  • Q5. 4. Store procedure vs function differences
  • Ans. 

    Stored procedures and functions are both database objects used to encapsulate and execute code, but they have some differences.

    • Stored procedures can return multiple result sets, while functions can only return a single value.

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

    • Stored procedures can modify data in the database, while functions cannot.

    • Functions can be used in computed columns, while...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Entab Infotech Software Developer interview:
  • SQL
  • OOPS
  • ASP.Net
  • MVC
Interview preparation tips for other job seekers - 1. Focus on basic fundamental of asp.net mvc
2. Practice sql query questions

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions regarding SQL and MVC

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are applying for a fresher post just keep your basics up and nervousness down !!

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

Interview Questionnaire 

3 Questions

  • Q1. Basic questions about .Net MVC(Routing,Life Cycle, Model,Controller,View,Sessions,Cookies,View Bag,ViewData,View Engines)
  • Q2. SQL Server:- Stored Procedures, CRUD Operations, Diffrence between Procedure and function, Diff b/w (Char,Varchar,Nchar,Nvarchar), Projects you have done, JavaScript basics and Also asked about jQuery just...
  • Q3. Also polish your OOP concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - I was interviewed at Okhla office and interviewer was nice. As a fresher they will ask you only basic questions.
Interview lasted about 20-25 min
Prepare well.
Good luck.

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Entab Infotech?
Ask anonymously on communities.

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is OOPS concepts.
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

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

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detail...

  • Answered by AI
  • Q2. What is PDO and uses in PHP.
  • Ans. 

    PDO stands for PHP Data Objects, a database access layer providing a uniform method of access to multiple databases.

    • PDO is a PHP extension that provides a data-access abstraction layer.

    • It supports multiple database systems like MySQL, PostgreSQL, SQLite, etc.

    • PDO helps prevent SQL injection attacks by using prepared statements.

    • It allows for error handling and supports transactions.

    • Example: $pdo = new PDO('mysql:host=loc...

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic coding and MySQL queries. Like Types of join, having and where difference etc.

Round 2 - HR 

(1 Question)

  • Q1. Salary Discussion.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Hard test dsa question practice more leetcode

Round 3 - One-on-one 

(1 Question)

  • Q1. Dsa question Array Powershell scripting Cpp Python
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 Jan 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 

Aptitude test was first round. it was hard level

Round 3 - Coding Test 

Program on string, oops , exception handling

Interview Preparation Tips

Interview preparation tips for other job seekers - do your best. keep doing hardwork. practise as much as you can.

Entab Infotech Interview FAQs

How many rounds are there in Entab Infotech Software Developer interview?
Entab Infotech interview process usually has 1-2 rounds. The most common rounds in the Entab Infotech interview process are One-on-one Round and Technical.
How to prepare for Entab Infotech Software Developer interview?
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 Entab Infotech. The most common topics and skills that interviewers at Entab Infotech expect are Javascript, MVC and SQL Server.
What are the top questions asked in Entab Infotech Software Developer interview?

Some of the top questions asked at the Entab Infotech Software Developer interview -

  1. 4. Store procedure vs function differen...read more
  2. 3. Cross join and compare with other jo...read more
  3. What is MVC and .net core how differ f...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 2 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more
Entab Infotech Software Developer Salary
based on 107 salaries
₹2.2 L/yr - ₹8 L/yr
53% less than the average Software Developer Salary in India
View more details

Entab Infotech Software Developer Reviews and Ratings

based on 21 reviews

3.4/5

Rating in categories

3.1

Skill development

3.3

Work-life balance

3.0

Salary

3.3

Job security

3.1

Company culture

3.1

Promotions

3.2

Work satisfaction

Explore 21 Reviews and Ratings
Software Developer
107 salaries
unlock blur

₹2.2 L/yr - ₹8 L/yr

Technical Support Executive
83 salaries
unlock blur

₹1.9 L/yr - ₹4.2 L/yr

Software Consultant
47 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Technical Support Engineer
41 salaries
unlock blur

₹1.9 L/yr - ₹4 L/yr

Software Engineer
30 salaries
unlock blur

₹2 L/yr - ₹6.3 L/yr

Explore more salaries
Compare Entab Infotech with

Planet Spark

3.8
Compare

Unacademy

3.0
Compare

Extramarks Education

3.5
Compare

Vedantu

3.4
Compare
write
Share an Interview