JAVA 1 Flashcards
16 Questions
100 Views

JAVA 1 Flashcards

Created by
@GlisteningRadon

Questions and Answers

The command ___ executes a Java application.

java

The .class extension on a file means that the file:

is produced by the Java compiler

Which of the following statements about Java Class Libraries is false? (Select all that apply)

  • Java class libraries are also known as Java APIs (Application Programming Interfaces).
  • An advantage of using Java class libraries is saving the effort of designing, developing and testing new classes.
  • Java class libraries are not portable. (correct)
  • Java class libraries consist of classes that consist of methods that perform tasks.
  • Which of the following statements is true? (Select all that apply)

    <p>All of the above.</p> Signup and view all the answers

    Which of the following statements is true? (Select all that apply)

    <p>Compilers translate high-level language programs into machine language programs.</p> Signup and view all the answers

    Which command executes the Java class file Welcome.class?

    <p>java Welcome</p> Signup and view all the answers

    What is the output of the following statements? System.out.print( 'Hello '); System.out.println( 'World' );

    <p>Hello World</p> Signup and view all the answers

    The format specifier ________ is a placeholder for an int value.

    <p>%d</p> Signup and view all the answers

    Given the Java statement number1 = input.nextInt(); what occurs if the user does not enter a valid int value?

    <p>A runtime logic error occurs.</p> Signup and view all the answers

    What must the filename be for the public class that begins with 'public class Addition'?

    <p>Addition.java</p> Signup and view all the answers

    Each class you create becomes a new ________ that can be used to declare variables and create objects.

    <p>type</p> Signup and view all the answers

    You must call most methods other than ________ explicitly to tell them to perform their tasks.

    <p>main</p> Signup and view all the answers

    Declaring instance variables ________ is known as data hiding or information hiding.

    <p>private</p> Signup and view all the answers

    Reference-type variables (called references) store ________ in memory.

    <p>the location of an object</p> Signup and view all the answers

    Java requires a ________ call for every object that's created.

    <p>constructor</p> Signup and view all the answers

    The control variable of a counter-controlled loop should be declared as ________ to prevent errors.

    <p>int</p> Signup and view all the answers

    Study Notes

    Java Basics

    • The command java is used to execute a Java application.
    • Files with the .class extension are generated by the Java compiler, indicating they contain compiled Java bytecode.

    Java Class Libraries

    • Java class libraries, also known as Java APIs, are not portable; this statement is false.
    • They provide pre-designed, tested classes that reduce development effort.

    Methods in Java

    • A method is essential for performing tasks in a program, containing statements that execute specific functions.
    • Methods abstract their inner workings from users, similar to how a car's accelerator hides its mechanisms.

    Compiled vs. Interpreted Programs

    • Compilers convert high-level programs into machine language, whereas interpreted programs do not necessarily run faster than compiled programs.

    Executing Java Classes

    • The command java Welcome executes the Java class file Welcome.class.
    • Output example: System.out.print("Hello "); System.out.println("World"); prints "Hello World".

    Format Specifiers

    • The format specifier %d is a placeholder for integer values in Java.

    Error Handling

    • Entering an invalid integer value using input.nextInt() while number1 is defined as an int results in a runtime logic error.

    Class File Naming

    • The public class name must match the filename; for a class public class Addition, the filename should be Addition.java.

    Object and Variable Management

    • Each created class introduces a new type that can be used for variable declaration and object creation.
    • Most methods, except for main, require explicit calls to operate.

    Data Encapsulation

    • Declaring instance variables as private implements data hiding, protecting the variable's state from outside access.

    Memory Management

    • Reference-type variables in Java store the memory address of an object rather than the actual object itself.
    • A constructor call is mandatory for creating every object in Java.

    Control Structures

    • Control variables in counter-controlled loops should be declared as int to prevent errors and ensure proper iteration management.

    Studying That Suits You

    Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

    Quiz Team

    Description

    Test your knowledge of Java programming concepts with these flashcards. Each card presents a key term or concept related to Java, along with its definition or explanation. Ideal for beginners looking to understand the basics of Java.

    More Quizzes Like This

    Java Programming Basics Quiz
    3 questions
    EIE3320 Java Programming Basics Quiz
    10 questions
    Java Programming Basics Quiz
    12 questions
    Java Programming Basics
    10 questions

    Java Programming Basics

    PermissibleAlliteration avatar
    PermissibleAlliteration
    Use Quizgecko on...
    Browser
    Browser