The answer is the amount of money you put in it, brainliest please.
<u>Answer:</u>
My suggestions are given below:
<em>Method 1:</em> Can create series of questions from book-inside and take an open-book test. Open-book test method is one of the best way to learn
<em>Method 2:</em> Written test is always necessary to really understand how much they remember the concept
<em>Method 3:</em> Participate in online quiz related to the learning outcome given in the question
<em>Method 4: </em>Answer questions from the reference books
<em>Method 5:</em> Go to library or review online books for further study.
Answer:
The ouput of the given code is :
22
is "Tom's age.
Explanation:
Here in this code the variable user_name and user_age are initialized to "Tom" and 22 respectively as statement is given in the question i.e cout << user_age << " \nis " + user_name << "'s age.";.This line will print the user_age i.e 22 after that the control moves to the next line and print is "Tom's age.
Following are the code in c++
#include <iostream> // header file
#include <string>
using namespace std;
int main() // main function
{
string user_name="Tom";
int user_age= 22;
cout << user_age << " \nis " + user_name << "'s age.";
return 0;
}
Output:
22
is "Tom's age.
Answer:
C. Symptoms of malware mutation
Explanation:
They are signs that could indicate that ones system is infected by virus.
Such signs includes:
1.Slow booting or startup.
2.Low space storage.
3.Blue screen of death.
4.Slow Internet performance.
5.Sending of spam messages.
6.Disabled security.
7.Browsing error.
8.Pop-up messages.
9.Renaming of files.
10.Loss of certain files, music, messages, etc.