Windows 10 thru 7 home and some people use mac osx
Answer:
C. &&
Explanation:
Of the options provided:
A) ++ : increment operator. For example : ++1 = 2
B) || : Logical OR operator. A || B is true if any one of A or B is true.
C) && : Logical AND operator. A && B is true if both A and B are true.
A B A && B
False False False
False True False
True False False
True True True
D) @ : Ampersand character (commonly used in email addresses) e.g, [email protected]
Answer:
The correct answer is A.
Explanation:
Moore's Law states/predicts that the maximum number of transistors that can be used on integrated circuits (processors etc.) will be doubled every two years so it basically predicts an exponential growth in terms of transistors used.
Doubling the number of transistors used means that it will almost certainly increase the performance of the processors. Of course there are a lot of other variables that the performance depends on but Moore's Law is proven to be true and is being used since 1960's. The answer given in option A is the one that best reflects on this law.
I hope this answer helps.