Upload Button Icon Add office photos
Engaged Employer

i

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

Internshala Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 223 Reviews

Filter interviews by

Internshala Intern Interview Questions and Answers

Updated 30 May 2024

Internshala Intern Interview Experiences

4 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 30 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. Introduce Yourself,Write a code to find repeative characters in a String
  • Ans. 

    I am a software engineering student with a passion for coding. Here is a code to find repetitive characters in a string.

    • Iterate through the characters in the string and store their occurrences in a HashMap.

    • Check the HashMap for characters with occurrences greater than 1 to find repetitive characters.

    • Return the repetitive characters as an array of strings.

  • Answered by AI
  • Q2. Hi this is my name and qualification and experience

Intern Interview Questions & Answers

user image Anonymous

posted on 14 Nov 2023

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

I applied via Job Fair

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 - Aptitude Test 

Aptitude on clocks, calenders, boats and streams..

Round 3 - Aptitude Test 

Aptitude based on clocks, calendars, boats and streams..

Round 4 - Technical 

(2 Questions)

  • Q1. Asked about python, c, c++, html, css
  • Q2. Python basics, differences between them

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. Case. There is a housing society “The wasteful society”, you coll ... read more
Q2. Which programming language you are comfortable with?
asked in Deloitte
Q3. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q4. Huffman CodingYou are given an array 'ARR' of Integers having 'N' ... read more
asked in Accenture
Q5. A marketing strategy case. Client is a perfume seller in Jaipur. ... read more

Intern Interview Questions & Answers

user image Anonymous

posted on 3 May 2022

I applied via Job Portal and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

It was quite easy

Round 3 - Technical 

(1 Question)

  • Q1. Based on resume. Go through with your resume..

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume.. The things you have mentioned you should know about it

Intern Interview Questions & Answers

user image MANOJ G

posted on 30 Oct 2021

I applied via Company Website and was interviewed in Nov 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Got offer letter directly through email based on previous performance
  • Q2. Not applicable

Interview Preparation Tips

Interview preparation tips for other job seekers - Follow the profile instruction and previous performance

Internshala interview questions for designations

 Marketing Intern

 (1)

 Student Intern

 (1)

 Web Development Intern

 (1)

 Content Writer Intern

 (1)

 Recruiter Consultant Intern

 (1)

 UI and UX Designer Intern

 (1)

 Data Analyst

 (2)

 Campus Ambassador

 (2)

Interview questions from similar companies

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

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

Medium level coding question

Round 3 - Technical 

(2 Questions)

  • Q1. Intreview round asked about project mentioned in CV
  • Q2. Basic of reacts, opps question,sql queries
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

All the logical Qustions

Round 3 - Technical 

(1 Question)

  • Q1. They will ask you about dsa qustions

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't hesitate to give answer just give your answer in a simpler manner
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Basic logic based questions

Round 2 - Coding Test 

Basic coding questions

Round 3 - Technical 

(3 Questions)

  • Q1. Pattern based question
  • Q2. Reverse a string
  • Q3. Other technical question related to DBMS, MySQL, CN, Web Dev and AWS
Round 4 - HR 

(2 Questions)

  • Q1. Introduction, personal details
  • Q2. Strength and weakness
Round 5 - One-on-one 

(2 Questions)

  • Q1. This was a managerial round, where he went through my resume and open my github and asked me to explain the code from different projects
  • Q2. Pattern based question (difficulty : hard)

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your resume, practice DSA and upload your projects on github
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Describe yourself

I was interviewed in Mar 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Timing (10 am- 11 am)
For this round I had slightly more time than the last, due to the fact that the weekend fell in between.The interviewer was very very cool and helping this time, something which I kept at the last in my list of probable things that can happen during an interview. Duration of this round was around 45 minutes.

  • Q1. Connect n ropes with minimum cost

    You have been given 'N' ropes of different lengths, we need to connect these ropes into one rope. The cost to connect two ropes is equal to sum of their lengths. W...

  • Ans. Brute Force Approach

    Clearly, the rope which is picked up first will be having its length included more than once in the final cost. If we pick a rope of larger length earlier, then we will be adding some extra cost to our final result.
    So, the idea is to pick ropes of smaller lengths initially to minimize the impact on our final cost.

    So, each time we will be finding two smallest ropes, connecting them and

    adding the resu...

  • Answered by CodingNinjas
  • Q2. Validate BST

    You have been given a binary tree of integers with N number of nodes. Your task is to check if that input tree is a BST (Binary Search Tree) or not.

    A binary search tree (BST) is a binary tr...

  • Ans. BST property

    The approach is based on the fact that the value of each node in a BST is greater than the value of all the nodes in the left subtree and smaller than the value of all the nodes in the right subtree.

     

    Here is the complete algorithm-

    • For each node, we store the minimum and maximum value allowed for that node. Initially, for the root node, the minimum value would be -10^9 and the maximum value should be 10...
  • Answered by CodingNinjas
Round 2 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

This round was on call where I was just supposed to answer the HRquestions that were asked. It started with a brief interview with one another and then moved to questions on DBMS, operating systems, computer networks and all. Almost 10-15 questions were asked and I probably answered 90% of them correctly.

  • Q1. Basic HR Questions

    Assume you are hired, then how long would you expect to work for us?

    How would you rate yourself on a scale of 1 to 10?

  • Ans. 

    Tip 1 : Try answering in an optimistic manner
    Tip 2 : relating the real life examples to support your points will be very helpful
    Tip 3 : putting all the energy and showing the enthusiasm is also very important

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Malaviya National Institute of Technology Jaipur. I applied for the job as SDE - Intern in GurgaonEligibility criteriaall branches were allowedSpeedLabs interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : practice on gfg and coding ninjas
Tip 2 : compete in online coding contests
Tip 3 : learn DSA and practice regularly from GFG or leetcode

Application resume tips for other job seekers

Tip 1 : put your entire valuable experience in brief
Tip 2 : put the handle of you competitive coding profiles

Final outcome of the interviewSelected

Skills evaluated in this interview

Intern Interview Questions & Answers

Coding Ninjas user image Shubham Ashish Trivedi

posted on 14 Sep 2021

I applied via Company Website and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How can you promote coding ninjas courses in your college or anywhere?
  • Ans. 

    I can promote Coding Ninjas courses by organizing coding events, sharing course details on social media, and collaborating with college clubs.

    • Organize coding events in college and invite Coding Ninjas as a sponsor or guest speaker

    • Share course details on social media platforms like Facebook, LinkedIn, and Twitter

    • Collaborate with college clubs like coding clubs, tech clubs, and entrepreneurship clubs to promote the cours...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident, Don't hesitate, give your 100%.
Focus on your speaking skills

Internshala Interview FAQs

How many rounds are there in Internshala Intern interview?
Internshala interview process usually has 2-3 rounds. The most common rounds in the Internshala interview process are Aptitude Test, Technical and Resume Shortlist.
How to prepare for Internshala Intern 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 Internshala. The most common topics and skills that interviewers at Internshala expect are B2B Sales, Business Alliances, Corporate Sales, Educational Sales and Sales.
What are the top questions asked in Internshala Intern interview?

Some of the top questions asked at the Internshala Intern interview -

  1. Introduce Yourself,Write a code to find repeative characters in a Str...read more
  2. Got offer letter directly through email based on previous performa...read more
  3. Asked about python, c, c++, html, ...read more

Tell us how to improve this page.

People are getting interviews through

based on 4 Internshala interviews
Job Portal
Company Website
50%
25%
25% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Acadecraft Interview Questions
3.6
 • 52 Interviews
Coding Ninjas Interview Questions
4.0
 • 48 Interviews
TALENTEDGE Interview Questions
3.3
 • 20 Interviews
Nerdy Turtlez Interview Questions
2.9
 • 17 Interviews
MASAI School Interview Questions
4.1
 • 13 Interviews
UpThink Interview Questions
4.0
 • 13 Interviews
SpeedLabs Interview Questions
3.4
 • 12 Interviews
View all
Internshala Intern Salary
based on 8 salaries
₹1 L/yr - ₹4 L/yr
17% less than the average Intern Salary in India
View more details

Internshala Intern Reviews and Ratings

based on 14 reviews

4.6/5

Rating in categories

4.7

Skill development

3.6

Work-Life balance

2.4

Salary & Benefits

3.8

Job Security

4.5

Company culture

2.8

Promotions/Appraisal

3.4

Work Satisfaction

Explore 14 Reviews and Ratings
Marketing Associate
17 salaries
unlock blur

₹5 L/yr - ₹6 L/yr

Product Manager
16 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Associate Product Manager
16 salaries
unlock blur

₹5.4 L/yr - ₹7 L/yr

Software Development Engineer
16 salaries
unlock blur

₹5.4 L/yr - ₹16.5 L/yr

Data Scientist
14 salaries
unlock blur

₹6 L/yr - ₹8 L/yr

Explore more salaries
Compare Internshala with

LetsIntern.com

3.0
Compare

Youth4work

4.3
Compare

Sheroes

2.8
Compare

Skillenza

5.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview