Create a boot loader with the following requirements:

1. Boot loader does nothing.
2. Boot loader displays the first character of your name.
3. Boot loader displays your register number and full name.

Answer :

Note that the boot loader that meets the above requirements is

// Boot Loader 1 - Donothing

void main(){

while (1) {

// Do nothing

}

}

// Boot Loader 2 - Display the first character of your name

void main(){

char name[10] = "Bard";

char first_character = name[0];

while (1) {

// Display the first character of your name

printf("%c\n", first_character);

}

}

// Boot Loader 3 - Display your register numberand full name

void main(){

char name[10] = "Bard";

int register_number = 123456789;

while (1){

// Display your register number and full name

printf("Register number: %d\n", register_number);

printf("Full name: %s\n", name);

}

}

What is a boot loader ?

A boot loader is a program that is responsible for loading and initializing the operating systemor other softwareon a computer.

It resides in the computer's firmware or boot sector and is executed when the system is powered on,guiding the startup process.

Learn more about boot loader at:

https://brainly.com/question/10206656

#SPJ1