You can still go on a date with you if I get a text from my friend that is in a relationship and you don’t know why
Answer:
B. 11110111
Explanation:
Binary representation of number 9 = 00001001
Binary representation of -9 would involve calculating the twos complement representation of 00001001
First we compute the ones complement of this number by reversing the bits.
00001001 => 11110110
Next we calculate the twos complement representation by adding 1 to the ones complement.
11110110+1 = 11110111
So the final representation is 11110111.
Answer:
You will have one letter for every receiver on the table.
Explanation:
In a new Microsoft Word paper, click on the Mailings label, and in the Start Mail Merge collection, agree on Start Mail Merge.
Agree on Step-by-Step Mail Merge Wizard.
Choose your paper model.
Choose the opening paper.
Preferred beneficiaries.
Address the report and attach your custom entries.
Answer:
Beginner
Explanation:
A program like this is ideal for a beginning exerciser due to the high number of repetitions and the sets are not much.
Cheers
num1 = float(input("Enter the first number: "))
num2 = float(input("Enter the second number: "))
operation = input("Which operation are you performing? (a/s/m/d) ")
if operation == "a":
print("{} + {} = {}".format(num1, num2, num1+num2))
elif operation == "s":
print("{} - {} = {}".format(num1, num2, num1-num2))
elif operation == "m":
print("{} * {} = {}".format(num1, num2, num1*num2))
elif operation == "d":
print("{} / {} = {}".format(num1, num2, num1/num2))
I hope this helps!