Answer:
The result is -63
Explanation:
First, we discover the Binary value of 151 which is 10010111.
1 = most significant bit and it represents the sign as negative.
Two's compliment of 10010111, is calculated by adding 1 to one's compliment. We get 01101001 which is 105 in decimal.
Therefore the value of A (the first part) is -105.
Second, the binary value of 214 = 11010110.
1 = most significant bit and it represents the sign as negative.
Two's compliment of 11010110, is calculated by adding 1 to one's compliment. We get 00101010 which is 42 in decimal.
Therefore, the value of B (the second part) is -42.
Simplify further,
A - B = -105 - (-42)
= -105 + 42
= -63
Therefore, the result is -63,
Spanish is the most language spoken in the highschool
Answer:
Statisticians
Explanation:
Statistics is a science, technology, engineering, and math (STEM) related degree that involves acquiring knowledge through data. A statistician sources data through administering questionnaire, taking polls and carrying out experiments. From the collected data, the statistician makes use of statistical concepts to sift through large data sets, develop data interpretation and deduce relevant information from the data and present meaningful conclusion to the relevant bodies in fields such as education, manufacturing, marketing, government and healthcare.
Answer:
embedded computer
Explanation:
Based on the information provided within the question it can be said that the computer that determines this is called an embedded computer. This is a microprocessor-based system that is uniquely designed in order to perform a single specific task. Once it does so, it saves the information and can be used in a much larger system such as a car dashboard system.
public class Numbers {
public int multiply(int[] factors){
int product = 1;
for (int i : factors){
product *= i;
}
return product;
}
public static void main(String[] args) {
int [] factors = {1,2,3,4,5,6,7,8,9,10,11,12};
Numbers num = new Numbers();
System.out.println(num.multiply(factors));
}
}
I hope this helps!