You only put a numerical expression in numbers if it is over 100, it the calculation correctly.
<span />
The window that shows instructions for a lab activity is known as the Cisco Packet Tracer Activity window.
<h3>What is Packet Tracer activity?</h3>
Cisco Packet Tracer is known to be a form of a comprehensive networking technology that is made for lecture and it is also a learning tool that gives a kind of a special combination that are made up of realistic simulation and visualization experiences as well as assessment, activity authoring capabilities, and others.
Hence, The window that shows instructions for a lab activity is known as the Cisco Packet Tracer Activity window.
Learn more about computer windows from
brainly.com/question/25243683
#SPJ1
What do you mean did you refresh the page
Hello, since you did not specify a programming language, I wrote this algorithm in C++. Good luck!
<h2>
Code:</h2>
#include <iostream>
#include <vector>
std::vector<int> v;
int main(int argc, char* argv[]) {
while(1) {
int temp;
std::cout << "\nEnter a number: ";std::cin>>temp;
if(temp<0) {
std::cout << "\nEven number(s) is/are:\n---------------------\n";
for(int i=0;i<v.size();i++) {
if(v.at(i)%2==0) std::cout << v[i] << " ";
else continue;
}
std::cout << std::endl;
break;
}else {
v.push_back(temp);
}
}
return 0;
}
Answer:
<h2>Arrow function expression var arrowMultiplyBy2 = num => num * 2; If the function takes in only one argument, then the parenthesis around the parameter can be omitted as shown in the code above. ... Code 1 - Output in the following order: undefined 42. </h2>
Explanation: