Answer:int x = 5;
if(x < 5)
cout << "line 1 ";
cout << "line 2";
A. line 1 line 2 B. line 1 C. line 2
D. line 1 E. line 1line 2
line 2
2. What would be output by the following code? _______
int x = 0;
while(x < 5)
{
cout << x << " ";
x++;
}
A. 0 1 2 3 4 5 B. 1 2 3 4 5 C. 0 1 2 3 4
D. 0 E. 0 0 0 0 0
3. After execution of the following code, what will be the value of input_value if the value 3 is entered at the keyboard at run time? ________
cin >> input_value;
if (input_value > 5)
input_value = input_value + 5;
else if (input_value > 2)
input_value = input_value + 10;
else
input_value = input_value + 15;
a. A. 8
b. B. 13
c. C. 18
d. D. 0
e. E. 5
4. What would the user see displayed on the screen after the following lines of code are executed?¬¬________
int i = 6;
if (i == 10)
cout << “value: “ << i;
else
cout << "hmmm";
A. value: i B. value: 10
C. hmmm D. value: ihmmm
E. value: 10
Hmmm
5. What is the output of the following lines of code? ______
for(int i=0; i<4; i++)
cout << (i * 3) << " ";
A. 0 1 2 3 4 B. 0 3 6 9
C. 0 3 6 9 12 D. 0 1 2 3 E. 0 0 0 0
Explanation:
Storyboarding is helpful during the planning stage of web design.
Explanation:
Organizing your thoughts can be a struggle. In other words, keeping characters, footages, and concepts coherent and apprehensive is a hassle. Visual representation of these concepts can help you stay structured and storyboarding is the best way visual organizer.
Story boards serve as the suitable blend of visuals and text. As far as script writing, novels, and creating other comprehensive plots, storyboards are perfect for sorting information.
Intensity is the brightness of a color. When a color is not mixed with any black or white it is at full intensity; Also called a pure hue. You can also change the intensity of a color by adding its complimentary color.
Hope this helps
Answer:
A downloaded executable file may contain harmful software know as malware.
Further details:
Malwares:
Malware (a portmanteau for pernicious programming) is any product purposefully intended to make harm a PC, server, customer, or PC network. Malware does the harm after it is embedded or brought somehow or another into an objective's PC and can appear as legitimately executable code, contents, supposed "dynamic substance" (Microsoft Windows), and different types of data. Some sorts of malware are to a great extent alluded to in the media as PC infections, worms, Trojan steeds, ransomware, spyware, adware, and scareware, among different terms. Malware has a malignant expectation, acting against the enthusiasm of the PC client—thus does exclude programming that causes accidental damage because of some lack, which is regularly portrayed as a product bug.
Uses:
Malware is once in a while utilized comprehensively against government or corporate sites to assemble monitored information, or to upset their activity as a rule. However, malware can be utilized against people to pick up data, for example, individual recognizable proof numbers or subtleties, bank or charge card numbers, and passwords.
Answer details:
Subject: Computer and technology
Level: College
Keywords:
• Harmful software
• Malware
• Malware software
• Uses of malware
• Purpose of malware
Learn more to evaluate:
brainly.com/question/4997492
brainly.com/question/4010464
brainly.com/question/1754173
Answer:
1.ClassName and . operator
2. ClassName and [] operator
Explanation:
There are two ways to get the members of a class first one is by using dot(.) operator.
Example : with assumption that person is a class object and age is the member in it we can use it as:
person.age
Second way is to use [] operator with member as a string in it which is used by the compiler as key to get its value.
Example : person["age"]