A or b i think hope it helps good luck and i hope it helps
Answer:
"double result=6.759;" is the correct answer for the above question.
Explanation:
- In c-programming language, the double is a data type which stores the decimal value up to 6 decimal point.
- This data type takes 8 bytes space in memory when it is used in the c-programming language.
- When the user wants to declare the double data type, then he should need to declare by the help of the following syntax-- double variable_name_or _identifier_name;
- When the user wants to declare the double data type and initialize the value on its then he can do this with the help of the following syntax--double variable_name_or _identifier_name= value_which_needs_to_store;
- The above question asked the one-line statement which declares the result variable of double data type and initializes the "6.759" value on its then he can do this by the help of "double result=6.759;" statement which is described above. Hence the answer is "double result=6.759;".
Answer:
The correct selection is the letter C. The first ACL is denying all TCP traffic and the other ACLs are being ignored by the router.
Explanation:
In this case, the letter C is the right answer because with the first ACL exactly:
access-list 102 deny tcp any any
We are denying all traffic with the next line deny tcp any any, in this case, the others line are being ignored.
access-list 104 permit udp host 10.0.0.3 any
access-list 110 permit tcp host 10.0.0.2 eq www any
access-list 108 permit tcp any eq ftp any
For that nobody can access to the internet, the security administrator of ABC must change the first ACL.
It is under the drawings group.
Answer:
Option (A) int expressions are always computed exactly; but float expressions can suffer round-off error.
Explanation:
Round - Off Error can be defined as the digital computers have limitations on denoting the decimal numbers, due to this the floating point numbers have to be rounded off or even it is represented exactly after the calculation on the numbers the resulting number has to be adjusted / rounded off according to the specified precision. The resulted number has to be rounded off back to the required precision, this leads to the round off errors in digital computers. As integers don't need to go through the rounding off in computers, the integer numbers don't have round off errors, only floating point numbers have round off errors. So, options (B) , (C) and (D) are false.