Site Questions
TI History / General Trivia
C Programming
Electrical Engineering Concepts
Microcontroller & Microprocessor Basics
100

The sugar land site zip code

77479

100

Name 3 US colleges that TI recruited at in 2025

Florida, UT, A&M, Michigan, Illinois, purdue, north Carolina A&T, north carolina state, prairie view A&M, southern university A&M, North Carolina state, USC, UCLA, cal poly

100

The special ‘\0’ character terminates the end of every _.

string

100

Bus capacitance and clock speeds affect these two critical timing requirements

  • Setup and hold time
100

A form of non-volatile memory that persists the data written even if there is a power cycle. This memory is electrically erasable and programmable.


Flash memory

200

How many interns did TI Sugar Land have in the summer of 2025

Six

200

Name a calculator that TI released between the years 1990-2000

TI-81, TI-92 CAS, TI-83

200

What is the term for a variable that retains its value between function calls?

Static variable

200

In an AC circuit, what quantity is calculated as the ratio of the real power and apparent power?

Power factor

200

What does RTOS stand for

Real-Time Operating System

300

Name all 4 types of creamers available at the coffee station

The original, hazelnut, French vanilla, almond milk vanilla

300

What year did jack kilby invent the integrated circuit

1958

300

The function used to allocate a single block of contiguous memory on the heap at runtime, initialized to zero

calloc()

300

Unlike an SR flip flop, the JK flip flop does not suffer from this problem when both inputs are high

  • Invalid or undefined state
300

What does JTAG stand for

  • Joint Test Action Group
400

How many people currently work at the Sugar Land site

181

400

Name the 3 US cities with the largest TI sites (number of people)

Dallas, Lehi, Richardson

400

Which git command is used to combine alterations from one branch into another. It forms a linear history, avoiding merge commits. Use it to clean up commit history, keep a project history sequential, and make feature branches up-to-date before uniting

git rebase

400

In a N channel MOSFET, which is the more negative of the elements?

Source

400

What is the maximum number of devices theoretically addressable on a standard I2C  bus

  • 112 (due to reserved addresses) – We will also accept 128
500

Name the (3rd floor) room directly above the astrodome

Katy conference room

500

The TI device or device category of part number: BZX84WC18V  

  • Zener diode
500

What C programming term describes the below lines of code for a function foo(): (4)

int (*whatami)(int, int);

 whatami = &foo;

Function pointer

500

In FFT computation, what mathematical property of twiddle-factor multiplication is exploited to reduce repeated calculations across stages?

  • Symmetry
500

The process of predicting which instruction will be executed next to improve pipeline efficiency

Branch prediction