The <u>OSI model</u> describes how data actually moves from an application on one computer to an application on another networked computer.
<h3>What is the OSI model?</h3>
OSI model is an acronym for open systems interconnection and it comprises seven (7) main layers, which typically starts from the hardware layers (layers in hardware systems) to the software layers (layers in software systems)
<h3>The layers of the OSI model.</h3>
Basically, there are seven (7) layers in the open systems interconnection (OSI) model and these include the following in sequential order;
In this context, we can infer and logically deduce that the <u>OSI model</u> is typically used to describe and illustrate how data moves from a software application on one computer to a software application located on another networked computer.
Read more on OSI model here: brainly.com/question/26177113
#SPJ1
Answer: True A.
Explanation: Every app has or needs a program
By demmaku :v
def recursiveFactorial(number):
if number > 0:
return number * (recursiveFactorial(number - 1))
else:
return 1
stringNum = input("Enter a positive integer: ")
num = int(stringNum)
print(recursiveFactorial(num))
I hope this helps!
Answer:
#include <bits/stdc++.h>
using namespace std;
void funct(){
string name;
cout<<"enter the string: ";
cin>>name;
reverse(name.begin(), name.end());
cout<<"The string is : "<<name<<endl;
}
int main()
{
funct();
return 0;
}
Explanation:
create the function funct() with return type void and declare the variable type string and print a message for asking to used enter the string.
The string enter by user is store in the variable using cin instruction.
after that, we use a inbuilt function reverse() which takes two argument.
firs argument tell the starting point and second index tell the ending point. then, the reverse function reverse the string.
name.begin() it is a function which return the pointer of first character of string.
name.end() it is a function which return the pointer of last character of the string.
finally, print the reverse string.
for calling the function, we have to create the main function and then call the function.
Answer:
Anything that doesn't have to do with food (including water), shelter, or clothing.
For Example: Going to the pool is not a need, going on vacation is not a need etc. etc.
Hope this helps
Explanation: