A. Biofeedback
Its where your body is read by a machine and you read the machine
Answer:
Physical layer
Explanation:
OSI model stands for Open Systems Interconnection. The seven layers of OSI model architecture starts from the Hardware Layers (Layers in Hardware Systems) to Software Layers (Layers in Software Systems) and includes the following;
1. Physical Layer
2. Data link Layer
3. Network Layer
4. Transport Layer
5. Session Layer
6. Presentation Layer
7. Application Layer
Each layer has its unique functionality which is responsible for the proper functioning of the communication services.
In the OSI model, the physical layer is the first and lowest layer. Just like its name physical, it addresses and provides information about the physical characteristics such as type of connector, cable type, length of cable, etc., of a network.
This ultimately implies that, the physical layer of the network (OSI) model layer provides information about the physical dimensions of a network connector such as a RJ45. A RJ45 is used for connecting a CAT-5 or CAT-6 cable to a networking device.
Answer:
the save command is located in the file menu
Answer:
The solution code is written in C++
- void BigInt(int n){
-
- int i, j;
-
- for(i = 1; i <= n; i++){
-
- for(j = 1; j <= i; j++){
-
- if(j < 10){
-
- cout<<j;
- }
- else{
- cout<<0;
- }
-
- }
-
- cout<<"\n";
-
- }
- }
- int main()
- {
- BigInt(10);
-
- return 0;
- }
Explanation:
Firstly, create a function BigInt that takes one input number, n.
Next, create a double layer for-loop (Line 5-21). The outer loop is to print one big number per iteration and the inner layer is keep printing the accumulated individual digit for a big number. To ensure the big number is printed one below the other, we print a new line in outer loop (Line 19).
In main program, we call the function to print the big number (Line 26).