You should use word processor software for writing a letter
reason :
word processor is a software to make a letter. it has many functions. not only for make a letter. word processor is made for make a document in a computer
program examples :
- Microsoft Word
- Wordpad
Explanation:
Data bases; interpretation and presentation of data in useful formats by transforming raw data into information, data storage management.
Hardware: helps to get to the physical and tangible part of computer.
Software; helps to access the word processor, spreadsheet's and social media platforms and general operations in a computer.
Answer:
The typedef struct is as follows:
typedef struct jumper_t {
char name[16];
double tries[N_TRIES];
double best_jump;
double deviation;
} jumper_t;
The declaration of jlist is:
jumper_t jlist[10];
Explanation:
This defines the typedef structure
typedef struct jumper_t {
The following declares the variables as stated in the question
<em> char name[16];
</em>
<em> double tries[N_TRIES];
</em>
<em> double best_jump;
</em>
<em> double deviation;
</em>
}
This ends the typedef definition
jumper_t;
(b) The declaration of array jlist is:
jumper_t jlist[10];
Answer:
TCP/IP
Explanation:
TCP/IP which stands for Transmission Control Protocol and Internet Protocol are network protocols which divide your message into smaller chunks or fragments known as network packets and sends them out onto the Internet. When the chunks arrive at the intended destination, TCP/IP on the receiving end reassembles the network packets into the original message.
TCP/IP are the main protocols used for sending data over the internet.