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 Interview Questions, Process, and Tips

Updated 18 Nov 2024

Top Colan Infotech Interview Questions and Answers

View all 14 questions

Colan Infotech Interview Experiences

Popular Designations

23 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. About projects on past company
  • Q2. Front and backend technical
  • Q3. Tell projects you worked
  • Q4. Work timing fine for you
  • Q5. Communication with clients

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly they will conduct interview but not hiring

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)

PHP Developer Interview Questions & Answers

user image R. Murali

posted on 18 Oct 2024

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

I applied via Walk-in and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical Round with Technical Person.
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical Round with Team Lead.
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical Round with Delivery/Project Manager.
Round 4 - HR 

(1 Question)

  • Q1. HR Discussion (only Selfintro and About Parents)

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Strong in core PHP, MySQL and Basic problem solving(like Pyramid).

PHP Developer Interview Questions asked at other Companies

Q1. How can we report errors in the log file while working on a core PHP project?
View answer (3)
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 Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (11)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Tell abt ur self
  • Ans. 

    I am a dedicated and detail-oriented Manual Test Engineer with 5 years of experience in testing web and mobile applications.

    • 5 years of experience in manual testing

    • Proficient in testing web and mobile applications

    • Detail-oriented and dedicated to ensuring quality

    • Strong problem-solving skills

    • Experience with test case creation and execution

  • Answered by AI
  • Q2. Functional & non functional testing
  • Q3. Regression smoke sanity
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - if some one says there is a walk-in going in Chennai city side don't go its waste of time and they wont select u its called marketing or gostrecruting, they r doing this walk-in for there company advertisement

Manual Test Engineer Interview Questions asked at other Companies

Q1. Why choose testing field What is manual testing What is traditional testing What is the difference between functional and non functional testing What is severity and priority in a testing What is smoke or sanity testing What is test case Ho... read more
View answer (2)

Colan Infotech interview questions for popular designations

 PHP Developer

 (3)

 Software Developer

 (2)

 Python Developer

 (1)

 Application Developer

 (1)

 Technical Lead

 (1)

 Software Engineer

 (1)

 Manual Test Engineer

 (1)

 DOT NET Developer

 (1)

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

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

Round 1 - Aptitude Test 

(2 Questions)

  • Q1. Which is muteable in python? (list,tuple,string,int,float)
  • Ans. 

    Lists are mutable in Python.

    • Lists can be modified after creation, allowing for addition, removal, and modification of elements.

    • Tuples, strings, integers, and floats are immutable in Python.

    • Example: list_example = [1, 2, 3]; list_example[1] = 5 # modifies the list element at index 1 to 5.

  • Answered by AI
  • Q2. Str="Hello world" print(str[4:8] )
  • Ans. 

    The code will print 'o wo', which is the substring of 'Hello world' starting from index 4 up to index 7.

    • The slicing operation str[4:8] extracts characters from index 4 to index 7 (exclusive) from the string 'Hello world'.

    • The index 4 corresponds to the character 'o' and index 7 corresponds to the character 'd'.

    • Therefore, the output of print(str[4:8]) will be 'o wo'.

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. He questioned me from htm,css,js,sql,python,oops, little bit questions on python
  • Q2. Write down 10 tags in html
  • Ans. 

    List of 10 common HTML tags used for web development

    • <div> - defines a division or section in an HTML document

    • <p> - defines a paragraph

    • <a> - defines a hyperlink

    • <img> - defines an image

    • <ul> - defines an unordered list

    • <li> - defines a list item

    • <h1> to <h6> - defines headings

    • <table> - defines a table

    • <form> - defines an HTML form for user input

    • <input> - defin

  • Answered by AI
  • Q3. Write down 10 properties in css
  • Ans. 

    CSS properties control the visual presentation of elements on a webpage.

    • color: sets the color of text

    • font-size: determines the size of text

    • background-color: specifies the background color of an element

    • border: defines the border around an element

    • margin: sets the margin outside an element

    • padding: determines the padding inside an element

    • text-align: aligns text within an element

    • display: specifies how an element is displaye...

  • Answered by AI

Skills evaluated in this interview

Python Developer Interview Questions asked at other Companies

Q1. Tell me the logic of program to reverse a given string word by word without using any built in function.
View answer (9)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Feb 2024

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

Round 1 - Technical 

(5 Questions)

  • Q1. Types of spark clusters, uses of all types of clusters
  • Ans. 

    There are three types of Spark clusters: standalone, YARN, and Mesos. Each type has different use cases.

    • Standalone cluster: Suitable for development and testing purposes.

    • YARN cluster: Ideal for running Spark on Hadoop clusters.

    • Mesos cluster: Used for running Spark on Mesos clusters or in cloud environments.

    • Standalone cluster can be set up on a single machine or a group of machines.

    • YARN cluster leverages Hadoop's resour...

  • Answered by AI
  • Q2. Different types of optimization techniques
  • Ans. 

    Optimization techniques are methods used to improve efficiency and performance of systems or processes.

    • Mathematical optimization: using mathematical models and algorithms to find the best solution

    • Heuristic optimization: using trial and error or rule-based methods to find good solutions

    • Metaheuristic optimization: using higher-level strategies to explore the search space efficiently

    • Constraint optimization: optimizing sol...

  • Answered by AI
  • Q3. Broadcast join usecase
  • Q4. Stored procedure
  • Q5. Sql - joins queries
Round 2 - Technical 

(1 Question)

  • Q1. Spark scenario based questions troubleshooting questions

Skills evaluated in this interview

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions based on php basics
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical interview with team lead
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical interview with project head

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Basics concepts in php and opps

PHP Developer Interview Questions asked at other Companies

Q1. How can we report errors in the log file while working on a core PHP project?
View answer (3)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Remove the duplicate number in the array

Mern Full Stack Developer Interview Questions asked at other Companies

Q1. What is the way to save large files (e.g. photos) into MongoDB database.
View answer (2)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 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 - Coding Test 

Experience person treating like giving paper give String bases on question and asked no worst experience.

Round 3 - Technical 

(1 Question)

  • Q1. Senior asking again what he knows . explain project experience and they not asking about your related your question.this is happening in this company.

Interview Preparation Tips

Interview preparation tips for other job seekers - senior person dont know about anything programming .randomly asking what they knows.
building is very noisy and parking vehicle problem..there is a lot bank related company is there. i think dont waste your time in this company.. I have been watching anywhere in this room camera is fixing.they are monitoring ..dont go this company 100% telling truth.

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

Node JS Developer Interview Questions & Answers

user image Aathithya sankaran

posted on 8 Jul 2024

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

(1 Question)

  • Q1. Asked most question javascript so prepare all important interview questions in javascript

Node JS Developer Interview Questions asked at other Companies

Q1. 2. What are the main modules of Node.js? Explain in detail.
View answer (3)

Colan Infotech Interview FAQs

How many rounds are there in Colan Infotech interview?
Colan Infotech interview process usually has 1-2 rounds. The most common rounds in the Colan Infotech interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Colan Infotech 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 Javascript, MySQL, C#, MVC and Java.
What are the top questions asked in Colan Infotech interview?

Some of the top questions asked at the Colan Infotech interview -

  1. write a program to print ***** (n=5) and next line 4*, then 3*... I did all the...read more
  2. which is muteable in python? (list,tuple,string,int,flo...read more
  3. How to you handle web applicaton performa...read more
How long is the Colan Infotech interview process?

The duration of Colan Infotech interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Colan Infotech Interview Process

based on 14 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
Hexaware Technologies Interview Questions
3.5
 • 710 Interviews
Persistent Systems Interview Questions
3.5
 • 596 Interviews
Zifo RnD Solutions Interview Questions
4.1
 • 61 Interviews
View all

Colan Infotech Reviews and Ratings

based on 110 reviews

4.0/5

Rating in categories

3.9

Skill development

3.8

Work-life balance

3.4

Salary

3.7

Job security

3.7

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 110 Reviews and Ratings
Software Engineer
220 salaries
unlock blur

â‚ą0 L/yr - â‚ą0 L/yr

Software Developer
72 salaries
unlock blur

â‚ą0 L/yr - â‚ą0 L/yr

Softwaretest Engineer
40 salaries
unlock blur

â‚ą0 L/yr - â‚ą0 L/yr

Senior Software Engineer
38 salaries
unlock blur

â‚ą0 L/yr - â‚ą0 L/yr

DOT NET Developer
33 salaries
unlock blur

â‚ą0 L/yr - â‚ą0 L/yr

Explore more salaries
Compare Colan Infotech with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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