Answer: flash drive
Explanation:
Flash drives are refered to as small, portable storage devices which makes use of a USB interface in order to be connected to a laptop.
Flash cards are removable and rewritable. They are mainly used to store data. Flash cards can be found in computers, laptops, digital cameras etc.
Answer:
a: Twisted pair won't span a 400-foot distance.
Explanation:
The maximum distance that twisted pair cables can support without attenuation is 100 meters which is approximately 328 feet and the two office buildings are 400 feet apart, so it is useless to install a twisted pair cable for such a large distance. A much better option would be to install optic fiber. Though it is a bit expensive but it is the best option in this case.
Hence option (a) is the correct reason for installing an optic fiber cable rather than a twisted pair cable.
The options are available for storing backups, physically are:
- In both on site and off site,, a person can backup data to a given system that is located on-site, or the backups can be sent to any remote system that is off-site.
<h3>What is a backup?</h3>
This is known to be a device that helps to save information or data temporarily or permanently.
Note that in the above, The options are available for storing backups, physically are:
- In both on site and off site,, a person can backup data to a given system that is located on-site, or the backups can be sent to any remote system that is off-site.
Learn more about backups from
brainly.com/question/17355457
#SPJ12
Answer:
The program to this question can be given as:
Program:
#include <stdio.h> //include header file.
int main() //defining main method
{
char i,j; //defining variable
for (i='a'; i<='e'; i++) //outer loop for column
{
for (j='a'; j<='e'; j++) //inner loop for row
{
printf("%c%c\n",i,j); //print value
}
}
return 0;
}
Output:
image.
Explanation:
- In the above C language program, firstly a header file is included. Then the main method is defined in this, a method contains a char variable that is "i and j". This variable is used in for loop, that is used to print the pattern.
- To print the following patter two for loop is used the outer loop is used for print columns and the inner loop prints row.
- In C language to print character, we use "%c" inside a loop print function is used, that prints characters.
Answer:
The right answer is Letter B. It is an area of memory that is used for dynamic memory allocation.
Explanation:
<em>Because a store procedure is not a computer program,neither a computer software . It is a type of code or subroutine available to applications that access a relational database management system. Such procedures are stored in the database data dictionary. It serves to save time and memory, extensive or complex processing that requires execution of several SQL. </em>