Upload Button Icon Add office photos

Filter interviews by

Intellisoft Technologies Interview Questions and Answers

Updated 17 Sep 2024

Intellisoft Technologies Interview Experiences

Popular Designations

5 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How can we manage the data between components in react
  • Ans. 

    Data can be managed between components in React using props, state, context API, and Redux.

    • Use props to pass data from parent to child components

    • Use state to manage local component data and trigger re-renders

    • Use context API to pass data to deeply nested components without prop drilling

    • Use Redux for managing global state across components

  • Answered by AI

Skills evaluated in this interview

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 (199)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was challenging and logical thinking is needed

Round 2 - Coding Test 

It was based on real world examples

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared before any of these tests

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
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 Jun 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Self Introduction & Communaction Skills
  • Q2. Education details & Habbits
Round 2 - Technical 

(1 Question)

  • Q1. C#,Oops, Programming,Techicial knowledge

Interview Preparation Tips

Topics to prepare for Intellisoft Technologies Software Trainee interview:
  • C#.Net
Interview preparation tips for other job seekers - It is a good oppourinity for job searching persons may be freshers or experienced candidates

Software Trainee Interview Questions asked at other Companies

Q1. 1. What is java and it's features ? 2. Why it is called platform independent language? 3. What is static memory allocation, dynamic memory allocation? 4. types of variable 5. Type casting 4. what is oops ? Is java contains a 100% opp's conc... read more
View answer (1)

I applied via Campus Placement and was interviewed before Oct 2021. 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 

There are some basic questions that were asked like reverse a string , draw pattern.

Round 3 - HR 

(1 Question)

  • Q1. Like why will you join our organisation, where would you see yourself after one year

Junior Software Developer Interview Questions asked at other Companies

Q1. Given n coins for two players playing a game. Each player picks coins from the given n coins in such a way that he can pick 1 to 5 coins in one turn and the game continues for both the players. The player who picks the last coin looses the ... read more
View answer (3)

Intellisoft Technologies interview questions for popular designations

 Software Engineer

 (1)

 Software Developer

 (1)

 Software Trainee

 (1)

 Junior Software Developer

 (1)

Interview Questions & Answers

user image Anonymous

posted on 2 Jul 2021

I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. We are looking for an individual with critical abilities. Do you think you have that in you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Honesty and confidence are the key skills to ace any interview. Also, don't be afraid of saying 'I don't know', or 'I would love to learn more about it if given a chance', rather than fabricating an answer and risking your chance.

Interview questions from similar companies

Interview Preparation Tips

Round: Resume Shortlist
Experience: A telephonic of technical round basics about C concepts and Embedded C Concepts in order to call for next round .

I was interviewed before Feb 2016.

Interview Questionnaire 

1 Question

  • Q1. Enter a question

Interview Preparation Tips

Round: Resume Shortlist
Experience: Tell in detail what all happened during this round
Tips: Provide tips specifically for this round

Round: Technical Interview
Experience: Tell in detail what all happened during this round
Tips: Provide tips specifically for this round

I was interviewed in Apr 2017.

Interview Questionnaire 

2 Questions

  • Q1. Java questions...
  • Q2. Tell me about urself and about us family and all
  • Ans. 

    I am a software developer with a passion for coding and problem-solving. My family is supportive and has always encouraged my career in tech.

    • Experienced software developer

    • Passionate about coding and problem-solving

    • Supportive family that encourages my career in tech

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Easy questions are there
Duration: 1 hour
Total Questions: 90

Round: Group Discussion
Experience: 12 members are there only 9 got selected
Tips: Be confident in urself and specially work in Communication skills
Duration: 15 minutes

Round: Technical Interview
Experience: Asking all the concepts of Java like oops collections threads
Tips: Prepare well on Java

Round: HR Interview
Experience: Everything was Gud but due to my certificate problem I got rejected.. Otherwise everything is good.
Tips: Be confident

College Name: C. V. Raman College of Engineering

Interview Preparation Tips

College Name: Vidyalankar Institute Of Technology

Interview Questionnaire 

11 Questions

  • Q1. Hobbies: Drawing. Asked about drawing and pencil shading. Draw in next 5 mins something great to impress me else rejected
  • Q2. Sketch my face
  • Q3. If you are told to do a job of a peon for the company will you?
  • Q4. Remove all the pcs from the lab and keep in other lab RIGHT NOW?
  • Ans. 

    Yes, I can remove all the pcs from the lab and keep them in another lab right now.

    • Ensure all the necessary equipment and tools are available for the move

    • Coordinate with the lab staff to ensure a smooth transition

    • Label and document each PC for easy identification and setup in the new lab

    • Ensure proper packaging and handling to prevent any damage during the move

  • Answered by AI
  • Q5. Impress me with your talents
  • Q6. If a person asks you on a construction site to pick up bricks will you?
  • Q7. How crazy are you?
  • Q8. Show me how crazy are you in next 5 mins?
  • Q9. Write down Fibonacci series and also explain pseudo code for it?
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • The first two numbers of the series are always 0 and 1

    • The next number is the sum of the previous two numbers

    • The series goes on infinitely: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...

    • Pseudo code: 1. Initialize variables a=0, b=1, c=0 2. Print a and b 3. Repeat steps 4-6 until desired number of terms 4. c=a+b 5. Pr

  • Answered by AI
  • Q10. Write algorithm for matrix multiplication?
  • Ans. 

    Algorithm for matrix multiplication

    • Create a result matrix with dimensions of the two input matrices

    • Iterate through each row and column of the result matrix

    • For each element in the result matrix, multiply corresponding row in first matrix with corresponding column in second matrix

    • Add the products obtained in the previous step to get the final value for the element

  • Answered by AI
  • Q11. Explain your project and which algorithm you used in it. Why that algorithm?
  • Ans. 

    I worked on a project that involved sentiment analysis of customer reviews using Naive Bayes algorithm.

    • The project involved collecting customer reviews from various sources.

    • Preprocessing the data by removing stop words, stemming, and tokenizing.

    • Used Naive Bayes algorithm for sentiment analysis.

    • The algorithm was chosen because of its simplicity and effectiveness in text classification tasks.

    • The accuracy of the model was

  • Answered by AI

Interview Preparation Tips

Round: HR Interview
Experience: Confused

If they say do you have any questions?
NEVER ASK about your performance in that round.

Round: Technical Interview
Experience: Good
Tips: Interview depends on your basic knowledge

Skills: Presence Of Mind, Technical Skills, Analytical Skills
College Name: Vidyalankar Institute Of Technology
Motivation: Got rejected for TCS aptitude.
Funny Moments: Whole HR interview

Skills evaluated in this interview

Intellisoft Technologies Interview FAQs

How many rounds are there in Intellisoft Technologies interview?
Intellisoft Technologies interview process usually has 2-3 rounds. The most common rounds in the Intellisoft Technologies interview process are Resume Shortlist, Coding Test and HR.
How to prepare for Intellisoft 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 Intellisoft Technologies. The most common topics and skills that interviewers at Intellisoft Technologies expect are Software Development, ASP.NET, MVC, Software Design and ASP.Net.
What are the top questions asked in Intellisoft Technologies interview?

Some of the top questions asked at the Intellisoft Technologies interview -

  1. How can we manage the data between components in re...read more
  2. C#,Oops, Programming,Techicial knowle...read more
  3. Education details & Habb...read more

Tell us how to improve this page.

Intellisoft Technologies Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k 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
IBM Interview Questions
4.0
 • 2.3k Interviews
View all

Intellisoft Technologies Reviews and Ratings

based on 32 reviews

4.0/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.5

Salary

3.7

Job security

3.6

Company culture

3.6

Promotions

3.9

Work satisfaction

Explore 32 Reviews and Ratings
Software Developer
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Recruiter
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

US IT Recruiter
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Junior Software Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Intellisoft Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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