Explanation:
B. They combine and compress large files into a zip file for sending through email
Answer:
Explanation:
Relevance of Thrown Items:
- The thrown items mainly consist of the Windows NT training kit, outdated magazines and some written notes, etc. All these things can be used in the company for training the fresh talent.
- These things must be used for the purpose of training fresh people and the things like programs written in HTML must not be dumped like this because they consists of the raw code which can be harmful if gotten into wrong hands.
- Hence, the information like this must be taken care of seriously as these can be loopholes into companies down.
- Rest of the things like food wrappers, empty bottles, resume copies are all worthless to the company and can be thrown into the dump as soon as possible.The business cards must also be thrown if not important.
Recommendation To Management:
- The management must take these things seriously and must double check the company properties before throwing them into dump. There must be a committe build to check the things that are been going directly to the dump.
- They must have the responsibility for checking the things before going to the dump and must filter all the important things from the garbage back to the shelves of the office.
- Hence, these things must be taken care of so that no harm is to be done to the company.
cheers i hope this helped !!
Answer:
Attempts to modify the value of a variable defined const are caught at execution time
Explanation:
The false statement among the options is Attempts to edit the value of a variable defined const are caught at execution time while other options are true.
A const variable should not be modify because the main reason of having a const variable is not to make modifying it possible. If you prefer a variable which you may likely want to modify at some point, then don't just add a const qualifier on it. Furthermore, Any code which modify's a const by force via (pointer) hackery invokes Undefined Behavior
Answer:The Mechanical Era
Created a machine that could add and subtract numbers. Dials were used to enter the numbers. ... Designed a machine called the Analytical Engine. The design had all the basic components of a modern day computer. In addition, it was designed to be programmable using punched cards.
Explanation:Hope this helped
Answer:
B) Loop control Variable
Explanation:
When programming, A loop control variable is used to control the number of iterations for a program loop. By convention programmers love to call this variable counter, i, j, n etc. The control variable when defined will determine the number of times a loop will execute. See the example bellow in C++ where we use a for loop to print the word "Hello" 5 times
<em>#include <iostream></em>
<em>using namespace std;</em>
<em>int main()</em>
<em>{</em>
<em> for(int counter = 0; counter<5; counter++){</em>
<em> cout<<"Hello"<<endl;</em>
<em> }</em>
<em> return 0;</em>
<em>}</em>
In this code snippet, the control variable is called counter and the condition is that counter will run from 0 to 4. So we get the world Hello printed five times