Upload Button Icon Add office photos

Filter interviews by

Intileo Technologies Interview Questions and Answers

Updated 29 Sep 2022

Intileo Technologies Interview Experiences

1 interview found

Software Engineer Interview Questions & Answers

user image Rajesh Kumar Pathak

posted on 16 Sep 2022

I applied via Naukri.com and was interviewed before Sep 2021. There were 2 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 - HR 

(2 Questions)

  • Q1. Will you accomodate in NCR area
  • Ans. 

    Yes, I am willing to accommodate in the NCR area.

    • I am open to relocating to the NCR area for the job.

    • I am familiar with the NCR area and have no issues living there.

    • I am excited about the opportunities in the NCR area and would be happy to move there.

  • Answered by AI
  • Q2. What is your your expectation towards salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Do prepared for interview as per the JD
Be confident
Keep domain knowledge
Keep updating your profile
Keep updating your skills

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (219)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jan 2018. There were 5 interview rounds.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Take a new job... I have special skill in sales . I ll be the. Best

General Tips: Try try try sure u I'll be that best in all... Work hard... Till u achieve...
Skills: Sales, Public Speaking Skills, Communication, Body Language, Problem Solving, Leadership, Time Management, Decision Making Skills
Duration: <1 week

Interview Preparation Tips

Round: Group Discussion
Experience: Discussion has started . Each one on the table shared their views and opinions. In the end three names were called out and rest of them were asked to leave .
Tips: Just chillax and speak your mind
Duration: 20 minutes

Round: Test
Experience: Basic aptitude
Tips: Work out aptitude, logic and reasoning
Duration: 20 minutes
Total Questions: 30

Round: HR Interview
Experience: Open ended questions ...

Round: Technical + HR Interview
Experience: Plain and simple

College Name: Vignan

I applied via Referral and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Who are you
  • Q2. Why you leave job

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidential

I applied via Naukri.com and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. All technical and based on profile.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice and cares employees.

I applied via Recruitment Consultant and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview are easy but technical

I applied via Naukri.com

Interview Questionnaire 

3 Questions

  • Q1. Self introduction
  • Q2. Working knowledge in current company and overall job profile.
  • Q3. Accounts related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Group interview. It was a very nice. Vary Very calm.

I applied via Naukri.com and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About myself, technical

Interview Preparation Tips

Interview preparation tips for other job seekers - Good and found out to be fine while joining

I applied via Naukri.com and was interviewed before May 2021. There were 2 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 - HR 

(2 Questions)

  • Q1. My Working experience
  • Ans. My Working experience was awesome...bcos my daily field work with new challenges and opportunities
  • Answered Anonymously
  • Q2. What is my Working style
  • Ans. My Working style too good with everyone morning bcos my market relationship are build my own...
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Please see my ability and experience...

I appeared for an interview in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Easy

There were few mcqs. MCQs were easy but coding questions were little complex.

  • Q1. 

    Minimum and Maximum Candy Cost Problem

    Ram is in Ninjaland, visiting a unique candy store offering 'N' candies each with different costs. The store has a special offer: for every candy you purchase, you c...

  • Ans. 

    Determine the minimum and maximum amounts of money needed to purchase all candies with a special offer.

    • Iterate through each test case to calculate the minimum and maximum costs

    • For minimum cost, sort the candy costs and take the lowest 'K' values

    • For maximum cost, sort the candy costs in descending order and take the highest 'K' values

    • Consider edge cases like when K is 0 or equal to N

  • Answered by AI
  • Q2. 

    Multiply Linked Lists Problem Statement

    Your task is to multiply two numbers represented as linked lists and return the resultant multiplied linked list.

    Explanation:

    The multiplied list should be a lin...

  • Ans. 

    Multiply two numbers represented as linked lists and return the resultant multiplied linked list.

    • Create a function that takes two linked lists as input and returns the product as a linked list

    • Traverse both linked lists to extract the numbers, multiply them, and create a new linked list with the result

    • Handle carry over digits appropriately while multiplying the numbers

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Round was very difficult . I prefer first just try to learn how to operate hackerrank site, only then you can good with it. It was an online coding round. To clear coding rounds you have to clear your basics.

  • Q1. 

    Right View of Binary Tree

    Given a binary tree of integers, your task is to output the right view of the tree.

    The right view of a binary tree includes the nodes that are visible when the tree is observed...

  • Ans. 

    The task is to output the right view of a binary tree given its level order traversal.

    • Traverse the tree level by level and keep track of the rightmost node at each level

    • Use a queue to perform level order traversal

    • Print the rightmost node at each level to get the right view

    • Example: For input 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1, the output should be 1 3 6 7

  • Answered by AI
  • Q2. 

    Buy and Sell Stock Problem Statement

    Imagine you are Harshad Mehta's friend, and you have been given the stock prices of a particular company for the next 'N' days. You can perform up to two buy-and-sell ...

  • Ans. 

    The task is to determine the maximum profit that can be achieved by performing up to two buy-and-sell transactions on a given set of stock prices.

    • Iterate through the array of stock prices to find the maximum profit that can be achieved by buying and selling stocks.

    • Keep track of the maximum profit that can be achieved by considering all possible combinations of buy and sell transactions.

    • Ensure that you sell the stock be...

  • Answered by AI
Round 3 - Face to Face 

Round duration - 35 minutes
Round difficulty - Medium

Basic interview questions, few related to basic domain questions, few from behavioral questions, few from projects. This round was not that much hard.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in JaipurEligibility criteriaAbove 7.5 CGPAScaleneWorks People Solutions LLP interview preparation:Topics to prepare for the interview - C++, Data Structures, Algorithms, Graph and Trees, Operating Systems, Object Oriented Programming, Database Management System, Project, Development, Programming Language, Dynamic Programming, AptitudeTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Interviews ask few questions from Oops, DBMS, OS
Tip 2 : Brush up fundamental concepts 
Tip 3 : Have a good hold on your projects and have some internships in your resume
Tip 4 : Practice as many questions as you can

Application resume tips for other job seekers

Tip 1 : Never lie something in resume. Do not fake any skills, projects or achievements.
Tip 2 : Only write about those certificates which were related to your important things.
Tip 3 : Keep it simple (It should not be long)
Tip 4 : Do internships so that you can highlight that in your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Intileo Technologies Interview FAQs

How many rounds are there in Intileo Technologies interview?
Intileo Technologies interview process usually has 2 rounds. The most common rounds in the Intileo Technologies interview process are Resume Shortlist and HR.
How to prepare for Intileo Technologies 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 Intileo Technologies. The most common topics and skills that interviewers at Intileo Technologies expect are Java, OOPS, Data Structures, Design Patterns and NoSQL.

Tell us how to improve this page.

Interview Questions from Similar Companies

Randstad Interview Questions
3.7
 • 266 Interviews
Team Lease Interview Questions
3.9
 • 205 Interviews
ABC Consultants Interview Questions
3.9
 • 192 Interviews
Aarvi Encon Interview Questions
3.9
 • 64 Interviews
Scaleneworks Interview Questions
3.5
 • 12 Interviews
View all

Intileo Technologies Reviews and Ratings

based on 22 reviews

2.6/5

Rating in categories

2.5

Skill development

2.9

Work-life balance

2.4

Salary

1.9

Job security

2.0

Company culture

2.1

Promotions

2.3

Work satisfaction

Explore 22 Reviews and Ratings
Software Engineer
7 salaries
unlock blur

₹4.6 L/yr - ₹5.4 L/yr

Information Technology Recruiter
7 salaries
unlock blur

₹1.2 L/yr - ₹3.1 L/yr

Mobile Application Developer
6 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

HR Recruiter
6 salaries
unlock blur

₹1 L/yr - ₹2 L/yr

Business Development Manager
5 salaries
unlock blur

₹4.1 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Intileo Technologies with

Team Lease

3.9
Compare

Randstad

3.7
Compare

ABC Consultants

3.9
Compare

First Advantage

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