False. a placeholder can hold everything
Answer:
Explanation:
bool isPalindrome(string str)
{
int length = str.length();
for (int i = 0; i < length / 2; i++) {
if (str [i] != str [length – 1 – i]) {
return false;
}
}
cout << str << "is a palindrome";
return true;
}
8 smaller units, called bits :)
The correct explanation of why Gary is wrong is that Ports are where connectors attach to destinations, not where data enter the network.
<h3>What is a port?</h3>
A port is physical part of the computer system where the external devices are connected using cables.
Therefore, it serves as an interface between the motherboard and an external device of the computer.
From Gary statement about ports, he is wrong because, Ports are where connectors attach to destinations, not where data enter the network.
Learn more about ports here:
brainly.com/question/4804932
#SPJ1
Answer:
IN PYTHON ::
x=int(input('Enter length:'))
y=int(input('Enter width:'))
print('Area of the rectangle is', x*y,'squared units')
I hope it will be useful.