A. We still have evidence the universe is expanding as well
Answer:
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
float f0;
//Prompt user for input
cout<<"Enter Initial Key Frequency: ";
cin>>f0;
//Initialize number of keys
int numkey = 1;
//Print first key frequency
printf("%0.2f", f0);
cout<<" ";
while(numkey<=4)
{
f0*= pow(2,(1.0/12.0));
printf("%0.2f", f0);
cout<<" ";
numkey++;
}
return 0;
}
Explanation:
Line 4 declares fo (the key frequency) as float
Line 6 prompts user for input
Line 7 accepts input
Line 9 initializes number of keys to 1
Line 11 prints first key frequency (the input from the user)
Line 12 - 18 is an iteration that calculates and print key frequencies
Line 14 calculates the next 4 key frequencies
Line 15 prints the corresponding key frequency
Answer:
i think its B Int
Explanation:
i hope i helped you figure it out if not sorry i will try harder next time :3
Answer:
A. An object is an instance of a class.
Explanation:
ʕ•ᴥ•ʔ
Answer:
FF-FF-FF-FF-FF-FF and 255.255.255.255
Explanation:
FF-FF-FF-FF-FF-FF can be defined as the layer 2 address broadcast which is often used on ethernet frames as well as help to broadcast all equipment due to the fact broadcast is made possible through Ethernet networks in which the Frames are addressed to reach every computer system on a given LAN segment as far as they are addressed to MAC address FF:FF:FF:FF:FF:FF.
255.255. 255.255 can be seen as the layer 3 address which help to address the exact same hosts because it enables the broadcast address of the zero network which is the local network due to the fact that the IP broadcasts are often used by BOOTP and DHCP clients to find and send requests to their respective servers in which a message sent to a broadcast address may be received by all network-attached hosts.
Therefore the Layer 2 and Layer 3 destination addresses which the message contain are FF-FF-FF-FF-FF-FF and 255.255.255.255