Skip to content

Latest commit

 

History

History
28 lines (28 loc) · 1010 Bytes

File metadata and controls

28 lines (28 loc) · 1010 Bytes
layout flashcard-topic
title Introduction To Java Programming With JShell
main_card_title Java Fundamentals
main_card_bg #6586c3
card_bg #9aacd5
cards
title description
Programming
Creating instructions for a computer to perform a task
title description
Programming Language
Written language that tells computers what to do
title description
Java
Object-oriented programming language that is class-based and high-level
title description
JShell
Tool for interactive code testing and evaluation
title description
Compiler
Converts the source code into machine-code (understandable by computer)
title description
Syntax
Rules that your program should follow!
title description
System.out
Standard output stream to display information in console
title description
Variable
Memory location for storing a value
title description
Assignment
Giving a value to a variable (e.g. i = 1)