Upload Button Icon Add office photos
Engaged Employer

i

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

Colan Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Colan Infotech DOT NET Developer Interview Questions and Answers

Updated 4 Aug 2024

Colan Infotech DOT NET Developer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Solid Principles and about Dependency Inversion
  • Q2. Diff between out and ref, Partial classes,
  • Ans. 

    out and ref are used for passing arguments by reference, while partial classes allow splitting a class definition into multiple files.

    • out keyword is used for passing arguments by reference and does not require the variable to be initialized before passing.

    • ref keyword is used for passing arguments by reference and requires the variable to be initialized before passing.

    • Partial classes allow splitting a class definition i...

  • Answered by AI
  • Q3. Interceptor in Angular, Observables
  • Ans. 

    Interceptors in Angular are used to intercept HTTP requests and responses.

    • Interceptors can be used to modify requests before they are sent and responses before they are received.

    • They can be used for tasks like adding headers, logging, error handling, etc.

    • Example: Creating an interceptor to add a token to every outgoing request for authentication.

  • Answered by AI
  • Q4. Write a program to print ***** (n=5) and next line 4*, then 3*... I did all theoretical questions well, but didnt complete this program, and in 5 minutes, he took the laptop and asked be to go back.
  • Ans. 

    Program to print decreasing number of asterisks in each line

    • Create a loop to iterate from n to 1

    • In each iteration, print the corresponding number of asterisks

    • Use a nested loop to print the asterisks in each line

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study basic oops and strong or atleast average in C#, i think thats enough, I didnt get selected, I'm 12 years exp. in .NET and 17 years overall exp., they expect 5-8 years exp. and its due to the consultancy i went for this walkin, the position probably not suitable for me, and I am the last candidate to go for the F2F interview, it was a walkin. So I suggest to go earlier when they are not tired and willing, and they might offer someone who hail from very smaller companies. But the good thing probably would be they probably will finalize on same day.

Skills evaluated in this interview

DOT NET Developer Jobs at Colan Infotech

View all

Interview questions from similar companies

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

Round duration - 50 minutes
Round difficulty - Medium

Round 2 - Face to Face 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Given an array and a target sum, find pairs of elements that add up to the target sum.

    • Iterate through the array and for each element, check if the complement (target sum - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list. Otherwise, add the current element to the hash set.

    • Sort the pairs based on the first element and then the second element to meet the required output form

  • Answered by AI
Round 3 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

Round 4 - Face to Face 

(1 Question)

Round duration - 40 minutes
Round difficulty - Hard

  • Q1. Can you provide an example of how to use pointers in C/C++ and discuss different concepts related to them?
  • Ans. 

    Pointers in C/C++ are variables that store memory addresses. They are used to manipulate memory directly and improve performance.

    • Pointers are declared using an asterisk (*) before the variable name.

    • Pointers can be used to dynamically allocate memory using functions like malloc() and free().

    • Pointers can be used to pass variables by reference to functions.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in GurgaonEligibility criteriaAbove 7 CGPA, No backlogsThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures,OOPS, SQL Queries, Normalization,Software Development Life Cycles, PointersTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 1 project
Tip 2 : Practice Data structure programming questions
Tip 3 : Prepare concepts with examples (Coding/Numericals)

Application resume tips for other job seekers

Tip 1 : Mention Projects
Tip 2 : Mention only those technologies which you are confident enough.
Tip 3 : Mention extra curricular activities if have.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Mcq + dsa JavaScript questions

Round 2 - Technical 

(1 Question)

  • Q1. JavaScript advance topics and database design topics
Round 3 - Behavioral 

(1 Question)

  • Q1. Situation based question and behavioural questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Print unique numbers in list
  • Ans. 

    Print unique numbers in list

    • Iterate through the list and store each number in a set to keep track of unique numbers

    • Print out the numbers in the set to display the unique numbers

  • Answered by AI

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. 1. Explain difference between spring and spring boot
  • Ans. 

    Spring is a framework for building Java applications, while Spring Boot is a tool for quickly creating Spring-based applications.

    • Spring provides a comprehensive framework for building Java applications, while Spring Boot is a tool that simplifies and accelerates the process of creating Spring-based applications.

    • Spring requires more configuration and setup, while Spring Boot provides a pre-configured environment that re...

  • Answered by AI
  • Q2. 2. String anagram program
  • Ans. 

    A program to check if two strings are anagrams of each other.

    • Create two character arrays from the input strings

    • Sort the arrays

    • Compare the sorted arrays to check if they are equal

  • Answered by AI
  • Q3. 3. write small code using streams api
  • Ans. 

    Using Streams API to filter and map an array of strings

    • Create a stream from the array using Arrays.stream()

    • Use filter() to select elements that meet a certain condition

    • Use map() to transform each element into a new value

    • Use toArray() to convert the stream back into an array

  • Answered by AI
  • Q4. 4. java 8 concepts
  • Q5. 5. what is REST api
  • Ans. 

    REST API is a web service that uses HTTP requests to access and manipulate data.

    • REST stands for Representational State Transfer

    • It is an architectural style for building web services

    • It uses HTTP methods like GET, POST, PUT, DELETE to perform operations on resources

    • It is stateless and can be cached

    • It returns data in various formats like JSON, XML, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain everything properly

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Coding Test 

2 questions of DSA medium to hard

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

(2 Questions)

  • Q1. Closures, hostings, react js, redux, hooks basic
  • Q2. Html5, css3, basic javascript stuff
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Assignment 

It was mostly on JavaScript

Round 2 - Technical 

(1 Question)

  • Q1. Focused on react
Round 3 - One-on-one 

(1 Question)

  • Q1. Brief about project

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on core concepts
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Cover topics like closures, classes, functions

Round 2 - Technical 

(2 Questions)

  • Q1. Explain call bind apply
  • Ans. 

    Call, bind, and apply are methods used to manipulate the value of 'this' in JavaScript functions.

    • Call: Invokes a function with a specified 'this' value and arguments provided individually.

    • Example: func.call(thisArg, arg1, arg2)

    • Bind: Creates a new function that, when called, has a specified 'this' value and arguments provided one by one.

    • Example: var newFunc = func.bind(thisArg, arg1, arg2)

    • Apply: Invokes a function with ...

  • Answered by AI
  • Q2. Explain closures
  • Ans. 

    Closures are functions that have access to variables from their containing scope even after the scope has closed.

    • Closures allow functions to access variables from their outer function even after the outer function has finished executing.

    • They help in maintaining state in asynchronous operations.

    • Closures are commonly used in event handlers and callbacks.

  • Answered by AI

Skills evaluated in this interview

Colan Infotech Interview FAQs

How many rounds are there in Colan Infotech DOT NET Developer interview?
Colan Infotech interview process usually has 1 rounds. The most common rounds in the Colan Infotech interview process are Technical.
How to prepare for Colan Infotech DOT NET 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 Colan Infotech. The most common topics and skills that interviewers at Colan Infotech expect are C#, .Net, ASP.Net, MVC and ASP.Net MVC.
What are the top questions asked in Colan Infotech DOT NET Developer interview?

Some of the top questions asked at the Colan Infotech DOT NET Developer interview -

  1. write a program to print ***** (n=5) and next line 4*, then 3*... I did all the...read more
  2. Diff between out and ref, Partial class...read more
  3. Interceptor in Angular, Observab...read more

Tell us how to improve this page.

Colan Infotech DOT NET Developer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
IT By Design Interview Questions
3.6
 • 40 Interviews
ConsultAdd Interview Questions
3.5
 • 36 Interviews
Junglee Games Interview Questions
3.1
 • 32 Interviews
View all
Colan Infotech DOT NET Developer Salary
based on 33 salaries
₹1.2 L/yr - ₹7.3 L/yr
48% less than the average DOT NET Developer Salary in India
View more details

Colan Infotech DOT NET Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Dotnet Developer

Madurai

2-3 Yrs

₹ 5-5 LPA

Explore more jobs
Software Engineer
210 salaries
unlock blur

₹1 L/yr - ₹9 L/yr

Software Developer
71 salaries
unlock blur

₹1 L/yr - ₹7.3 L/yr

Senior Software Engineer
38 salaries
unlock blur

₹4.3 L/yr - ₹18 L/yr

Softwaretest Engineer
36 salaries
unlock blur

₹1 L/yr - ₹8 L/yr

DOT NET Developer
33 salaries
unlock blur

₹1.2 L/yr - ₹7.3 L/yr

Explore more salaries
Compare Colan Infotech with

Maxgen Technologies

4.5
Compare

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

2.9
Compare

F1 Info Solutions and Services

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