SEARCH
You are in browse mode. You must login to use MEMORY

   Log in to start

CS 1337 Test 1


🇬🇧
In English
Created:


Public
Created by:
Silver Bison


4.75 / 5  (2 ratings)



» To start learning, click login

1 / 14

[Front]


what is compiled
[Back]


the process of translating the program to assembly

Practice Known Questions

Stay up to date with your due questions

Complete 5 questions to enable practice

Exams

Exam: Test your skills

Course needs 15 questions

Learn New Questions

Popular in this course

multiple choiceMultiple choice mode

Dynamic Modes

SmartIntelligent mix of all modes
CustomUse settings to weight dynamic modes

Manual Mode [BETA]

The course owner has not enabled manual mode
Other available modes

Learn with flashcards
SpeakingAnswer with voice
TypingTyping only mode

CS 1337 Test 1 - Leaderboard

2 users have completed this course

XPStreak
1
Redha bouras
Redha bouras00


CS 1337 Test 1 - Details

Levels:

Questions:

14 questions
🇬🇧🇬🇧
What is compiled
The process of translating the program to assembly
What is interpretation
You see the code changes instantly
What is execution
Its compiled then interpreted line by line
What is jvm
The virtual machine that translates java line by line
3 errors in code
Syntax, run time, logic
What is pseudocode
A simplified version of code that you can write an algorithm in, used for planning
What are the characteristics of a high-level language.
It looks like english and is easy to read
What is the purpose of mutator methods? setters
They changer the value of the fields
What is the purpose on constructors? getters
They define how to create an object
What are the naming rules?
Same name as class no return type
What is an accessor method
Getters, get a field value. getBleh
How to write a mutator (setter)
Public void setNumber(String number){ this.number = number; } public void setMaxOccupancy(int max){ if(max >= 25 && max <= 600) this.maxOccupancy = max; else }. this.maxOccupancy = 25;