Answer:
same as above....................
The connector for ethernet cables is called RJ45. for phone jack is RJ11. Although they look the same, the RJ11 has only 4 leads, as opposed to 9 leads in RJ45. Also, RJ11 is not as wide as RJ45, so the connector does not fit.
Even if it would, the signals would be totally incompatible, so no success can be expected.
Answer:i would love to help but are there any answer choices?
Explanation: please provide answer choices for an accurate answer
Answer:
#include<stdio.h>
#include <iostream>
using namespace std;
int main(){
int number, min, max;
cout << "Enter the minimum range: ";
cin >> min;
cout << "Enter the maximum range: ";
cin >> max;
cout << "Odd numbers in given range are: ";
for(number = min; number <= max; number++)
if(number % 2 !=0)
cout << number<< " ";
cout<< "Even numbers in given range are: ";
for(number = min; number <= max; number++)
if(number % 2 ==0)
cout << number << " ";
return 0;
}
Explanation:
First of all, we take declare two variables. one as the lowest number of the range and the other as the upper limit of the range (in this case: <em>min</em> and <em>max</em>). We declare another variable (<em>number</em>) and store in it the lowest number of the range (<em>min</em>). To check whether the number currently stored as the value of the variable (<em>number</em>) is even, we take in account the remainder of that number divided by 2. If the remainder does not equals 0, we print that number as odd. We again check the remainder by dividing the number by 2. If the remainder does equals 0, we print that number as even.