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 and Answers

Updated 18 Nov 2024
Popular Designations

13 Interview questions

A Python Developer was asked
Q. What will be the output of the following Python code: 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'.

View all Python Developer interview questions
A Python Developer was asked
Q. 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> - ...

View all Python Developer interview questions
A Python Developer was asked
Q. Which data type is mutable in Python: list, tuple, string, int, or 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.

View all Python Developer interview questions
A Python Developer was asked
Q. 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 dis...

View all Python Developer interview questions
A Data Engineer was asked
Q. What are the use cases for broadcast join?
Ans. 

Broadcast joins optimize performance by distributing smaller datasets to all nodes for efficient data processing in big data frameworks.

  • Used when one dataset is significantly smaller than the other, e.g., joining a small lookup table with a large fact table.

  • In Spark, the smaller dataset is broadcasted to all worker nodes, reducing data shuffling and improving join performance.

  • Example: Joining a user profile table ...

View all Data Engineer interview questions
A full stac was asked
Q. How do you handle web application performance?
Ans. 

Web application performance can be handled by optimizing code, caching, load balancing, and monitoring.

  • Optimize code by reducing database queries, using efficient algorithms, and minimizing HTTP requests.

  • Implement caching to reduce server load and improve response time.

  • Use load balancing to distribute traffic across multiple servers.

  • Monitor performance using tools like New Relic or Google Analytics to identify bot...

A full stac was asked
Q. Explain the web application flow.
Ans. 

Web application flow involves client-server communication, request processing, and response generation.

  • Client sends a request to the server

  • Server processes the request and generates a response

  • Response is sent back to the client

  • Client renders the response in the browser

  • This flow continues until the user interacts with the application

Are these interview questions helpful?
An Application Developer was asked
Q. What are your thoughts on OOPS concepts?
Ans. 

OOPs (Object-Oriented Programming) is a programming paradigm based on objects and classes, promoting code reusability and modularity.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class using properties of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present the same inter...

View all Application Developer interview questions
A DOT NET Developer was asked 11mo ago
Q. 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.

View all DOT NET Developer interview questions
A DOT NET Developer was asked 11mo ago
Q. 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

View all DOT NET Developer interview questions

Colan Infotech Interview Experiences

23 interviews found

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

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

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).
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

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

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
  • Ans. 

    Broadcast joins optimize performance by distributing smaller datasets to all nodes for efficient data processing in big data frameworks.

    • Used when one dataset is significantly smaller than the other, e.g., joining a small lookup table with a large fact table.

    • In Spark, the smaller dataset is broadcasted to all worker nodes, reducing data shuffling and improving join performance.

    • Example: Joining a user profile table (smal...

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

(1 Question)

  • Q1. Spark scenario based questions troubleshooting questions

Skills evaluated in this interview

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
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Remove the duplicate number in the array

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.

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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. About lead generation

Top trending discussions

View All
Interview Tips & Stories
1w
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 Colan Infotech?
Ask anonymously on communities.

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, C#, MySQL, 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.

Overall Interview Experience Rating

3.5/5

based on 15 interview experiences

Difficulty level

Easy 13%
Moderate 88%

Duration

Less than 2 weeks 88%
2-4 weeks 13%
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
IT By Design Interview Questions
3.6
 • 41 Interviews
ConsultAdd Interview Questions
3.6
 • 37 Interviews
View all

Colan Infotech Reviews and Ratings

based on 116 reviews

3.8/5

Rating in categories

3.8

Skill development

3.7

Work-life balance

3.4

Salary

3.7

Job security

3.6

Company culture

3.2

Promotions

3.7

Work satisfaction

Explore 116 Reviews and Ratings
Software Engineer
231 salaries
unlock blur

₹1 L/yr - ₹8.6 L/yr

Software Developer
68 salaries
unlock blur

₹1 L/yr - ₹8.2 L/yr

React Js Frontend Developer
60 salaries
unlock blur

₹11.5 L/yr - ₹18 L/yr

Senior Software Engineer
42 salaries
unlock blur

₹4.8 L/yr - ₹18 L/yr

Softwaretest Engineer
38 salaries
unlock blur

₹1 L/yr - ₹8 L/yr

Explore more salaries
Compare Colan Infotech with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.0
Compare

Value Point Systems

3.6
Compare

F1 Info Solutions and Services

3.7
Compare
write
Share an Interview