MCU (Microcontroller unit) consists of a CPU (Central Processing Unit), memory and some
other peripherals. correct answers True
Which one of the following is not part of MSP432 MCU?
- simple peripherals such as buttons and LEDs
- Blocks that are in charge of reset, clock and power
- Several timers
- Different types of memory including ROM, SRAM and flash
-Analog interface including ADC (Analog to Digital Converter)
- Digital interface including UART SPI, I2C, I/O ports
- CPU correct answers simple peripherals such as buttons and LEDs
XDS110 is the is the emulator on the launchpad board that helps program/debug the main
microcontroller whereas MSP432 is the main microcontroller on the Launchpad board . correct
answers - is the emulator on the launchpad board that helps program/debug the main
microcontroller
- the main microcontroller on the Launchpad board
Which statement is true?
- MSP432 is on the Launchpad.
- Launchpad is on the MSP432.
- XDS110 is on the MSP432.
- MSP432 is on the XDS110. correct answers - MSP432 is on the Launchpad.
On what component is the tri-color LED that can be driven by PWM
- Boosterpack
-LaunchPad
- MSP432 chip correct answers Boosterpack
On what component is the tri-color LED cannot be driven by PWM
- Boosterpack
-LaunchPad
- MSP432 chip correct answers Launchpad
On what component is Joystick
- Boosterpack
-LaunchPad
- MSP432 chip correct answers Boosterpack
On what component is the ADC (Analog-toDigital Converter)
- Boosterpack
-LaunchPad
- MSP432 chip correct answers MSP432 Chip
, On what component is the large S1 and S2 buttons found
- Boosterpack
-LaunchPad
- MSP432 chip correct answers Boosterpack
On what component is the Timer_A found
- Boosterpack
-LaunchPad
- MSP432 chip correct answers MSP432 chip
On what component is the UART found
- Boosterpack
-LaunchPad
- MSP432 chip correct answers MSP432 chip
On what component is Timer32 found
- Boosterpack
-LaunchPad
- MSP432 chip correct answers MSP432 chip
On what component is the micro-USB port found
- Boosterpack
-LaunchPad
- MSP432 chip correct answers Launchpad
On what component is the Debugger chip found
- Boosterpack
-LaunchPad
- MSP432 chip correct answers Launchpad
If the first address the integer resides is A, it is going to take up A, A+1, A+2, and A+3 in the
memory. If the least significant byte is stored at address A, followed by the next least significant
byte at A+1 and so on, it is called correct answers little-endian
if the most significant byte is at address A, followed by the next significant byte at address A+1
and so on, it is called correct answers big-endian
Choose True or False:
1) A struct in the C programming language is a composite data type (or record) declaration that
defines a physically grouped list of variables to be placed under one name in a block of memory,
allowing the different variables to be accessed via a single pointer. correct answers True
Choose True or False:
In C, a struct can be returned value of a function. correct answers True
Choose True or False: