Upload Button Icon Add office photos

Filter interviews by

ITDOSE INFOSYSTEMS Software Developer Interview Questions and Answers

Updated 29 Mar 2025

ITDOSE INFOSYSTEMS Software Developer Interview Experiences

6 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
  • Q1. This company is very bad. It would be better not to work in this company than to work here. It is so bad that I can't even explain. I used to work here, and they never told me anything, and they forced me ...
  • Q2. This company is very bad. It would be better not to work in this company than to work here. It is so bad that I can't even explain. I used to work here, and they never told me anything, and they forced me ...

Interview Preparation Tips

Interview preparation tips for other job seekers - This company is very bad. It would be better not to work in this company than to work here. It is so bad that I can't even explain. I used to work here, and they never told me anything, and they forced me to do excessive work. The HR made my life miserable. My request to you all is that before joining this company, talk to those who are already working here to understand how things are done here. I request everyone to find out about the company before joining because I don’t want anyone else to go through what I went through.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Assignment 

Basic crud using jQuery only in which insert the record in html table and sr no auto increment with delete button in same row and row up/button in 1 hour. This was on anydesk.

Round 2 - Technical 

(3 Questions)

  • Q1. Object oriented programming
  • Q2. C# question like routing, delegates,MVC, view types, asynchronous programming
  • Q3. Asked to write some SQL queries on notepad like inner join, join on 4 tables , indexing etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare c# ,SQL and OOPS interview questions from interview bit

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 Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Validate Binary Tree Nodes Problem You are provided with 'N' bina ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Crud opeation only javascript, jquery not database and up and down row with javascript and jquery

Interview Preparation Tips

Interview preparation tips for other job seekers - practise crud only using javascript and jquery not using backedn language and also knowlege in javascript as like table up and down rows
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Referral

Round 1 - Coding Test 

Doing Assignment of Crud.

Round 2 - Technical 

(1 Question)

  • Q1. Question related to your technical skills.
Round 3 - HR 

(1 Question)

  • Q1. Why u choose this company?

ITDOSE INFOSYSTEMS interview questions for designations

 Software Implementation Engineer

 (1)

 Functional Consultant

 (2)

Interview Questionnaire 

1 Question

  • Q1. Asp.net with ajax crud operation
  • Ans. 

    ASP.NET with AJAX allows for easy implementation of CRUD operations.

    • Use AJAX to perform CRUD operations without refreshing the page

    • ASP.NET provides built-in controls for easy data binding and manipulation

    • Implement server-side validation to ensure data integrity

    • Use jQuery to simplify AJAX calls and manipulate DOM elements

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on sql basics join, having groupby, orderby

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Jan 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic asp.net and Sql
  • Q2. Basic Oops and jQuery
Round 2 - Coding Test 

Crud Operation using only jQuery

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basic oops and asp.net and some jQuery

Interview questions from similar companies

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: Test
Experience: The first round had two programming questions and one question of database concepts.
Duration: 1 hour
Total Questions: 3

Round: Technical Interview
Experience: In the first technical interview, I was asked basic questions about the domain and my resume. There was also a lot of emphasis on problem solving abilities since I was asked to solve some puzzles.

Round: Technical Interview
Experience: The second technical interview was a written round where I was asked to code some searching / sorting variants , to test my ability to write quality code.

Round: Technical Interview
Experience: The last and the final round was probably the toughest and I was asked to design databases, with some constraints. I was given ample time to do it and it did take a lot of time. After that, we had some interesting questions about data structures and trees and that was it.

College Name: RNSIT, Bangalore
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. In trend java questions
Round 3 - Technical 

(1 Question)

  • Q1. Advance java questions, questions related to microservice and java 8
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between an abstract class and an interface in object-oriented programming?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have method implementations, while interface cannot.

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

    • Interfaces are used to define contracts for classes to implement, while abstract classes are used to provide a common base for subclasses.

    • Example: Abstr...

  • Answered by AI
  • Q2. Abstract classes can have implemented methods; interfaces can only have declarations (before JAVA 8).

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay updated with the latest tools and technologies in your field to remain competitive.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. How do you handle debugging in your code?
  • Ans. 

    I use print statements, logging, and debugging tools to identify and fix issues in my code.

    • I start by reviewing the code and understanding the logic behind it.

    • I use print statements to check the values of variables at different points in the code.

    • I utilize logging to track the flow of the program and identify any errors.

    • I use debugging tools like breakpoints and step-through debugging to pinpoint the exact location of ...

  • Answered by AI
  • Q2. What is your approach to optimizing a slow-running application?
  • Ans. 

    Identify bottlenecks, analyze code, optimize algorithms, utilize caching, and consider hardware upgrades.

    • Identify bottlenecks in the application by profiling and monitoring performance.

    • Analyze the code to find inefficient algorithms or database queries.

    • Optimize algorithms and data structures to improve efficiency.

    • Utilize caching mechanisms to reduce redundant computations.

    • Consider hardware upgrades such as increasing m

  • Answered by AI
  • Q3. What is the difference between functional and object-oriented programming?
  • Ans. 

    Functional programming focuses on functions and immutability, while object-oriented programming focuses on objects and encapsulation.

    • Functional programming uses pure functions that do not have side effects.

    • Object-oriented programming uses objects that encapsulate data and behavior.

    • In functional programming, data is immutable and functions are first-class citizens.

    • In object-oriented programming, objects can have state a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, research zazz's services, showcase your technical skills, communicate clearly, and prepare to discuss real-world problem-solving scenarios

ITDOSE INFOSYSTEMS Interview FAQs

How many rounds are there in ITDOSE INFOSYSTEMS Software Developer interview?
ITDOSE INFOSYSTEMS interview process usually has 1-2 rounds. The most common rounds in the ITDOSE INFOSYSTEMS interview process are Coding Test, Technical and HR.
How to prepare for ITDOSE INFOSYSTEMS 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 ITDOSE INFOSYSTEMS. The most common topics and skills that interviewers at ITDOSE INFOSYSTEMS expect are ASP.NET, .NET, C#, SQL and Web API.
What are the top questions asked in ITDOSE INFOSYSTEMS Software Developer interview?

Some of the top questions asked at the ITDOSE INFOSYSTEMS Software Developer interview -

  1. Asp.net with ajax crud operat...read more
  2. Asked to write some SQL queries on notepad like inner join, join on 4 tables , ...read more
  3. C# question like routing, delegates,MVC, view types, asynchronous programm...read more

Tell us how to improve this page.

ITDOSE INFOSYSTEMS Software Developer Interview Process

based on 4 interviews

Interview experience

3.5
  
Good
View more
ITDOSE INFOSYSTEMS Software Developer Salary
based on 81 salaries
₹1.5 L/yr - ₹5.5 L/yr
64% less than the average Software Developer Salary in India
View more details

ITDOSE INFOSYSTEMS Software Developer Reviews and Ratings

based on 19 reviews

3.6/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.0

Salary

3.4

Job security

3.7

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 19 Reviews and Ratings
Software Developer
81 salaries
unlock blur

₹1.5 L/yr - ₹5.5 L/yr

Software Engineer
24 salaries
unlock blur

₹1.2 L/yr - ₹6 L/yr

Implementation Engineer
21 salaries
unlock blur

₹2 L/yr - ₹4.2 L/yr

DOT NET Developer
14 salaries
unlock blur

₹2 L/yr - ₹5.2 L/yr

Senior Software Developer
11 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Explore more salaries
Compare ITDOSE INFOSYSTEMS with

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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