IT102 Java Package and Math Class Flashcards
______are important for organizing classes and interfaces in a clear way. They help manage code, prevent name conflicts, and control access to different parts of the code.
Java packages
Java packages are important for organizing _____ and ____ in a clear way. They help manage code, prevent name conflicts, and control access to different parts of the code.
classes and interfaces
A ____ in java is like a folder that groups related classes and interfaces together. It helps keep things organized, allows you to reuse code, and avoids problems with names being the same.
package
Types of packages in Java
Java API packages or built-in packages
User-defined packages
_____ is an application programming interface that functions within software built using the Java software programming language.
Java API
Java API is an__________ that functions within software built using the Java software programming language.
application programming interface
Some of the the commonly used built-in packages are:
java.util
java.applet
java.awt
java.net
contains utility classes which implement data structures like linked list, dictionary and support ; Date/ Time operations
java.util
contains classes for creating applets
java.applet
contain classes for implementing the components for graphical user interfaces (like button, menus etc.
java.awt
contain classes for supporting networking operations
java.net
package Naming convention
java.math.lang
java- is a top level package
lang-is a sub package
math- is a class which is presdent in the package lang.
OOP
OBJECT-ORIENTED PROGRAMMING
Classes are like ____ that we can use when writing programs.
ready made templates
Each class has its own methods, which are the _____ you can perform using that class.
actions
Each____ has its own methods, which are the actions you can perform using that class.
class
Each class has its own _____ , which are the actions you can perform using that class.
methods
The _____ package is one of the most important packages in java.
java.lang
The java.lang package is on of the most important packages in java. It includes _____ that are essential for writing most of your code. This packages has _____ for mathematical calculations, working with strings, and system operations.
classes
The java.lang package is on of the most important packages in java. It includes classes that are essential for writing most of your code. This packages has classes for _______, working with strings, and system operations.
mathematical calculations
The java.lang package is on of the most important packages in java. It includes classes that are essential for writing most of your code. This packages has classes for mathematical calculations, working with strings, and ______.
system operations
The java.lang package is on of the most important packages in java. It includes classes that are essential for writing most of your code. This packages has classes for mathematical calculations, _______, and system operations.
working with strings
You can find nthe java.lang.package in the folder of the _____.
Java Runtime Environment
The _____ is part of the java.lang package, so its available to all Java programs without needing to import it. This class helps with numerical calculations by providing methods for common math functions like trigonometry, logarithms, exponential, and rounding.
Math class
The math class is part of the _______, so its available to all Java programs without needing to import it. This class helps with numerical calculations by providing methods for common math functions like trigonometry, logarithms, exponential, and rounding.
java.lang package
The math class is part of the java.lang packages, so its available to all Java programs without needing to import it. This class helps with_______ by providing methods for common math functions like trigonometry, logarithms, exponential, and rounding.
numerical calculations
When using the math class in java, its important to think about both ____ and _____
precision and accuracy
Java Math Class Basic arithmetic operations
addExact
subtractExact
multiplyExact
incrementExact
decrementExact
negateExact
divideExact
refers to a situation where the result of the division operation exceeds the maximum or minimum value that can be represented by the data type
overflows
methods that throws an arithmetic exception if the result is _____
overflows
is a mathematical expession where a variable is raised to constant exponent
Power Function
methods that throws an _______ if the result is overflows
arithmeticException
are mathematical functions that relate the angles of a triangle to the lengths of its sides.
Trigonometric Functions
is a specific type of power function where the exponent is a fraction.
Root Functions
are used to adjust a number to a specified level of precision
Rounding Functions
Java API is an application
programming interface (API) that functions within software built using the ——–.
Java software
programming language