Answer:
(202)₁₀ = 202
(11010001)₂ = 209
(F1)₁₆ = 241
(256)₁₀ = doesn't fit in one byte
Explanation:
You can enter these numbers in windows calculator in programmer mode.
Answer:
C
Explanation:
he be looking better than cashmoney
Answer:
I will write the code in C++ and JAVA
Explanation:
<h2>
JAVA CODE</h2>
public class Main
{ public static void main(String[] args) {
// displays Gershwin,George
System.out.println("Gershwin,George"); } }
<h2>
C++ Code:</h2>
#include <iostream>
using namespace std;
int main()
{ cout<<"Gershwin,George";
}
// displays last name Gershwin followed by , followed by first name George
//displays Gershwin,George as output.