Upload Button Icon Add office photos

Talview

Compare button icon Compare button icon Compare

Filter interviews by

Talview Software Developer Intern Interview Questions and Answers

Updated 18 Nov 2024

Talview Software Developer Intern Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It has 30 basic aptitude question

Round 2 - Coding Test 

It has 2 coding based problem question

Round 3 - Interview 

(1 Question)

  • Q1. It give u time and date which on u are comfortable with while giving your interview

Interview Preparation Tips

Interview preparation tips for other job seekers - It's best opportunity for 2024/2025 batch

Software Developer Intern Interview Questions & Answers

user image Lakshmi prasanna Sarvepalli

posted on 18 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Coding Test 

2 codes and some mcqs

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - student 

(2 Questions)

  • Q1. Ask about our introduction and from the resume
  • Q2. Question is basically from the resume

Top trending discussions

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

Interview questions from similar companies

I appeared for an interview in Jul 2020.

Interview Questionnaire 

4 Questions

  • Q1. 1 if we call finish from oncreate in an activity in android. Will it call onresume and other lifecycle functions before ondestroy.
  • Ans. 

    No, calling finish() in onCreate() will not call onResume() or other lifecycle functions before onDestroy().

    • Calling finish() in onCreate() will immediately destroy the activity without calling any other lifecycle methods.

    • If you want to finish an activity after it has been created and resumed, you should call finish() in onPause() or onStop().

    • It is generally not recommended to call finish() in onCreate() as it can lead ...

  • Answered by AI
  • Q2. 2 Explain recyclerview and its corner cases.
  • Ans. 

    RecyclerView is a flexible view for providing a limited window into a large data set.

    • RecyclerView is used to display large sets of data efficiently

    • It uses a ViewHolder pattern to recycle views

    • Corner cases include handling empty data sets and updating data dynamically

  • Answered by AI
  • Q3. 3 Define communication between acticity and fragment.
  • Ans. 

    Communication between activity and fragment is done through interfaces.

    • Activity implements an interface and passes it to the fragment

    • Fragment can then call methods of the interface to communicate with the activity

    • This allows for communication between the two components without tight coupling

  • Answered by AI
  • Q4. 4 find second largest element in an array.
  • Ans. 

    Find the second largest element in an array of strings.

    • Sort the array in descending order and return the second element.

    • Iterate through the array and keep track of the largest and second largest elements.

    • Use a priority queue to find the second largest element.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Recise data structures basic codes and relevant technology interview questions.

Skills evaluated in this interview

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

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

Data structures, particularly strings, play a crucial role in problem-solving.

Round 2 - HR 

(4 Questions)

  • Q1. Please tell me about yourself.
  • Ans. First of all , thank you! For this opportunity to introduce my self. I am Akash kumar kushwaha, I was born in bihar 2001 , but I live in ghaziabad now. I m currently pursuing my b.tech from IMS engineering college ghaziabad. And I completed my 10th and 12th from co-operative uchh vidyalaya jagdishpur with score 60% in 10th and 65% in 12th . And my hobby is playing cricket and travelling.
  • Answered by AKASH KUMAR KUSHWAHA
  • Q2. Why should we hire you?
  • Ans. 

    I have a strong technical background, excellent problem-solving skills, and a passion for software development.

    • I have a Bachelor's degree in Computer Science and 5 years of experience in software development.

    • I am proficient in multiple programming languages such as Java, Python, and JavaScript.

    • I have a track record of delivering high-quality code on time and within budget.

    • I am a quick learner and always eager to stay u...

  • Answered by AI
  • Q3. What are your strength and weakness .
  • Ans. 

    Strength: Problem-solving skills, Weakness: Impatience

    • Strength: Strong problem-solving skills demonstrated through successful projects

    • Weakness: Impatience when tasks take longer than expected, working on improving patience through time management techniques

  • Answered by AI
  • Q4. Why did you choose career in software developer.
  • Ans. 

    Passion for problem-solving and creating innovative solutions drove me to pursue a career in software development.

    • Fascination with technology and its potential to improve lives

    • Enjoyment of logical thinking and coding challenges

    • Desire to constantly learn and adapt in a fast-paced industry

    • Previous experience in programming projects or internships

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is your area of expertise in programming languages?
  • Ans. 

    My area of expertise in programming languages is in web development, specifically with JavaScript, HTML, and CSS.

    • Proficient in JavaScript for client-side scripting and server-side development with Node.js

    • Experienced in building responsive and interactive web applications using HTML and CSS

    • Familiar with popular frameworks and libraries like React, Angular, and Bootstrap

  • Answered by AI
  • Q2. What is JavaScript, and what are its benefits?
  • Ans. 

    JavaScript is a high-level, interpreted programming language used for creating interactive websites.

    • JavaScript is commonly used for client-side web development.

    • It allows for dynamic content updates without reloading the page.

    • JavaScript can be used to create interactive elements like forms, animations, and games.

    • It is supported by all major web browsers.

    • JavaScript can also be used for server-side development with Node.j...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Given a 2-D matrix, write a function to perform a spiral traversal of the matrix elements.
  • Ans. 

    A spiral traversal of a 2-D matrix involves visiting elements in a spiral order, starting from the top-left corner.

    • Initialization: Define boundaries for the top, bottom, left, and right of the matrix.

    • Traversal Order: Move right across the top row, then down the right column, then left across the bottom row, and finally up the left column.

    • Boundary Adjustment: After each direction, adjust the boundaries to move inward fo...

  • Answered by AI
  • Q2. Questions based on sql
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Both Aptitude and coding

Round 3 - Technical 

(1 Question)

  • Q1. Basic Java questions
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion only

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont try to give interview in this company this is not company we are students in this organization or I can say institute they treat us like a students
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Projects you have done
  • Ans. 

    I have worked on various projects, including web applications, mobile apps, and data analysis tools, enhancing user experience and efficiency.

    • Developed a responsive web application using React and Node.js for an e-commerce platform, improving load time by 30%.

    • Created a mobile app for a local restaurant that allows users to place orders and make reservations, increasing customer engagement.

    • Implemented a data analysis to...

  • Answered by AI
  • Q2. Scenario based questions
Round 2 - HR 

(2 Questions)

  • Q1. Why you want to join
  • Q2. Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best ☺️
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. What is event loop in JS?
  • Ans. 

    The event loop in JavaScript manages asynchronous operations, allowing non-blocking execution of code.

    • JavaScript is single-threaded, meaning it can only execute one task at a time.

    • The event loop continuously checks the call stack and the message queue.

    • When the call stack is empty, the event loop pushes the first message from the queue to the stack for execution.

    • Example: setTimeout(() => console.log('Hello'), 1000) a...

  • Answered by AI
  • Q2. What is virtual DOM in react
  • Ans. 

    The virtual DOM is a lightweight representation of the actual DOM used by React to optimize rendering and improve performance.

    • The virtual DOM is a JavaScript object that mirrors the structure of the real DOM.

    • React uses the virtual DOM to determine what changes need to be made to the actual DOM.

    • When a component's state changes, React updates the virtual DOM first, then compares it with the real DOM (a process called rec...

  • Answered by AI

I applied via Referral and was interviewed in Nov 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is latest technology you have worked on
  • Ans. 

    I have worked on React Native for mobile app development.

    • Developed a mobile app for a client using React Native

    • Used Redux for state management

    • Integrated with Firebase for real-time database and authentication

    • Implemented push notifications using Firebase Cloud Messaging

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why you want to join us

Interview Preparation Tips

Interview preparation tips for other job seekers - Be true to what you know and answer with good confidence

Talview Interview FAQs

How many rounds are there in Talview Software Developer Intern interview?
Talview interview process usually has 1-2 rounds. The most common rounds in the Talview interview process are Coding Test and Aptitude Test.

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

AccioJob Interview Questions
3.7
 • 51 Interviews
Prepca Eduserv Interview Questions
4.0
 • 44 Interviews
Adda 247 Interview Questions
3.2
 • 37 Interviews
98thPercentile Interview Questions
4.0
 • 17 Interviews
Airblack Interview Questions
4.1
 • 17 Interviews
Playto Labs Interview Questions
4.1
 • 11 Interviews
ENTRI SOFTWARE Interview Questions
3.7
 • 10 Interviews
Cyboard School Interview Questions
4.3
 • 9 Interviews
View all
Technical Support Engineer
13 salaries
unlock blur

₹2.5 L/yr - ₹4 L/yr

Senior Software Engineer
13 salaries
unlock blur

₹16.5 L/yr - ₹30 L/yr

Associate Software Engineer
10 salaries
unlock blur

₹4.1 L/yr - ₹10 L/yr

Product Manager
7 salaries
unlock blur

₹26.5 L/yr - ₹31 L/yr

Software Engineer
6 salaries
unlock blur

₹3 L/yr - ₹19.8 L/yr

Explore more salaries
Compare Talview with

Adda 247

3.1
Compare

Futurense Technologies

3.3
Compare

Prepca Eduserv

4.0
Compare

Airblack

4.1
Compare
write
Share an Interview