answersLogoWhite

0


Best Answer

0.05

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the great possible error for 19.2 m?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the greatest possible error for 14.16 m?

0.05


WHAT IS THE GREATEST POSSIBLE ERROR IN 18.3 m?

0.05 metres.


What is the volume of a rectangular prism if the length is 256m and the width is 192 m?

49152 m


How many meters is 0.192 kilometers tall?

192 m


How do you find greatest possible error for measurement of 18.9 m?

Assuming the number is written to its greatest precision, it will be half of the place of the last digit. Since the 9 is in the tenths place, the greatest possible error is ±0.5*a tenth = ±0.05 metres.


How do you find greatest possible error for measurement of 18.3 m?

It is half the place value of the last digit that is given. In this case, it is + or -0.05m = + or - 5 cm.


How long is the 2013 BMW X6-M?

The 2013 BMW X6-M is 16 ft. 0 in. (192 in.) long.


How long is the 2012 BMW X6-M?

The 2012 BMW X6-M is 16 ft. 0 in. (192 in.) long.


How long is the 2014 BMW X6-M?

The 2014 BMW X6-M is 16 ft. 0 in. (192 in.) long.


How long is the 2010 BMW X6-M?

The 2010 BMW X6-M is 16 ft. 0 in. (192 in.) long.


How long is the 2011 BMW X6-M?

The 2011 BMW X6-M is 16 ft. 0 in. (192 in.) long.


How do you create the logical error in c?

It is not clear what do you mean by 'logical error', but perhaps an example will help: int main (void) { FILE *f= fopen ("foobar.txt", "r"); if (f) printf ("couldn't open foobar.txt for reading"); fclose (f); } corrected version: int main (void) { FILE *f= fopen ("foobar.txt", "r"); if (f==NULL) { printf ("couldn't open foobar.txt for reading"); return 0; } fclose (f); } Logical error can be generated by using the #error directive. This directive doesn't allows the program to run, in certain conditions. An error message has been generated by the compiler because of this preprocessor directive. e.g. #define M 10 #if M!=10 #error M must be 10 #endif in this case no error mesage will be generated because M is equal to 10 #define M 11 #if M!=10 #error M must be 10 #endif in this case, as M is not equal to 10 error message will be generated by the compiler and the message will be M must be 10.