bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/Java/Java How To's
Java•Java How To's

Java How To Find the Square Root of a Number

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind Java How To Find the Square Root of a Number?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___.sqrt(64);

Square Root of a Number

You can use Math.sqrt() to find the square root of a number:

Math.sqrt(64);

Related Pages

Java Math Reference

Previous

Java How To Find Positive or Negative Numbers

Next

Java How To Get the Area of a Rectangle