Upload Button Icon Add office photos

Filter interviews by

Smart Internz Interview Questions and Answers

Updated 31 Jul 2024

Smart Internz Interview Experiences

Popular Designations

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude and Logical reasoning

Round 2 - Coding Test 

DSA questions and Core subject Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Core and DSA Topics thoroughly

Salesforce Developer Intern Interview Questions asked at other Companies

Q1. Why do you use Github?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Nov 2022.

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 

MCQS round ie time and distance, permutation and combination, probability, Blood relationship

Round 3 - Coding Test 

We can execute the code and pass all test cases

Round 4 - HR 

(4 Questions)

  • Q1. To introduce yourself. Asking technical related questions. Asking what project your did.
  • Q2. Tell me about your self
  • Q3. What project you did in final year?
  • Q4. What technologies you should know?
  • Ans. 

    Knowledge of programming languages, databases, and software tools is essential for a student intern.

    • Programming languages such as Python, Java, or C++

    • Databases like SQL or NoSQL

    • Software tools like Microsoft Office, Adobe Creative Suite

    • Basic understanding of web development technologies like HTML, CSS, and JavaScript

  • Answered by AI
Round 5 - Technical 

(2 Questions)

  • Q1. What technologies you should know?
  • Ans. 

    Knowledge of programming languages, databases, and software tools is essential for a student intern.

    • Programming languages (e.g. Python, Java, C++)

    • Databases (e.g. SQL, MongoDB)

    • Software tools (e.g. Microsoft Office, Adobe Creative Suite)

  • Answered by AI
  • Q2. What are the oops concepts in java
  • Ans. 

    Oops concepts in Java are fundamental principles of object-oriented programming such as inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Allows objects to be treated as instances of their parent class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Abstraction: Hiding the impleme...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You can prepare well for the interview.

Skills evaluated in this interview

Student Intern Interview Questions asked at other Companies

Q1. Have you finished the database and data structures courses in you study program?
View answer (1)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Questions related to COBOL,JCL,VSAM,DB2,CICS,Vision plus

I applied via Referral and was interviewed before Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Previous work related queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepares office and sap

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills

Interview Questionnaire 

1 Question

  • Q1. Who is the most important person have to transform you in your life?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just speak your mind you will be selected.

I applied via Approached by Company and was interviewed before Oct 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. Experience in related field of work
  • Q2. Domain experience in years
  • Ans. 

    I have X years of domain experience.

    • I have worked in this domain for X years.

    • During my time in this domain, I have gained expertise in various areas such as...

    • I have worked on projects related to...

    • I have experience working with clients in this domain.

    • I keep myself updated with the latest trends and developments in this domain.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident before you attend interview with hiring manager. Explain in detailed about your roles and responsibilities.. Make sure your explanation should attract to hiring manager.

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Walk-in and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Where do you want to see yourself after 5 years?
  • Q2. What are your preferences?
  • Q3. If given a chance on what do you want to make changes on the project if you've been assigned to achieve positive results with fewer efforts?
  • Q4. What are your expectations?
  • Q5. How do you want a corporate structure to be?
  • Q6. Why did you leave your last company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions asked to a fresher I would expect those to be a friendly manner and allow him to speak what he can and not just the questions you ask.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

Smart Internz Interview FAQs

How many rounds are there in Smart Internz interview?
Smart Internz interview process usually has 3-4 rounds. The most common rounds in the Smart Internz interview process are Aptitude Test, Coding Test and Resume Shortlist.
How to prepare for Smart Internz 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 Smart Internz. The most common topics and skills that interviewers at Smart Internz expect are CRM, SAN, SMS, SOC and IT Services.
What are the top questions asked in Smart Internz interview?

Some of the top questions asked at the Smart Internz interview -

  1. What are the oops concepts in j...read more
  2. What technologies you should kn...read more

Tell us how to improve this page.

Smart Internz Interview Process

based on 5 interviews

Interview experience

4.6
  
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
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
Internshala Interview Questions
3.8
 • 56 Interviews
Youth4work Interview Questions
4.3
 • 1 Interview
View all

Smart Internz Reviews and Ratings

based on 29 reviews

4.4/5

Rating in categories

3.9

Skill development

4.0

Work-life balance

3.3

Salary

3.8

Job security

4.1

Company culture

3.5

Promotions

4.0

Work satisfaction

Explore 29 Reviews and Ratings
Salesforce Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Salesforce Developer Intern
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Intern
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Salesforce Administrator
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Science Intern
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Smart Internz with

Internshala

3.8
Compare

Youth4work

2.8
Compare

Intern Theory

4.7
Compare

ITConnectUS Inc.

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