Garantie de satisfaction à 100% Disponible immédiatement après paiement En ligne et en PDF Tu n'es attaché à rien 4.2 TrustPilot
logo-home
Examen

Intro. to Java Programming Exam Study Guide.

Note
-
Vendu
-
Pages
12
Grade
A+
Publié le
14-01-2025
Écrit en
2024/2025

Intro. to Java Programming Exam Study Guide. Application Program Interface (API) - AnswerAlso known as a library, contains predefined classes and interfaces for developing Java programs Assembler - AnswerA program to convert assembly language into machine language Assembly Language - AnswerLow-Level language created to ease the code writing. Bit - AnswerA unit of measurement of information, 0 & 1 create digits known as the binary number system. Block - AnswerCurly braces {}, every class has class blocking that groups the data and methods of the class. Block Comment - Answer(/*) Creates a block comment, computers will read the first (/*) and ignore all text until the final (*/). (for multiply line instructions or comments) Bus - AnswerSubsystem of computer components that power and data flow through. Byte - Answera sequence of 8 bits (enough to represent one character of alphanumeric data) processed as a single unit of information Bytecode - AnswerIs similar to machine instructions but is architecture neutral and can run on any platform that has a JVM. Bytecode Verifier - AnswerChecks the validity of the Bytecode and to ensure that the Bytecode does not violate Java's security restrictions. Cable Modem - AnswerUses the cable TV line maintained by the cable company and is generally faster than DSL Central Processing Unit (CPU) - AnswerThe part of a computer (a microprocessor chip) that does most of the data processing. 2 parts; Control Unit and Arithmetic/LogicUnit. Class Loader - AnswerIs a part of the Java Runtime Environment that dynamically loads Java classes into the Java Virtual Machine. Usually classes are only loaded on demand. The Java run time system does not need to know about files and file systems because of class loaders. ©BRIGHSTARS 2024/2025 ALL RIGHTS RESERVED. 2 | P a g e Comment - AnswerHelp programmers to communicate and understand the program. (//) single line comment. (/**/) multiply line comment Compiler - AnswerIs a computer program (or set of programs) that transforms source code written in a programming language into another computer language (the target language, often having a binary form known as object code). The most common reason for wanting to transform source code is to create an executable program. Console - AnswerIs an old computer term that refers to the text entry and display device of the computer. Dot Pitch - AnswerThe amount of space between pixels, measured in millimeters. The smaller the dot pitch the sharper the display. Digital Subscriber Line (DSL) - AnswerIs a family of technologies that provide Internet access by transmitting digital data over the wires of a local telephone network. Encoding Scheme - AnswerIs a set of rules that govern how a computer translates characters, numbers, and symbols into data the computer can actually work with. Hardware - AnswerIn general hardware comprises the visible physical elements of the computer. High-Level Language - AnswerIs a programming language with strong abstraction from the details of the computer. In comparison to low-level programming languages, it may use natural language elements, be easier to use, or may automate (or even hide entirely) significant areas of computing systems (e.g. memory management), making the process of developing a program simpler and more understandable relative to a lower-level language. Integrated Development Environment (IDE) - AnswerIs a software application that provides comprehensive facilities to computer programmers for software development. An IDE normally consists of a source code editor, build automation tools and a debugger. Interpreter - AnswerChanges the source code into machine code for execution. Java Command - Answer... Java Language Specification - AnswerIs a technical definition of the Java programming language's syntax and semantics. Java Virtual Machine (JVM) - AnswerIis a virtual machine that can execute Java bytecode. It is the code execution component of the Java platform. Javac Command - Answer... Keyword (or reserved word) - AnswerHave specific meaning to the compiler and cannot be used for other purposes in the prog

Montrer plus Lire moins
Établissement
Java
Cours
Java









Oups ! Impossible de charger votre document. Réessayez ou contactez le support.

École, étude et sujet

Établissement
Java
Cours
Java

Infos sur le Document

Publié le
14 janvier 2025
Nombre de pages
12
Écrit en
2024/2025
Type
Examen
Contient
Questions et réponses

Sujets

Aperçu du contenu

©BRIGHSTARS 2024/2025 ALL RIGHTS RESERVED.




Intro. to Java Programming Exam Study
Guide.


Application Program Interface (API) - Answer✔Also known as a library, contains predefined
classes and interfaces for developing Java programs

Assembler - Answer✔A program to convert assembly language into machine language

Assembly Language - Answer✔Low-Level language created to ease the code writing.

Bit - Answer✔A unit of measurement of information, 0 & 1 create digits known as the binary
number system.

Block - Answer✔Curly braces {}, every class has class blocking that groups the data and
methods of the class.

Block Comment - Answer✔(/*) Creates a block comment, computers will read the first (/*) and
ignore all text until the final (*/). (for multiply line instructions or comments)

Bus - Answer✔Subsystem of computer components that power and data flow through.

Byte - Answer✔a sequence of 8 bits (enough to represent one character of alphanumeric data)
processed as a single unit of information

Bytecode - Answer✔Is similar to machine instructions but is architecture neutral and can run on
any platform that has a JVM.

Bytecode Verifier - Answer✔Checks the validity of the Bytecode and to ensure that the
Bytecode does not violate Java's security restrictions.

Cable Modem - Answer✔Uses the cable TV line maintained by the cable company and is
generally faster than DSL

Central Processing Unit (CPU) - Answer✔The part of a computer (a microprocessor chip) that
does most of the data processing. 2 parts; Control Unit and Arithmetic/LogicUnit.

Class Loader - Answer✔Is a part of the Java Runtime Environment that dynamically loads Java
classes into the Java Virtual Machine. Usually classes are only loaded on demand. The Java run
time system does not need to know about files and file systems because of class loaders.

1|Page

, ©BRIGHSTARS 2024/2025 ALL RIGHTS RESERVED.

Comment - Answer✔Help programmers to communicate and understand the program. (//) single
line comment. (/**/) multiply line comment

Compiler - Answer✔Is a computer program (or set of programs) that transforms source code
written in a programming language into another computer language (the target language, often
having a binary form known as object code). The most common reason for wanting to transform
source code is to create an executable program.

Console - Answer✔Is an old computer term that refers to the text entry and display device of the
computer.

Dot Pitch - Answer✔The amount of space between pixels, measured in millimeters. The smaller
the dot pitch the sharper the display.

Digital Subscriber Line (DSL) - Answer✔Is a family of technologies that provide Internet access
by transmitting digital data over the wires of a local telephone network.

Encoding Scheme - Answer✔Is a set of rules that govern how a computer translates characters,
numbers, and symbols into data the computer can actually work with.

Hardware - Answer✔In general hardware comprises the visible physical elements of the
computer.

High-Level Language - Answer✔Is a programming language with strong abstraction from the
details of the computer. In comparison to low-level programming languages, it may use natural
language elements, be easier to use, or may automate (or even hide entirely) significant areas of
computing systems (e.g. memory management), making the process of developing a program
simpler and more understandable relative to a lower-level language.

Integrated Development Environment (IDE) - Answer✔Is a software application that provides
comprehensive facilities to computer programmers for software development. An IDE normally
consists of a source code editor, build automation tools and a debugger.

Interpreter - Answer✔Changes the source code into machine code for execution.

Java Command - Answer✔...

Java Language Specification - Answer✔Is a technical definition of the Java programming
language's syntax and semantics.

Java Virtual Machine (JVM) - Answer✔Iis a virtual machine that can execute Java bytecode. It
is the code execution component of the Java platform.

Javac Command - Answer✔...

Keyword (or reserved word) - Answer✔Have specific meaning to the compiler and cannot be
used for other purposes in the program.

2|Page

Faites connaissance avec le vendeur

Seller avatar
Les scores de réputation sont basés sur le nombre de documents qu'un vendeur a vendus contre paiement ainsi que sur les avis qu'il a reçu pour ces documents. Il y a trois niveaux: Bronze, Argent et Or. Plus la réputation est bonne, plus vous pouvez faire confiance sur la qualité du travail des vendeurs.
Brightstars Havard School
Voir profil
S'abonner Vous devez être connecté afin de suivre les étudiants ou les cours
Vendu
193
Membre depuis
1 année
Nombre de followers
7
Documents
12191
Dernière vente
6 jours de cela
VERIFIED EXAMS AND STUDY GUIDES.

Here, you will find Study Notes, Exam answer packs 100% Guarenteed success.

3.3

31 revues

5
10
4
4
3
8
2
3
1
6

Récemment consulté par vous

Pourquoi les étudiants choisissent Stuvia

Créé par d'autres étudiants, vérifié par les avis

Une qualité sur laquelle compter : rédigé par des étudiants qui ont réussi et évalué par d'autres qui ont utilisé ce document.

Le document ne convient pas ? Choisis un autre document

Aucun souci ! Tu peux sélectionner directement un autre document qui correspond mieux à ce que tu cherches.

Paye comme tu veux, apprends aussitôt

Aucun abonnement, aucun engagement. Paye selon tes habitudes par carte de crédit et télécharge ton document PDF instantanément.

Student with book image

“Acheté, téléchargé et réussi. C'est aussi simple que ça.”

Alisha Student

Foire aux questions