Answer:
Cell.
Explanation:
Electromagnetic waves is a propagating medium used in all communications device to transmit data (messages) from the device of the sender to the device of the receiver.
Generally, the most commonly used electromagnetic wave technology in telecommunications is radio waves.
Radio waves can be defined as an electromagnetic wave that has its frequency ranging from 30 GHz to 300 GHz and its wavelength between 1mm and 3000m. Therefore, radio waves are a series of repetitive valleys and peaks that are typically characterized of having the longest wavelength in the electromagnetic spectrum.
Basically, as a result of radio waves having long wavelengths, they are mainly used in long-distance communications such as the carriage and transmission of data.
In the field of telecommunication, all telecommunication setup are designed and developed to make use of two network devices: one device is typically used for the transmission of data while the other device is used to receive data that are sent on the network.
Generally, cell towers are tall poles that are used to transmit frequencies to mobile phones.
Answer:
The answers to 1st question and part 2A is given. However, the 2B is not given complete and thus cannot be answered.
Explanation:
UNION is a keyword used in C Language to have a commonly shared memory that can be used by multiple elements. It is a data-type that allows different data types to use the same shared memory location.
Importance: If you want to minimize the use of memory by sharing it between different datatype variables, then use UNION. For Ex. Let's suppose I want to use 2 variables a and b of type char and int respectively. Now, suppose int takes memory space of 2 bytes and char takes 1 byte then the total amount of memory needed = 2 + 1 = 3 Bytes. But, we want to first make use of a, and once done, we want to declare variable b. We can limit the memory use by declaring a memory space of 2 bytes (max of a and b). First, we can use this space to store the int variable and when done with it, we can use it to store the char variable.
PART 2A
typedef struct{
int partNum;
char partName[25];
} partin;
#define Partin partin
Answer:
¿???????????? SORRY..........
The complete program is to define a boolean method that returns true if all elements of an array are negative, or return false, if otherwise
The method in java, where comments are used to explain each line is as follows:
//This defines the method
public static boolean chkNegative (double[] myArr) {
//This initializes a boolean variable
boolean isNeg = true;
//This iterates through the array
for (int i = 0; i < myArr.length; i++) {
//If the array element is 0 or positive
if (myArr[i] >= 0) {
//Then the boolean variable is set to false
isNeg = false;
//And the loop is exited
break;
}
}
//This returns true or false
return isNeg;
}
Read more about boolean methods at:
brainly.com/question/18318709