Upload Button Icon Add office photos

Filter interviews by

Texas Instruments Software Developer Intern Interview Questions, Process, and Tips

Updated 15 Sep 2021

Texas Instruments Software Developer Intern Interview Experiences

1 interview found

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

The first Round was held on Hackerrank and the questions were of medium difficulty based on Data Structures and Algorithms.
The time of test was 1:00 PM and it was of 45 minutes with 2 coding questions to be solved.

  • Q1. 

    Josephus Problem Statement

    Consider 'N' individuals standing in a circle, numbered consecutively from 1 to N, in a clockwise direction. Initially, the person at position 1 starts counting and will skip K-...

  • Ans. 

    This question is about finding the position of the last person surviving in a circle of N people, where each person kills the Kth person in a clockwise direction.

    • Implement a function that takes the number of test cases, N, and K as input

    • For each test case, simulate the killing process by iterating through the circle and skipping K-1 people

    • Keep track of the position of the last person surviving and return it as the outp

  • Answered by AI
  • Q2. 

    Meeting Rooms Allocation Problem Statement

    Stark Industry is planning to organize meetings for various departments in preparation for Stark Expo. Due to limited rooms in Stark Tower, the goal is to alloca...

  • Ans. 

    The task is to find the minimum number of conference rooms required to organize all the meetings.

    • Sort the meetings based on their start time.

    • Initialize a priority queue to store the end times of the meetings in ascending order.

    • Iterate through the sorted meetings and check if the start time of the current meeting is greater than the end time of the meeting at the top of the priority queue.

    • If it is, remove the meeting fr...

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Medium

A google Doc was shared with us and we were supposed to write code there.
Use of IDEs was not allowed so we had to write correct code on Google Docs which was later checked by them through online IDEs.
The Interviewer were friendly and observative and helped us through code if we made some silly error.

  • Q1. 

    Snake and Ladder Problem Statement

    Given a 'Snake and Ladder' board with N rows and N columns, where positions are numbered from 1 to (N*N) starting from the bottom left, alternating direction each row, f...

  • Ans. 

    The question is about finding the minimum number of throws required to reach the last cell on a Snake and Ladder board.

    • The board is represented as a 2D matrix with N rows and N columns.

    • Each square on the board can have a snake or ladder, represented by a non-negative number.

    • The destination of a snake or ladder is the value at the corresponding square.

    • You can only take a snake or ladder once per move.

    • If the destination ...

  • Answered by AI
  • Q2. 

    Largest Rectangle in Histogram Problem Statement

    You are given an array/list HEIGHTS of length N, where each element represents the height of a histogram bar. The width of each bar is considered to be 1.

    ...
  • Ans. 

    The task is to find the largest rectangle possible in a given histogram and return its area.

    • Iterate through the histogram and maintain a stack to keep track of the indices of the bars in non-decreasing order of heights.

    • For each bar, calculate the area of the rectangle that can be formed using that bar as the smallest bar.

    • To calculate the area, pop the bars from the stack until a bar with a smaller height is encountered...

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The face to face round was held on Google Meet where initially Interviewer asked a DS/Algo problem and then Later Manager Joined and asked about our resume projects in detail.
The time was 10:00 AM

  • Q1. 

    Maximum Sum Rectangle Problem

    Given an M x N matrix of integers ARR, your task is to identify the rectangle within the matrix that has the greatest sum of its elements.

    Input:

    The first line of input co...
  • Ans. 

    The task is to find the maximum sum rectangle in a given matrix of integers.

    • Iterate through all possible rectangles in the matrix

    • Calculate the sum of each rectangle

    • Keep track of the maximum sum rectangle found so far

    • Return the maximum sum

  • Answered by AI
  • Q2. 

    XOR Query Problem Statement

    Assume you initially have an empty array called ARR. You are required to return the updated array after executing Q number of queries on this array.

    There are two types of que...

  • Ans. 

    The problem requires updating an array based on a series of queries, where each query can either insert a value or perform a bitwise XOR operation on all elements.

    • Use a loop to iterate through each query and update the array accordingly

    • For type 1 query, append the value to the end of the array

    • For type 2 query, perform a bitwise XOR operation on each element of the array with the given value

    • Return the updated array afte

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7.5 CGPATexas Instruments interview preparation:Topics to prepare for the interview - Dynamic Programming, Greedy Techniques, Data Structures, OOPs, DBMS, Graph TheoryTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Prepare OS,DBMS,OOPs too
Tip 2 : Mention atleast one project or past work experience in your resume
Tip 3 : Try maintaining 8+ CGPA as sometimes shortlist is done based on CGPA
Tip 4 : Try past interview questions from Coding Ninjas Site.

Application resume tips for other job seekers

Tip 1 : Try to Keep Resume 1 Pager
Tip 2 : Have atleast one project or past work experience mentioned
Tip 3 : Don't put false things on Resume as questions are asked in detail from Resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at Vishwakarma Institute of Technology, Pune and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Resume Shortlist 

(1 Question)

  • Q1. CGPA over 8 was the criteria
Round 2 - Aptitude Test 

Logical Reasoning, Verbal Reasoning , Quantitative Ability, Digital Electronics
DSP, C, Verilog, Digital Design

Round 3 - Technical 

(5 Questions)

  • Q1. Array addition of two numbers
  • Ans. 

    Add two numbers represented as arrays

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other

    • Return the result as a new array

  • Answered by AI
  • Q2. Access modifiers in java
  • Ans. 

    Access modifiers in Java control the visibility of classes, methods, and variables.

    • There are four types of access modifiers in Java: public, protected, default (no modifier), and private.

    • Public: accessible from any other class.

    • Protected: accessible within the same package or subclasses.

    • Default: accessible only within the same package.

    • Private: accessible only within the same class.

    • Example: public class MyClass {}

  • Answered by AI
  • Q3. Complete code of all projects
  • Ans. 

    It is not common practice to provide complete code of all projects in an interview setting.

    • It is not recommended to share complete code of all projects due to confidentiality and intellectual property concerns.

    • Instead, focus on discussing the technologies used, challenges faced, and solutions implemented in your projects.

    • Provide code snippets or high-level overviews of your projects to showcase your skills and experien

  • Answered by AI
  • Q4. Deep learning- Yolov5 architecture, details on kernel size, reason for choosing Yolov5, preprocessing techniques
  • Q5. BLE(Bluetooth Low Energy), Macros in C

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Basic c questions?
  • Q2. Linkedlist related questions?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The General Aptitude Questions from the Sites are being asked

Round 2 - Coding Test 

Java concepts, Arraylists, and hashmaps were being asked to use in a solution.

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Medium

It was conducted in evening from 6 to 8 pm
Online live proctorong was there for which android phone was also needed along with laptop
This was the first round so i attended interview in the next round.

  • Q1. 

    Team Formation Problem Statement

    You will be provided with an array/list 'ARR' consisting of 'N' positive integers representing runs scored by 'N' top players in their last innings. An integer 'X' is also...

  • Ans. Brute Force

    The basic idea of this approach is to iterate the whole ‘ARR’ from start and check for all the elements present after it. If the sum of the current pair is less than or equal to ‘X’ minus 30 then we will check if it is less than our temporary answer or not. If it is less then we will replace it with a temporary answer.
     

    Here is the algorithm:
     

    1. Declare a temporary array/list variable ‘ANS’ in which we...

  • Answered Anonymously
Round 2 - Face to Face 

Round duration - 3 hrs
Round difficulty - Medium

It started from 9'o clock in the morning
It was conducted on webex meetings app.
The interviewer was very professional.

Round 3 - HR 

Round duration - 90 minutes
Round difficulty - Hard

It was in the evening

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Lovely Professional University. I applied for the job as SDE - Intern in BangaloreEligibility criteriaAbove 7.5 CGPAInfineon Technologies interview preparation:Topics to prepare for the interview - Data Structures And Algorithm, Dynamic Programming, OOPS, Android App Development, HTML, CSS, JavaScriptTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practise at least 2 coding questions on daily basis
Tip 2 : After learning a particular topic try to implement it on some real world project
 

Application resume tips for other job seekers

Tip 1 : Mention the latest projects that you have done
Tip 2 : Be very clear and precise regarding your projects

Final outcome of the interviewRejected

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude and technical questions were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Pattern question
  • Q2. Doubly linked list insertion
Round 3 - Behavioral 

(2 Questions)

  • Q1. C++ linked lists
  • Q2. Resume based, projects were asked.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. OOPS question to develop a fault-sensing algorithm in machines
  • Q2. Debug array question in bubble sort
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General aptitude questions

Round 2 - Coding Test 

Problem solving, solved 2 out of 3 questions

Round 3 - Group Discussion 

General topics were given in gd

Round 4 - Technical 

(2 Questions)

  • Q1. Programming concepts
  • Q2. Projects and coding round questions solved
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Technical plus aptitude based on domain you choose( pre placemt talks)

Round 2 - Technical 

(2 Questions)

  • Q1. Communication theory , aptitude, electronics basics for firmware domain(screening)
  • Q2. Coding related questions
Round 3 - Technical 

(1 Question)

  • Q1. Circuits related practical questions
Round 4 - HR 

(1 Question)

  • Q1. General things only
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Profit and loss ,time and work ,speed distance and time

Round 2 - Coding Test 

Java ,ops ,collection frameworks

Tell us how to improve this page.

Interview Questions from Similar Companies

Qualcomm Interview Questions
3.8
 • 273 Interviews
Intel Interview Questions
4.2
 • 222 Interviews
Synopsys Interview Questions
3.9
 • 88 Interviews
Molex Interview Questions
3.9
 • 53 Interviews
View all

Texas Instruments Software Developer Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Analog Design Engineer
140 salaries
unlock blur

₹15 L/yr - ₹41 L/yr

Software Engineer
72 salaries
unlock blur

₹9.6 L/yr - ₹39.2 L/yr

Design Engineer
52 salaries
unlock blur

₹9.9 L/yr - ₹29.4 L/yr

Digital Design Engineer
46 salaries
unlock blur

₹19 L/yr - ₹36 L/yr

Application Developer
40 salaries
unlock blur

₹8 L/yr - ₹26 L/yr

Explore more salaries
Compare Texas Instruments with

Analog Devices

4.1
Compare

NXP Semiconductors

3.7
Compare

Microchip Technology

4.0
Compare

STMicroelectronics

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