C++:
int main () {
std::ofstream output {"greeting.txt"};
output << "hey!";
output.close();
return 0;
}
Answer:
Memory chip or hard drive
Explanation:
Answer:
100 times
Explanation:
first value of i in the loop is 0. Last value is 99. So loop never iterates with i at 100.
Answer:
Option(d) is the correct answer to the given question .
Explanation:
The UPnP is known as universal plug and play is a collection of computing protocols that's main objective to allow the virtual networks like desktop computers , wireless traffic, Wi-Fi access stations and smart applications to seamlessly explore one another's existence on the system and to built time series sharing internet services.
- When we enabling the UPnP it will improve the efficiency of the video streaming service while retaining marketing capability to copy big files to the cloud storage .
- All the other options are not suitable for improve the efficiency of the video streaming service that's why they are incorrect options .
So Enable UPnP is the right answer
Answer:
C 1,2,3,4
Explanation:
This means I want to count from 0-4 and set it o the current loop I am currently on.
for i in range(0, 5):
print("i currently equals: ", i)
The result will be
i currently equals: 0
i currently equals: 1
i currently equals: 2
i currently equals: 3
i currently equals: 4