NURSING TEST
BEST EDUCATIONAL RESOURCES FOR STUDENTS
- 2046
- 0
- 67
Community
- Followers
- Following
1 Reviews received
2113 items
CSS Basics Questions and Answers
CSS Basics Questions and Answers 
CSS 
CSS (which stands for Cascading Style Sheets) is a language used to describe the appearance and formatting of your HTML. 
 
A style sheet is a file that describes how an HTML file should look. 
 
We say these style sheets are cascading because the sheets can apply formatting when more than one style applies. For instance, if you say all paragraphs should have blue font, but you specifically single out one paragraph to have red font, CSS can do that! 
 
Ex) ...
- Package deal
- Exam (elaborations)
- • 9 pages •
CSS Basics Questions and Answers 
CSS 
CSS (which stands for Cascading Style Sheets) is a language used to describe the appearance and formatting of your HTML. 
 
A style sheet is a file that describes how an HTML file should look. 
 
We say these style sheets are cascading because the sheets can apply formatting when more than one style applies. For instance, if you say all paragraphs should have blue font, but you specifically single out one paragraph to have red font, CSS can do that! 
 
Ex) ...
Module 3 CSS Questions and Answers
Module 3 CSS Questions and Answers 
CSS (Cascading Style Sheets) 
This is a language used to define uniform styles to HTML tags. 
 
 
 
inline definition 
Defines the "style" attribute within each HTML tag 
 
 
 
internal definition 
Defines styles within "style" tags in the header of an HTML file 
 
 
 
external definition 
Defines styles in a separate file that is referred as a link in the header of an HTML file 
 
 
 
Inline 
This definition works well when CSS styles will be appl...
- Package deal
- Exam (elaborations)
- • 6 pages •
Module 3 CSS Questions and Answers 
CSS (Cascading Style Sheets) 
This is a language used to define uniform styles to HTML tags. 
 
 
 
inline definition 
Defines the "style" attribute within each HTML tag 
 
 
 
internal definition 
Defines styles within "style" tags in the header of an HTML file 
 
 
 
external definition 
Defines styles in a separate file that is referred as a link in the header of an HTML file 
 
 
 
Inline 
This definition works well when CSS styles will be appl...
W3Schools CSS Questions and Answers
W3Schools CSS Questions and Answers 
What does CSS stand for? 
 
Cascading Style Sheets 
Computer Style Sheets 
Creative Style Sheets 
Colorful Style Sheets 
Cascading Style Sheets 
 
 
 
What is the correct HTML for referring to an external style sheet? 
 
<stylesheet></stylesheet> 
<link rel="stylesheet" type="text/css" href=""> 
<style src=""> 
<link rel="stylesheet" type="text/css" 
 
 
 
Where in an HTML document is the correct ...
- Package deal
- Exam (elaborations)
- • 4 pages •
W3Schools CSS Questions and Answers 
What does CSS stand for? 
 
Cascading Style Sheets 
Computer Style Sheets 
Creative Style Sheets 
Colorful Style Sheets 
Cascading Style Sheets 
 
 
 
What is the correct HTML for referring to an external style sheet? 
 
<stylesheet></stylesheet> 
<link rel="stylesheet" type="text/css" href=""> 
<style src=""> 
<link rel="stylesheet" type="text/css" 
 
 
 
Where in an HTML document is the correct ...
HTML/CSS review Questions and Answers
HTML/CSS review Questions and Answers 
HTML 
Hypertext Markup Language 
 
 
 
CSS 
Cascading Style Sheets 
 
 
 
Head 
What the page is about 
 
 
 
Body 
What shows up on page 
 
 
 
Style 
Used for styling HTML elements 
 
 
 
Opening and closing tag for a paragraph 
<p></p> 
 
 
 
What are H1- h6 
Largest heading to smallest heading 
 
 
 
Opening and closing tag for an unordered list 
<ul></ul> 
 
 
 
Opening and closing tag for an ordered list 
<ol></ol> ...
- Package deal
- Exam (elaborations)
- • 2 pages •
HTML/CSS review Questions and Answers 
HTML 
Hypertext Markup Language 
 
 
 
CSS 
Cascading Style Sheets 
 
 
 
Head 
What the page is about 
 
 
 
Body 
What shows up on page 
 
 
 
Style 
Used for styling HTML elements 
 
 
 
Opening and closing tag for a paragraph 
<p></p> 
 
 
 
What are H1- h6 
Largest heading to smallest heading 
 
 
 
Opening and closing tag for an unordered list 
<ul></ul> 
 
 
 
Opening and closing tag for an ordered list 
<ol></ol> ...
Quiz 06 Introduction to CSS Questions and Answers
Quiz 06 Introduction to CSS Questions and Answers 
The key to understanding how CSS works is to imagine that there is an invisible box around every HTML element. 
True 
 
 
 
A CSS rule contains two parts: a ________ and a ________. 
selector 
declaration 
 
 
 
CSS declarations sit inside curly brackets and each is made up of two parts: a _________ and a _________, separated by a colon. 
property 
value 
 
 
 
Using the <link> element and linking in a separate CSS stylesheet to your HTML ...
- Package deal
- Exam (elaborations)
- • 2 pages •
Quiz 06 Introduction to CSS Questions and Answers 
The key to understanding how CSS works is to imagine that there is an invisible box around every HTML element. 
True 
 
 
 
A CSS rule contains two parts: a ________ and a ________. 
selector 
declaration 
 
 
 
CSS declarations sit inside curly brackets and each is made up of two parts: a _________ and a _________, separated by a colon. 
property 
value 
 
 
 
Using the <link> element and linking in a separate CSS stylesheet to your HTML ...
CSS Questions and Answers Graded A+
CSS Questions and Answers Graded A+ 
 
Which of the following is the correct syntax to center a heading in CSS? 
Select one: 
a. 
{ h2=text-align: center; } 
b. 
<h2 text-align: center> 
c. 
h2 { text: center; } 
d. 
h2 { text-align: center; } 
h2 { text-align: center; } 
 
 
 
Which of the following is the correct syntax for a comment/remark in CSS? 
Select one: 
a. 
/ Navigation Menu / 
b. 
// Navigation Menu 
c. 
/ Navigation Menu / 
d. 
# Navigation Menu 
/ Navigation Menu / 
(it has t...
- Package deal
- Exam (elaborations)
- • 4 pages •
CSS Questions and Answers Graded A+ 
 
Which of the following is the correct syntax to center a heading in CSS? 
Select one: 
a. 
{ h2=text-align: center; } 
b. 
<h2 text-align: center> 
c. 
h2 { text: center; } 
d. 
h2 { text-align: center; } 
h2 { text-align: center; } 
 
 
 
Which of the following is the correct syntax for a comment/remark in CSS? 
Select one: 
a. 
/ Navigation Menu / 
b. 
// Navigation Menu 
c. 
/ Navigation Menu / 
d. 
# Navigation Menu 
/ Navigation Menu / 
(it has t...
ALS PCS Questions and Answers
ALS PCS Questions and Answers 
When must a paramedic patch to a base hospital? 
- A medical directive requires a mandatory patch 
- An RBH introduces a mandatory BH patch point 
- For situations that fall outside of these Medical Directives where the paramedic believes the patient may benefit from online medical direction that falls within the paramedics scope of practice 
- There is uncertainty about the appropriateness of a medical directive 
 
 
 
What information is needed when transferring ...
- Package deal
- Exam (elaborations)
- • 2 pages •
ALS PCS Questions and Answers 
When must a paramedic patch to a base hospital? 
- A medical directive requires a mandatory patch 
- An RBH introduces a mandatory BH patch point 
- For situations that fall outside of these Medical Directives where the paramedic believes the patient may benefit from online medical direction that falls within the paramedics scope of practice 
- There is uncertainty about the appropriateness of a medical directive 
 
 
 
What information is needed when transferring ...
Chapter 49 Introduction to ICD-10-PCS Procedure Coding Questions and Answers
Chapter 49 Introduction to ICD-10-PCS Procedure Coding Questions and Answers 
ICD-10-PCS (referred to as PCS in this text) is 
a new coding 
system used by hospitals for coding inpatient procedures. 
 
 
 
The goal in developing ICD-10-PCS was to incorporate several 
specific attributes (characteristics): completeness, unique definitions, 
expandability, multiaxial nature, standardized terminology, 
and structural integrity. 
 
 
 
completeness 
there should be a unique code for 
every procedure...
- Package deal
- Exam (elaborations)
- • 5 pages •
Chapter 49 Introduction to ICD-10-PCS Procedure Coding Questions and Answers 
ICD-10-PCS (referred to as PCS in this text) is 
a new coding 
system used by hospitals for coding inpatient procedures. 
 
 
 
The goal in developing ICD-10-PCS was to incorporate several 
specific attributes (characteristics): completeness, unique definitions, 
expandability, multiaxial nature, standardized terminology, 
and structural integrity. 
 
 
 
completeness 
there should be a unique code for 
every procedure...
BINF4216E - ICD-10-PCS GENERAL TERMS Questions and Answers
BINF4216E - ICD-10-PCS GENERAL TERMS Questions and Answers 
Thoracotomy with exploration (Inspection) of right pleural cavity 
0WJ90ZZ 
 
 
 
Exploratory (inspection) laparotomy peritoneal cavity 
0WJG0ZZ 
 
 
 
Partial removal of right ovary 
0UB00ZZ (excision) 
 
 
 
Endometrial ablation using hysteroscope 
0U5B8ZZ (destruction) 
 
 
 
Total left hip replacement with cemented ceramic on ceramic bearing prosthesis 
0SRB039 (replacement) 
 
 
 
Reopening of the thoracotomy site with drainage and...
- Package deal
- Exam (elaborations)
- • 1 pages •
BINF4216E - ICD-10-PCS GENERAL TERMS Questions and Answers 
Thoracotomy with exploration (Inspection) of right pleural cavity 
0WJ90ZZ 
 
 
 
Exploratory (inspection) laparotomy peritoneal cavity 
0WJG0ZZ 
 
 
 
Partial removal of right ovary 
0UB00ZZ (excision) 
 
 
 
Endometrial ablation using hysteroscope 
0U5B8ZZ (destruction) 
 
 
 
Total left hip replacement with cemented ceramic on ceramic bearing prosthesis 
0SRB039 (replacement) 
 
 
 
Reopening of the thoracotomy site with drainage and...
ICD-10-PCS Overview – Questions and Answers
ICD-10-PCS Overview – Questions and Answers 
Which of the following codes is located in the Medical and Surgical-related sections of ICD-10-PCS? 
a B342ZZZ 
b. C23GQZZ 
c. HZ94ZZZ 
d. 5A2204Z 
d. 5A2204Z 
 
 
 
True or false? ICD-10-PCS Medical and Surgical codes can be looked up in the Index by common procedure names, such as "Appendectomy." 
a. True 
b. False 
a. True 
 
 
 
Complete the following sentence. The third character for codes located in the Medical and Surgical section defin...
- Package deal
- Exam (elaborations)
- • 13 pages •
ICD-10-PCS Overview – Questions and Answers 
Which of the following codes is located in the Medical and Surgical-related sections of ICD-10-PCS? 
a B342ZZZ 
b. C23GQZZ 
c. HZ94ZZZ 
d. 5A2204Z 
d. 5A2204Z 
 
 
 
True or false? ICD-10-PCS Medical and Surgical codes can be looked up in the Index by common procedure names, such as "Appendectomy." 
a. True 
b. False 
a. True 
 
 
 
Complete the following sentence. The third character for codes located in the Medical and Surgical section defin...
NSE 211 Final Exam Review Questions and Answers