Answer: <em><u>is Option B</u></em>.
B<u>)</u>. <u>Multi tasking</u>: A person capability to carry out more than one task at the same time is called multitasking. Person performing more than one task at the same time is nearly impossible and it's hard for him to focus on each and every detail, thus leading to scatter attention among numbers of things at a time resulting in inaccuracy and greater numbers of fault in final result.
<u>Explanation of other points:</u>
<u></u>
A<u>)</u>. <u>Attention:</u> is defined as performing tasks with special care and concentration.
C<u>)</u>. <u>Continuous partial attention:</u> Under this category people perform tasks by concentrating on different sources to fetch information by only considering the most valid information among all information. people who use this technique to gather information works superficially concentrating on the relevant information out of numerous sources in a short period of thinking process.
Answer:
The command print must be in lower case.
To show a variable or a number you do not need quotation marks.
Explanation:
print("string here")
strings can be created with single or double quotes
print(3+5) returns 8
The answer is online commercial banking :)
The most serious security threat to Bluetooth-enabled devices is
, which occurs when a hacker gains access to the device and its functions without the owner's consent.

Answer:
#include <iostream>
using namespace std;
int main()
{
int i = 45;
for ( i = 45; i <=165; i = i + 6)
cout << i << endl;
}
Explanation:
I corrected your code and highlighted the mistakes. Even though you wrote the correct algorithm, your code did not compile because of the typos you made.
Remember, C++ is a case-sensitive language. That means, "For" is not same as "for".
Generally, variables and keywords are written in lower case. Of course, there are exceptions, such as constant variables are all written in uppercase letter and class names start with an uppercase letter.