-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpart-2.qmd
40 lines (30 loc) · 939 Bytes
/
part-2.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# The Components of a Computer Cluster
```{r, echo = FALSE, results='asis'}
knitr::opts_chunk$set(echo = FALSE)
# Uncomment to change widget colours:
#style_widgets(incorrect = "goldenrod", correct = "purple", highlight = "firebrick")
```
## Watch the video
The second video explains the main components of a high performance computer cluster.
{{< video https://www.youtube.com/embed/6loMm3xRKxQ?si=Ke-nFew_55rH9Jbc >}}
## Test your knowledge
After watching the video, check your knowledge by answering the following questions.
::: {.webex-check .webex-box}
```{r, results='asis'}
# QUESTION 1
opts1 <- c(
"head node",
"login node",
"submit node",
answer = "all of the above"
)
cat("What is the name of the node you connect to / login on?", longmcq(opts1))
# QUESTION 2
opts1 <- c(
"general",
"himem2",
answer = "lowmem1"
)
cat("Which of the following is not a partition on xanadu?", longmcq(opts1))
```
:::