<< Chapter < Page Chapter >> Page >

What is the value range for a float?

In case you are interested, using the same syntax as above, the value range for type float is from 1.4E-45 to 3.4028235E38

Double is often the default type

There is another thing that is significant about type double . In many cases where a value is automatically converted to a floating type, it isconverted to type double rather than to type float. This will come up in future modules.

Back to Question 4

Answer 3 .

A. -2147483648

Explanation 3

Could easily have guessed

As a practical matter, you had one chance in two of guessing the correct answer to this question, already having been given the value of the largestalgebraic value for type int.

And the winner is ...

Did you answer B. -2147483647? -- WRONG

If so, you may be wondering why the most negative value isn't equal to thenegative version of the most positive value?

A twos-complement characteristic

Without going into the details of why, it is a well-known characteristic of binary twos-complement notation that the value range extends one unit further inthe negative direction than in the positive direction.

What about the other two values?

Do the values of -32768 and 32767 in the set of multiple-choice answers to this question represent anything in particular?

Yes, they represent the extreme ends of the value range for a 16-bit binary number in twos-complement notation.

Does Java have a 16-bit integer type?

Just in case you are interested, the short type in Java is represented in 16-bit binary twos-complement signed notation, so this is thevalue range for type short.

What about type byte?

Similarly, a value of type byte is represented in 8-bit binary twos-complement signed notation, with a value range extending from -128to 127.

Back to Question 3

Answer 2 .

B. 2147483647

Explanation 2

First question on types

This is the first question on Java types in this group of self-assessmentmodules.

32-bit signed twos-complement integers

In Java, values of type int are stored as 32-bit signed integers in twos-complement notation.

Can you calculate the values?

There are no unsigned integer types in Java, as there are in C++. If you are handy with binary notation, you could calculate the largest positivevalue that can be stored in 32 bits in twos-complement notation.

See documentation for the Integer class

Otherwise, you can visit the documentation for the Integer class, which provides a symbolic constant (public static final variable) named MAX_VALUE . The description of MAX_VALUE reads as follows:

"The largest value of type int. The constant value of this field is 2147483647."

Back to Question 2

Answer 1 .

C. Hello World

Explanation 1

The answer to this first question is intended to be easy. The purpose of the first question is to introduce you to the syntax that will frequently be usedfor program code in this group of self-assessment modules.

The controlling class and the main method

In this example, the class named Ap001 is the controlling class . It contains a method named main , with a signature that matches the required signature for the main method. When the user executes this program, the Java virtual machine automatically calls the method named main in the controlling class.

Questions & Answers

how to study physic and understand
Ewa Reply
what is conservative force with examples
Moses
what is work
Fredrick Reply
the transfer of energy by a force that causes an object to be displaced; the product of the component of the force in the direction of the displacement and the magnitude of the displacement
AI-Robot
why is it from light to gravity
Esther Reply
difference between model and theory
Esther
Is the ship moving at a constant velocity?
Kamogelo Reply
The full note of modern physics
aluet Reply
introduction to applications of nuclear physics
aluet Reply
the explanation is not in full details
Moses Reply
I need more explanation or all about kinematics
Moses
yes
zephaniah
I need more explanation or all about nuclear physics
aluet
Show that the equal masses particles emarge from collision at right angle by making explicit used of fact that momentum is a vector quantity
Muhammad Reply
yh
Isaac
A wave is described by the function D(x,t)=(1.6cm) sin[(1.2cm^-1(x+6.8cm/st] what are:a.Amplitude b. wavelength c. wave number d. frequency e. period f. velocity of speed.
Majok Reply
what is frontier of physics
Somto Reply
A body is projected upward at an angle 45° 18minutes with the horizontal with an initial speed of 40km per second. In hoe many seconds will the body reach the ground then how far from the point of projection will it strike. At what angle will the horizontal will strike
Gufraan Reply
Suppose hydrogen and oxygen are diffusing through air. A small amount of each is released simultaneously. How much time passes before the hydrogen is 1.00 s ahead of the oxygen? Such differences in arrival times are used as an analytical tool in gas chromatography.
Ezekiel Reply
please explain
Samuel
what's the definition of physics
Mobolaji Reply
what is physics
Nangun Reply
the science concerned with describing the interactions of energy, matter, space, and time; it is especially interested in what fundamental mechanisms underlie every phenomenon
AI-Robot
what is isotopes
Nangun Reply
nuclei having the same Z and different N s
AI-Robot
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Object-oriented programming (oop) with java. OpenStax CNX. Jun 29, 2016 Download for free at https://legacy.cnx.org/content/col11441/1.201
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?

Ask