It's easier to send the files that way because you don't have to attach them individually, and then your friend won't have to download them individually - they can just download the zip package and have all four right at their disposal.
Answer:
Hi myself Shrushtee. And l have given your answer in Hindi and English language.
Explanation:
an electronic machine that can store, find and arrange information, calculate amounts and control other machines
जानकारी संचित करने, ढूँढ़ने व व्यवस्थित करने, परिकलन करने व अन्य मशीनों पर नियंत्रण रख पाने वाली एक इलेक्ट्रॉनिक मशीन; कंप्यूटर
please mark me as brainleist
False. A full system backup will back up all of the files within a hard drive.
Answer:
Line number 7.
Explanation:
If I am not wrong, the first line in this question would be #include<iostream>. That is used to add input and output stream of the program.
if we look at the line 1,2,3. These are just the packages/definition required to start a program.
Line 4 starts the main program and line 5 starts the block of main program. The block ends at line 10. So ,there should be no error in line 4,5 and 10.
If we look at line 6, we can see a constant integer(const int MY_VAL = 77) definition and initialization.
The main problem is, you cannot assign a value to a constant (MY_VAL) except during initializing stage.
Therefore, the line 6 is also true. However, this program is further trying to assign a value to constant at line 7. Therefore, the compiler will throw error (ERROR; assigning to const value).