Answer:
following are the OSI Layers
1.physical layer
2.datalink layer
3.network layer
4.transport layer
5.session layer
6.presentation layer
7.application layer
Explanation:
physical layer is used to transmit media,signal and binary information
datalink layer is used for physical addressing MAC and LLC
network layer is used for path determination and ip
transport layer is for end to end communication and reliability
session layer is for interhost communication
presentation layer is for data representation and encryption
application layer is network process to application
Answer:
while(userNum>=1){
System.out.print(userNum/2+" ");
userNum--;
}
Explanation:
This is implemented in Java programming language. Below is a complete code which prompts a user for the number, receives and stores this number in the variable userNum.
<em>import java.util.Scanner;</em>
<em>public class TestClock {</em>
<em> public static void main(String[] args) {</em>
<em> Scanner in = new Scanner (System.in);</em>
<em> System.out.println("Enter the number");</em>
<em> int userNum = in.nextInt();</em>
<em> while(userNum>=1){</em>
<em> System.out.print(userNum/2+" ");</em>
<em> userNum--;</em>
<em> }</em>
<em> }</em>
<em>}</em>
The condition for the while statement is userNum>=1 and after each iteration we subtract 1 from the value of userNum until reaching 1 (Hence userNum>=1)
Answer:Creation of two-way forest trust
Explanation: In active directory, Two way forest trusty is the two way trusting condition where one forest trust the other forest and it works same for both forest.The forest domain of one forest is reliable and have trusty relationship with the other forest and vice-versa.
This function of the forest helps all the users to reliably access all the components of both the domains.Thus two-way forest trust should be created between the two organization mentioned in the question.
Answer:
C (2.5)
Explanation:
int(3.5) = 3
So, using order of operations, (3/2)+1=2.5
1. Cloud Storage, such as dropbox or Google drive,
2. Network attached storage, where all your data is stored on a central NAS, and you can access it in Windows explorer or Mac Finder
3 Data on flash drive or on an external hard drive.