Code HS
Latest uploads at Code HS. Looking for notes at Code HS? We have lots of notes, study guides and study notes available for your school.
-
207
- 0
-
14
All courses for Code HS
-
Code HS 1
-
Code HS 207
-
Code-HS 3
Latest content Code HS
Code HS Answers: Lessons 1-20 Complete Test Answered Correctly. 
 
Which is a valid Karel command? 
move; 
MOVE 
move(); 
move() 
move(); 
What is a street in a Karel world? 
Row 
What is an avenue in a Karel world? 
Column 
If Karel starts at Street 1 and Avenue 3 facing East, what street (row) and avenue (column) will Karel be on after this code runs? 
move(); 
move(); 
move(); 
turnLeft(); 
move(); 
Street 2 Avenue 6 
If Karel is facing North and the code 
turnLeft(); 
turnLeft(); 
runs; whic...
- Exam (elaborations)
- • 28 pages's •
-
Code HS•Code HS
Preview 3 out of 28 pages
Getting your document ready...
Code HS Answers: Lessons 1-20 Complete Test Answered Correctly. 
 
Which is a valid Karel command? 
move; 
MOVE 
move(); 
move() 
move(); 
What is a street in a Karel world? 
Row 
What is an avenue in a Karel world? 
Column 
If Karel starts at Street 1 and Avenue 3 facing East, what street (row) and avenue (column) will Karel be on after this code runs? 
move(); 
move(); 
move(); 
turnLeft(); 
move(); 
Street 2 Avenue 6 
If Karel is facing North and the code 
turnLeft(); 
turnLeft(); 
runs; whic...
Why does a programmer indent their code? Easier for other people to understand, it helps 
show the structure of the code, and it's a key part of good programming style! 
 
Which of these is a valid way to write a single line comment in Java? 
 
/ / This is a comment 
 
+ + This is a comment 
 
This is a comment / / 
 
/ * This is a comment / / This is a comment 
 
What is a method in Karel? A method is a command that Karel can do. It has a name and a 
set of instructions
- Exam (elaborations)
- • 20 pages's •
-
Code HS•Code HS
Preview 3 out of 20 pages
Getting your document ready...
Why does a programmer indent their code? Easier for other people to understand, it helps 
show the structure of the code, and it's a key part of good programming style! 
 
Which of these is a valid way to write a single line comment in Java? 
 
/ / This is a comment 
 
+ + This is a comment 
 
This is a comment / / 
 
/ * This is a comment / / This is a comment 
 
What is a method in Karel? A method is a command that Karel can do. It has a name and a 
set of instructions
Which of the following is the proper format for an HTML tag? <h1>Content Affected by 
Tag</h1> 
 
Which of the following best describes the difference between the domain and path of a URL? 
The domain specifies where the browser's request should be sent. 
 
The path specifies exactly what file is being requested. 
 
What is the domain of this URL: 
 
What is generated from the following HTML code: 
 
<h1>Hello</h1> 
 
<h3>Hello</h3> 
 
<h6>Hello</h6...
- Exam (elaborations)
- • 8 pages's •
-
Code HS•Code HS
Preview 2 out of 8 pages
Getting your document ready...
Which of the following is the proper format for an HTML tag? <h1>Content Affected by 
Tag</h1> 
 
Which of the following best describes the difference between the domain and path of a URL? 
The domain specifies where the browser's request should be sent. 
 
The path specifies exactly what file is being requested. 
 
What is the domain of this URL: 
 
What is generated from the following HTML code: 
 
<h1>Hello</h1> 
 
<h3>Hello</h3> 
 
<h6>Hello</h6...
Who creates the look and feel of a website? A web designer 
 
Who writes the HTML and CSS that brings the site to life? A web developer 
 
Who thinks about the best way to display information on the site? A web designer 
 
True or False: The majority of the world has access to the Internet. False 
 
Which of the following is related to the issue of censorship on the Internet? A government 
filtering search results to limit the access of information and suppress discussion amongst its 
citizens 
...
- Exam (elaborations)
- • 38 pages's •
-
Code HS•Code HS
Preview 4 out of 38 pages
Getting your document ready...
Who creates the look and feel of a website? A web designer 
 
Who writes the HTML and CSS that brings the site to life? A web developer 
 
Who thinks about the best way to display information on the site? A web designer 
 
True or False: The majority of the world has access to the Internet. False 
 
Which of the following is related to the issue of censorship on the Internet? A government 
filtering search results to limit the access of information and suppress discussion amongst its 
citizens 
...
2.1.4 stretched slinky circle(35) 
forward(40) 
circle(35) 
forward(40) 
circle(35) 
forward(40) 
circle(35) 
forward(40) 
circle(35) 
forward(40) 
 
2.2.4 shorter dashed line penup() 
backward(200) 
pendown() 
forward(50) 
penup()
- Exam (elaborations)
- • 39 pages's •
-
Code HS•Code HS
Preview 4 out of 39 pages
Getting your document ready...
2.1.4 stretched slinky circle(35) 
forward(40) 
circle(35) 
forward(40) 
circle(35) 
forward(40) 
circle(35) 
forward(40) 
circle(35) 
forward(40) 
 
2.2.4 shorter dashed line penup() 
backward(200) 
pendown() 
forward(50) 
penup()
Cyber-security the state of being protected against the criminal or unauthorized use of 
electronic data, or the measures taken to achieve this. 
 
Why is it important to learn about Cyber-security? So we learn how to protect our 
information/data from being leaks. 
 
What is not true about Cyber-Security? Cyber attacks can devastate large organizations, but 
individuals are largely unaffected. 
 
Cyber Meaning dealing with computers or computer network. 
 
Security Measure taken to guard agains...
- Exam (elaborations)
- • 10 pages's •
-
Code HS•Code HS
Preview 2 out of 10 pages
Getting your document ready...
Cyber-security the state of being protected against the criminal or unauthorized use of 
electronic data, or the measures taken to achieve this. 
 
Why is it important to learn about Cyber-security? So we learn how to protect our 
information/data from being leaks. 
 
What is not true about Cyber-Security? Cyber attacks can devastate large organizations, but 
individuals are largely unaffected. 
 
Cyber Meaning dealing with computers or computer network. 
 
Security Measure taken to guard agains...
Which is a valid Karel command? 
 
move; 
MOVE 
 
move(); 
move() move(); 
 
What is a street in a Karel world? Row 
 
What is an avenue in a Karel world? Column 
 
If Karel starts at Street 1 and Avenue 3 facing East, what street (row) and avenue (column) will 
Karel be on after this code runs? 
move(); 
move(); 
move(); 
turnLeft();
- Exam (elaborations)
- • 71 pages's •
-
Code HS•Code HS
Preview 4 out of 71 pages
Getting your document ready...
Which is a valid Karel command? 
 
move; 
MOVE 
 
move(); 
move() move(); 
 
What is a street in a Karel world? Row 
 
What is an avenue in a Karel world? Column 
 
If Karel starts at Street 1 and Avenue 3 facing East, what street (row) and avenue (column) will 
Karel be on after this code runs? 
move(); 
move(); 
move(); 
turnLeft();
When using view page source, it's possible to see the following: All of them are true. 
 
What does it mean for code to be minified? All of the spaces are removed from the code so 
that it is unreadable. 
ANSWERED 
 
When we inspect an element through developer tools, we are looking at: The current state of 
the page after it has been loaded. 
ANSWERED 
 
Developer tools can help with 
A. Testing and debugging a site or web app. B. Diagnosing problems quickly on a site or web 
app. C. Building ...
- Exam (elaborations)
- • 6 pages's •
-
Code HS•Code HS
Preview 2 out of 6 pages
Getting your document ready...
When using view page source, it's possible to see the following: All of them are true. 
 
What does it mean for code to be minified? All of the spaces are removed from the code so 
that it is unreadable. 
ANSWERED 
 
When we inspect an element through developer tools, we are looking at: The current state of 
the page after it has been loaded. 
ANSWERED 
 
Developer tools can help with 
A. Testing and debugging a site or web app. B. Diagnosing problems quickly on a site or web 
app. C. Building ...
Which is an operating system not responsible for? 
1)Manages hardware such as a mouse 
2)Keeps tracks of files and folders 
3)Supplies power to peripherals such as a printer 
4)Secures the computer with user accounts and passwords 3 
 
What is not a mobile os? 
1) Mac OS 
2) android 
3) Windows 
4) Linux Android 
 
What type of operating system is permant key programmed into a hardware device? 
Firmware
- Exam (elaborations)
- • 7 pages's •
-
Code HS•Code HS
Preview 2 out of 7 pages
Getting your document ready...
Which is an operating system not responsible for? 
1)Manages hardware such as a mouse 
2)Keeps tracks of files and folders 
3)Supplies power to peripherals such as a printer 
4)Secures the computer with user accounts and passwords 3 
 
What is not a mobile os? 
1) Mac OS 
2) android 
3) Windows 
4) Linux Android 
 
What type of operating system is permant key programmed into a hardware device? 
Firmware
What is data abstraction? The process of simplifying complicated data into manageable 
chunks 
 
Which of the following are examples of encoding information? Representing fast food meals 
as numbers on the menu. For example a number 1 represents a hamburger. 
 
Assigning a numeric value to every area of a region, for example zip codes in the United States 
 
Assigning a number to every character of the alphabet so we can represent sentences as series of 
simple digits. 
 
What is the number base...
- Exam (elaborations)
- • 4 pages's •
-
Code HS•Code HS
Preview 1 out of 4 pages
Getting your document ready...
What is data abstraction? The process of simplifying complicated data into manageable 
chunks 
 
Which of the following are examples of encoding information? Representing fast food meals 
as numbers on the menu. For example a number 1 represents a hamburger. 
 
Assigning a numeric value to every area of a region, for example zip codes in the United States 
 
Assigning a number to every character of the alphabet so we can represent sentences as series of 
simple digits. 
 
What is the number base...