Answer:
Can't really help you... But you can try emailing support.
The graph would have to be pointing completely down to be falling freely.
The answer to the question is c
Answer:
#include <iostream>
using namespace std;
void filterEvens(int myArray[]) {
for (int i = 0; i < 8; ++i) {
if(myArray[i]%2==0){
cout<<myArray[i]<<" ";
}
}
}
int main(){
int myArray[8];
for(int i =0;i<8;i++){
cin>>myArray[i];
}
filterEvens(myArray);
return 0;
}
Explanation:
The solution is provided in C++
#include <iostream>
using namespace std;
The function filerEvens is defined here
void filterEvens(int myArray[]) {
This iterates through the elements of the array
for (int i = 0; i < 8; ++i) {
This checks if current element is an even number
if(myArray[i]%2==0){
If yes, this prints the array element
cout<<myArray[i]<<" ";
}
}
}
The main begins here
int main(){
This declares an integer array of 8 elements
int myArray[8];
The following iteration allows input into the array
<em> for(int i =0;i<8;i++){</em>
<em> cin>>myArray[i];</em>
<em> }</em>
This calls the defined function filter Evens
filterEvens(myArray);
return 0;
}
Based on the above, the type of cable that need to be used by you is option B) Plenum rated cable.
<h3>What is plenum rated cable mean?</h3>
Plenum rated cable is known to be a kind of a cable that tends to have a unique form of insulation that is known to have low smoke and low flame attribute.
Note that the Plenum cable is one that need to be installed in any "air handling" space and as such, Based on the above, the type of cable that need to be used by you is option B) Plenum rated cable.
Learn more about cable from
brainly.com/question/13258934
#SPJ1
See full question below
You are adding new wires in your building for some new offices. The building has a false ceiling that holds the lights and provides an air path for heating and air conditioning. You would like to run your Ethernet cables in this area. Which type of cable must you use?
A) STP cables
B) Plenum rated cable
C) Cat 5e or Cat 6a cables
D) PVC jacketed cables
E) Fiber optic cables