Answer:
1. Write through
2. Write back
3. Write back
4. Write through.
Explanation:
The answers are given accordingly as above.
Answer
The senders PC is using UDP protocol
Explanation
UDP is the User Datagram Protocol which is used as an alternative communication protocol to the TCP which is used primarily for establishing low latency and loss of tolerating connections between applications on the internet UDP is normally used by the programs running on different computers on a network. Its purposes is to send short messages which are datagrams. It is not much reliable because of its occasional loss of packet. Due to this packet loss the recipient is not guaranteed that the data being streamed will not get interrupted. This is because If a router on the Internet starts getting overloaded, or a packet gets corrupted due to interference or anything, the packet will be dropped unlike the TCP (Transmission control protocol)which resend the packets and keeps re sending. The UDP does not resend the packets which are dropped. Once they are dropped that all.
Answer:
-10
Explanation:
Given hex number = 0x FFF6
Converting it to binary: 1111111111110110
Generating 1s complement of the binary representation by inverting the bits :
0000000000001001
Adding 1 to generate the 2's complement :
0000000000001001 + 1 = 0000000000001010
Converting it to decimal , this corresponds to 10
So the 2s complement of original number is 10. This means that the original number is -10.
A. True
Explanations:
You can redefine or overload the function of most built-in operators in C++. These operators can be overloaded globally or on a class-by-class basis. Overloaded operators are implemented as functions and can be member functions or global functions. An overloaded operator is called an operator function.
The correct statements are:
- An object of the ActivationLayer class has a name attribute.
- print(FCLayer(42)) prints FullyConnectedLayer.
- When creating an object of the BaseLayer class, the name argument must be given.
<h3>What is Coding?</h3>
The term Computer coding is known to be seen as a kind of a tool that is often use in computer programming languages and it helps to give computers and machines a number of instructions on the things that need to be done or performed.
Note that in the code, the The correct statements are:
- An object of the ActivationLayer class has a name attribute.
- print(FCLayer(42)) prints FullyConnectedLayer.
- When creating an object of the BaseLayer class, the name argument must be given.
See full question below
Choose the 3 correct statements for the code below.
An object of the ActivationLayer class has a name attribute.
An object of the BaseLayer class has a size attribute.
print(FCLayer(42)) prints FullyConnectedLayer.
When creating an object of the ActivationLayer class, the size argument must be given.
When creating an object of the BaseLayer class, the name argument must be given.
Learn more about Coding from
brainly.com/question/22654163
#SPJ1