Answer:
True they do. mark brainliest.!!!!! please
Explanation:
Lowercase a is decimal 97 ; upper case is decimal 65
It's easier to think of them in octal, however: a = octal 141, and A is octal 101
octal to binary is easy, each digit is three bits.
141 = 001 100 001
101 = 001 000 001
So, how many bits are changed above?
Answer:
I can :) just comment lol
Answer:
1/2000
Explanation:
import java.util.Scanner;
public class InputExample {
public static void main(String [] args) {
Scanner scnr = new Scanner(System.in);
System.out.print("Enter birth month and date:");//comment this line if not needed
int birthMonth=scnr.nextInt();
int birthYear=scnr.nextInt();
String output= birthMonth+"/"+birthYear+"\n";
System.out.println(output);
}
}
if using this code the out put should be 1/2000