This lesson is still being designed and assembled (Pre-Alpha version)
  • What did you learn from this exercise?

Results

This page will the results of the survey labelled with participants’ unique identifiers. Find your identifier and follow the links to view your results.

191wh00

The results for this entry can be found at survey-191wh00.html

Click here to see the markdown generated from the entry

---
sandpaper-digest: 2f1f12c75fc45779b83fd55385ef2fd9
title: "Results for 191wh00"
---



# Challenge: Simple Nested

Please write your answers for the simple nested challenge below

## HTML `<div>`

<div class='challenge'>

## Challenge

Use the `paste()` function to concatenate the strings “hello” and “there” in R


<div class='solution'>

## Solution

```r
paste("hello", "there")
```

```output
[1] "hello there"
```

</div>
</div>

## {dovetail}

```r setup, include = FALSE}
library(dovetail)
```

<div class='challenge' markdown='1'>

## Challenge
Use the `paste()` function to concatenate the strings “hello” and “there” in R

<div class='solution' markdown='1'>

## solution
 
```r
paste("hello", "there")
```

```output
[1] "hello there"
```

</div>

</div>


## pandoc fenced div

:::::::::: challenge

## Challenge

Use the `paste()` function to concatenate the strings “hello” and “there” in R

::::: solution

## solution

```r
paste("hello", "there")
```

```output
[1] "hello there"
```

:::::

::::::::::

--------------------------------------------------------------------------------

# Challenge: Complex Nested

Please write your answers for the complex nested challenge below

## HTML `<div>`

<div class='challenge'>

## Challenge

Use the `paste()` function to concatenate the strings “hello” and “there” in R


<div class='solution'>

## School Solution

```r
paste("hello", "there")
```

```output
[1] "hello there"
```

</div>

Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”

<div class='solution'>

## Fast Solution

```r
paste0("mono", "rail")
```

```output
[1] "monorail"
```

</div>

</div>

## {dovetail}

```r setup, include = FALSE}
library(dovetail)
```

<div class='challenge' markdown='1'>

## Challenge
Use the `paste()` function to concatenate the strings “hello” and “there” in R

<div class='solution' markdown='1'>

## School Solution
 
```r
paste("hello", "there")
```

```output
[1] "hello there"
```

Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”

<div class='solution' markdown='1'>

## Fast Solution
 
```r
paste0("mono", "rail")
```

```output
[1] "monorail"
```

</div>

</div>

</div>


## pandoc fenced div

:::::::::: challenge

## Challenge

Use the `paste()` function to concatenate the strings “hello” and “there” in R

::::: solution

## School Solution

```r
paste("hello", "there")
```

```output
[1] "hello there"
```

:::::

Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”

::::: solution

## Fast solution

```r
paste0("mono", "rail")
```

```output
[1] "monorail"
```

:::::

::::::::::

HISWH21

The results for this entry can be found at survey-HISWH21.html

Click here to see the markdown generated from the entry

---
sandpaper-digest: 112e935405809031f3ca796345e79380
title: "Results for HISWH21"
---

## HTML `<div>`

<div class="challenge">

  ## Challenge
  
  Use the `paste()` function to concatenate the strings “hello” and “there” in R.
  
  <div class="solution">
  
    ## Solution
    
    ```r
    paste("hello","there")
    ```
    
    ```output
    [1] "hello there"
    ```
  </div>

</div>

## {dovetail}



<div class='challenge' markdown='1'>

## Challenge
Use the `paste()` function to concatenate the strings “hello” and “there” in R.

<div class='solution' markdown='1'>

## Solution
 
```r
paste("hello","there")
```
   
```output
[1] "hello there"
```

</div>

</div>

## pandoc fenced div

::::::::::::::::::::::::::::::::::::::::::::: challenge
  
## Challenge

Use the `paste()` function to concatenate the strings “hello” and “there” in R.

:::::::::::::::::::::: solution

## Solution

```r
paste("hello","there")
```
    
```output
[1] "hello there"
```
::::::::::::::::::::::

:::::::::::::::::::::::::::::::::::::::::::::

--------------------------------------------------------------------------------

## HTML `<div>`

<div class="challenge">

  ## Challenge
  
  Use the `paste()` function to concatenate the strings “hello” and “there” in R.
  
  <div class="solution">
  
    ## School Solution
    
    ```r
    paste("hello","there")
    ```
    
    ```output
    [1] "hello there"
    ```
  </div>
  
  Great! Now use `paste0()` function to paste together "mono" and "rail" to make "monorail"
  
    <div class="solution">
  
    ## Fast Solution
    
    ```r
    paste0("mono","rail")
    ```
    
    ```output
    [1] "monorail"
    ```
  </div>

</div>

## {dovetail}



<div class='challenge' markdown='1'>

## Challenge
Use the `paste()` function to concatenate the strings “hello” and “there” in R.

<div class='solution' markdown='1'>

## School Solution
 
```r
paste("hello","there")
```
   
```output
[1] "hello there"
```

Great! Now use `paste0()` function to paste together "mono" and "rail" to make "monorail"

<div class='solution' markdown='1'>

## Fast Solution
    
```r
paste0("mono","rail")
```
  
```output
[1] "monorail"
```

</div>

</div>

</div>

## pandoc fenced div

## pandoc fenced div

::::::::::::::::::::::::::::::::::::::::::::: challenge
  
## Challenge

Use the `paste()` function to concatenate the strings “hello” and “there” in R.

:::::::::::::::::::::: solution

## School Solution

```r
paste("hello","there")
```
    
```output
[1] "hello there"
```
::::::::::::::::::::::

Great! Now use `paste0()` function to paste together "mono" and "rail" to make "monorail"

:::::::::::::::::::::: solution

## Fast Solution

```r
paste0("mono","rail")
```

```output
[1] "monorail"
```
::::::::::::::::::::::

:::::::::::::::::::::::::::::::::::::::::::::

badgr50

The results for this entry can be found at survey-badgr50.html

Click here to see the markdown generated from the entry

---
sandpaper-digest: 0aa51f778f1f1ee515b0dd98c492a278
title: "Results for badgr50"
---

## HTML `<div>`

<div class ='challenge'>
## Challenge
Use the paste() function to concatenate the strings “hello” and “there” in R

<div class='solution'>
## Solution
```R
paste("hello", "there")
```

```output
"hello there"
```
</div>
</div>

## {dovetail}

<!-- ZNK: had to rename False to FALSE -->



<div class='challenge' markdown='1'>

## Challenge
Use the paste() function to concatenate the strings #' “hello” and “there” in R
```R
paste("hello", "there")
```

<div class='solution' markdown='1'>

## Solution
 ```output
"hello there"
```

</div>

</div>


## pandoc fenced div

::::: challenge
## Challenge
Use the paste() function to concatenate the strings “hello” and “there” in R

::: solution
```R
paste("hello", "there")
```

```output
"hello there"
```
:::
:::::

--------------------------------------------------------------------------------

## HTML `<div>`

<div class ='challenge'>

Use the paste() function to concatenate the strings “hello” and “there” in R

<div class ='solution'>
```R
paste("hello", "there")
```

```output
"hello there"
```
</div>

Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail

<div class ='solution'>
```R
paste0("mono", "rail")
```

```output
"monorail"
```

</div>
</div>

## {dovetail}

```r
library(dovetail)
```


<div class='challenge' markdown='1'>

Use the paste() function to concatenate the strings #' “hello” and “there” in R
```R
paste("hello", "there")
```

<div class='solution' markdown='1'>

## Solution
 ```output
"hello there"
```

Great! Now use `paste0()` to paste together “mono” and #' “rail” to make “monorail

<div class='solution' markdown='1'>

## Solution
 ```R
paste0("mono", "rail")
```

```output
"monorail"
```

</div>

</div>

</div>

## pandoc fenced div

:::::: challenge
Use the paste() function to concatenate the strings “hello” and “there” in R

::::solution
```R
paste("hello", "there")
```

```output
"hello there"
```
::::

Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail

:::: solution
```R
paste0("mono", "rail")
```

```output
"monorail"
```
::::
::::::

blawh95

The results for this entry can be found at survey-blawh95.html

Click here to see the markdown generated from the entry

---
sandpaper-digest: ae3597ceb4d1e04d9686af31d25cbae5
title: "Results for blawh95"
---

# Challenge: Simple Nested

Please write your answers for the simple nested challenge below

## HTML `<div>`

<div class="challenge">

## Challenge

Use the `paste()` function to concatenate the strings “hello” and “there” in R

<div class="solution">

## Solution

```r
paste("hello", "there")
```

```output
## [1] "hello there"
```

</div>
</div>

## {dovetail}



<div class='challenge' markdown='1'>

## Challenge
Use the `paste()` function to concatenate the strings “hello” and “there” in R

<div class='solution' markdown='1'>

## Solution
 
```r
paste("hello", "there")
```

```output
"hello there"
```

</div>

</div>

## pandoc fenced div

::: challenge

## Challenge

Use the `paste()` function to concatenate the strings “hello” and “there” in R

:::::: solution

## Solution

```r
paste("hello", "there")
```

```output
## [1] "hello there"
```

::::::

:::

--------------------------------------------------------------------------------


# Challenge: Complex Nested

Please write your answers for the complex nested challenge below

## HTML `<div>`

<div class="challenge">

## Challenge

Use the `paste()` function to concatenate the strings “hello” and “there” in R

<div class="solution">

## School Solution

```r
paste("hello", "there")
```

```output
## [1] "hello there"
```

</div>

Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”

<div class="solution">

## Fast Solution

```r
paste0("mono", "rail")
```

```output
## [1] "monorail"
```

</div>
</div>

## {dovetail}



<div class='challenge' markdown='1'>

## Challenge
Use the `paste()` function to concatenate the strings “hello” and “there” in R

<div class='solution' markdown='1'>

## School Solution
 
```r
paste("hello", "there")
```

```output
"hello there"
```

</div>


Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”


<div class='solution' markdown='1'>

## Fast Solution
 
```r
paste0("mono","rail")
```

```output
"monorail"
```

</div>

</div>

## pandoc fenced div

::: challenge

## Challenge

Use the `paste()` function to concatenate the strings “hello” and “there” in R

:::::: solution

## School Solution

```r
paste("hello", "there")
```

```output
## [1] "hello there"
```

::::::

Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”

:::::: solution

## Fast Solution

```r
paste0("mono", "rail")
```

```output
## [1] "monorail"
```

::::::

:::

halgr54

The results for this entry can be found at survey-halgr54.html

Click here to see the markdown generated from the entry

---
sandpaper-digest: 0504e7c4d0761a67220d94f5fb299c72
title: "Results for halgr54"
---

# Challenge: Simple Nested

Please write your answers for the simple nested challenge below

## HTML `<div>`

<div class='challenge'>

Use the `+` operator to concatenate the strings "hello " and "there" in R

<div class='solution'>

## Solution

```R
paste("hello", "there")
```

```output
"hello there"
```
</div>
</div>


## {dovetail}

<div class='challenge' markdown='1'>

## Challenge
U
Use the `+` operator to concatenate the strings "hello " and "there" in R

<div class='solution' markdown='1'>

## Solution
 
```R
paste("hello", "there")
```
```output
"hello there"
```

</div>

</div>

## pandoc fenced div

::::::::::::::::::::::::::::::::::::::::::::: challenge

## Challenge

Use the `+` operator to concatenate the strings "hello " and "there" in R

:::::::::::::::::::::: solution

## solution

```R
paste("hello", "there")
```

```output
"hello there"
```

::::::::::::::::::::::::::::::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::
--------------------------------------------------------------------------------

# Challenge: Complex Nested

Please write your answers for the complex nested challenge below

## HTML `<div>`

<div class='challenge'>

Use the `+` operator to concatenate the strings "hello " and "there" in R

<div class='solution'>

## Solution

```R
paste("hello", "there")
```

```output
"hello there"
```
</div>

Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”

<div class='solution'>

## Solution

```R
paste0("mono", "rail")
```

```output
"monorail"
```
</div>

</div>


## {dovetail}

<div class='challenge' markdown='1'>

## Challenge
Use the `+` operator to concatenate the strings "hello " and "there" in R

<div class='solution' markdown='1'>

## Solution
 
```R
paste("hello", "there")
```
```output
"hello there"
```

</div>


Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”


<div class='solution' markdown='1'>

## Solution
 
```R
paste0("mono", "rail")
```
```output
"monorail"
```

</div>

</div>

## pandoc fenced div

::::::::::::::::::::::::::::::::::::::::::::: challenge

## Challenge

Use the `+` operator to concatenate the strings "hello " and "there" in R

:::::::::::::::::::::: solution

## solution

```R
paste("hello", "there")
```

```output
"hello there"
```

::::::::::::::::::::::::::::::

Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”


:::::::::::::::::::::: solution

## solution

```R
paste0("mono", "rail")
```

```output
"monorail"
```

::::::::::::::::::::::::::::::

::::::::::::::::::::::::::::::::::::::::::::::::::::::::

idrwh97

The results for this entry can be found at survey-idrwh97.html

Click here to see the markdown generated from the entry

---
sandpaper-digest: 8696812e5ea29f9b5a6bee3bfb102f5a
title: "Results for idrwh97"
---

# Challenge: Simple Nested

Please write your answers for the simple nested challenge below

## HTML `<div>`

<div class='challenge'>

## Challenge

Use the `paste()` function to concatenate the strings "hello" and "there" in R

<div class='solution'>

## Solution

```r
paste("hello", "there")
```

```output
"hello there"
```

</div>
</div>

## {dovetail}



<div class='challenge' markdown='1'>

## Challenge
Use the `paste()` function to concatenate the strings "hello" and "there" in R

<div class='solution' markdown='1'>

## Solution
 
```r
paste("hello", "there")
```

```output
"hello there"
```

</div>

</div>

## pandoc fenced div

::::::::::::::::::::::::::::::::::::challenge

## Challenge

Use the `paste()` function to concatenate the strings "hello" and "there" in R

:::::::::::::::::::::::::::solution

## Solution

```r
paste("hello", "there")
```

```output
"hello there"
```

:::::::::::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::::::::::::::::

--------------------------------------------------------------------------------

# Challenge: Complex Nested

Please write your answers for the complex nested challenge below

## HTML `<div>`

<div class='challenge>

## Challenge

Use the `paste()` function to concatenate the strings "hello" and "there" in R

<div class='solution'>

# School Solution

```r
paste("hello", "there")
```

```output
"hello there"
```

</div>

Great! Now use `paste0()` to paste together "mono" and "rail" to make "monorail"

<div class='solution'>

## Fast Solution

```r
paste0("mono", "rail")
```

```output
"monorail"
```

</div>

</div>

## {dovetail}



<div class='challenge' markdown='1'>

## Challenge
Use the `paste()` function to concatenate the strings "hello" and "there" in R

<div class='solution' markdown='1'>

## School Solution
 
```r
paste("hello", "there")
```

```output
"hello there"
```

</div>


Great! Now use `paste0()` to paste together "mono" and "rail" to make "monorail


<div class='solution' markdown='1'>

## Fast Solution
 
```r
paste0("mono", "rail")
```

```output
"monorail"
```

</div>

</div>

## pandoc fenced div

::::::::::::::::::::::::::::::::::::challenge

## Challenge

Use the `paste()` function to concatenate the strings "hello" and "there" in R

:::::::::::::::::::::::::::solution

## School Solution

```r
paste("hello", "there")
```

```output
"hello there"
```

:::::::::::::::::::::::::::::::::::

Great! Now use `paste0()` to paste together "mono" and "rail" to make "monorail

:::::::::::::::::::::::::::solution

## Fast Solution

```r
paste0("mono", "rail")
```

```output
"monorail"
```

:::::::::::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::::::::::::::::

knibe84

The results for this entry can be found at survey-knibe84.html

Click here to see the markdown generated from the entry

---
sandpaper-digest: 3a9648075c4e5c19f4fa7ce630e104bd
title: "Results for knibe84"
---




# Challenge: Simple Nested

Please write your answers for the simple nested challenge below

## HTML `<div>`

<div class='challenge'>

## Challenge

Use the `paste()` function to concatenate the strings "hello" and "there" in R

<div class='solution'>

## Solution

```r
paste("hello", "there")
```

```output
[1] "hello there"
```

</div>
</div>


## {dovetail}

<div class='challenge' markdown='1'>

## Challenge
Use the `paste()` function to concatenate the strings "hello" and "there"
in R

<div class='solution' markdown='1'>

## Solution
 ```r
paste("hello", "there")
```

```output
[1] "hello there"
```

</div>

</div>

## pandoc fenced div
::: challenge

## Challenge

Use the `paste()` function to concatenate the strings "hello" and "there" in R

::::: solution

## Solution

```r
paste("hello", "there")
```

```output
[1] "hello there"
```

:::::
:::



--------------------------------------------------------------------------------


# Challenge: Complex Nested

Please write your answers for the complex nested challenge below


## HTML `<div>`

<div class='challenge'>

## Challenge

Use the `paste()` function to concatenate the strings "hello" and "there" in R

<div class='solution'>

## School Solution

```r
paste("hello", "there")
```

```output
[1] "hello there"
```
</div>

Great! Now use `paste0()` to paste together "mono" and "rail" to make
"monorail"

<div class='solution'>

## Fast Solution

```r
paste0("mono", "rail")
```

```output
[1] "monorail"
```

</div>
</div>


## {dovetail}

<div class='challenge' markdown='1'>

## Challenge
Use the `paste()` function to concatenate the strings "hello" and "there"
in R

<div class='solution' markdown='1'>

## School Solution
 
```r
paste("hello", "there")
```

```output
[1] "hello there"
```

</div>


Great! Now use `paste0()` to paste together "mono" and "rail"
to make "monorail"


<div class='solution' markdown='1'>

## Fast Solution
 
```r
paste0("mono", "rail")
```

```output
[1] "monorail"
```

</div>

</div>

## pandoc fenced div

::: challenge

## Challenge

Use the `paste()` function to concatenate the strings "hello" and "world" in R

::::: solution

## Solution

```r
paste("hello", "there")
```

```output
[1] "hello there"
```

:::::

Great! Now use 'paste0()' to paste together "mono" and "rail" to make
"monorail"

::::: solution

## Fast Solution

```r
paste0("mono", "rail")
```

```output
[1] "monorail"
```

:::::
:::

parwh16

The results for this entry can be found at survey-parwh16.html

Click here to see the markdown generated from the entry

---
sandpaper-digest: 0b136f0ce303adbcda45735a21f731de
title: "Results for parwh16"
---

<!-- ZNK Note: all of the header tags were increased by one, I decreased them -->



## HTML `<div>`

<div class = "challenge">
  ### Challenge
  Use the `paste()` function to concatenate the strings “hello” and “there”.
  <div class = "solution>
  ### Solution
  ```r
  paste("Hello", "there!")
  ```
  
  ```output
  "Hello there!
  ```
  </div>
</div>

## {dovetail}

<div class='challenge' markdown='1'>

#
#` Use the `paste()` function to concatenate the strings “hello” and “there”.
#`
#` @solution Solution
#`
#` ```r
paste("Hello", "there!")
#` ```
#`
#` ```output
"Hello there!"
#`

</div>


## pandoc fenced div

::::::::::::::::::::::::::::::::::::::::challenge
### Challenge
Use the `paste()` function to concatenate the strings “hello” and “there”.

::::::::::::::::::::::::::::::::solution
### Solution
```r
paste("Hello", "there!")
```

```output
"Hello there!
```
::::::::::::::::::::::::::::::::
::::::::::::::::::::::::::::::::::::::::

--------------------------------------------------------------------------------

## HTML `<div>`

<div class = "challenge">
  ### Challenge
  Use the `paste()` function to concatenate the strings “hello” and “there”.

  <div class = "solution>
  ### School Solution
  ```r
  paste("Hello", "there!")
  ```

  ```output
  "Hello there!
  ```
  </div>

  Great! Now use `paste0()` to paste together “mono” and “rail” to make
  “monorail”

  <div class = "solution>
  ### Fast Solution
  ```r
  paste0("mono", "rail")
  ```

  ```output
  monorail
  ```
  </div>

</div>

## {dovetail}

<div class='challenge' markdown='1'>

#
#` Use the `paste()` function to concatenate the strings “hello” and “there”.
#`
#` @solution School Solution
#`
#` ```r
paste("Hello", "there!")
#` ```
#`
#` ```output
"Hello there!"
#`
#` Great! Now use `paste0()` to paste together “mono” and “rail” to make
#` "monorail”
#`
#` @solution Fast Solution
#`
#` ```r
paste0("mono", "rail")
#` ```
#` ```output
monorail
#` ```

</div>


## pandoc fenced div

::::::::::::::::::::::::::::::::::::::::challenge
### Challenge
Use the `paste()` function to concatenate the strings “hello” and “there”.

::::::::::::::::::::::::::::::::solution
### School Solution
```r
paste("Hello", "there!")
```

```output
"Hello there!
```
::::::::::::::::::::::::::::::::

Great! Now use `paste0()` to paste together “mono” and “rail” to make
“monorail”

::::::::::::::::::::::::::::::::solution
### Fast Solution
```r
paste0("Mono", "rail")
```

```output
Monorail
```
::::::::::::::::::::::::::::::::
::::::::::::::::::::::::::::::::::::::::

stata22

The results for this entry can be found at survey-stata22.html

Click here to see the markdown generated from the entry

---
sandpaper-digest: 2bfa528afddfb9a925251dbade497202
title: "Results for stata22"
---

# Challenge: Simple Nested

Please write your answers for the simple nested challenge below

## HTML `<div>`

<div class='challenge'>

## Challenge

Use the `paste()` function to concatenate the strings “hello” and “there” in R

## Solution

<div class='solution'>
```r
paste("hello", "there")
```

</div>
</div>

## {dovetail}



<div class='challenge' markdown='1'>

## Challenge
Use the `paste()` function to concatenate the strings “hello” and “there” in R

<div class='solution' markdown='1'>

## Solution
 ```r
paste("hello", "there")
```

```output
[1] "hello there"
```

</div>

</div>

## pandoc fenced div

::::::::::::::::::::::::::::::::::::::::::: Challenge

## Challenge

Use the `paste()` function to concatenate the strings “hello” and “there” in R

:::::::::::::::::::::::: solution

## Solution
```r
paste("hello", "there")
```

```output
[1] "hello there"
```
:::::::::::::::::::::::
:::::::::::::::::::::::::::::::::::::::::::

--------------------------------------------------------------------------------

# Challenge: Complex Nested

Please write your answers for the complex nested challenge below

## HTML `<div>`

<div class='challenge'>

## Challenge

Use the `paste()` function to concatenate the strings “hello” and “there” in R

## Solution

<div class='solution'>
```r
paste("hello", "there")
```

Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”

<div class='solution'>
```r
paste0("mono", "rail")
```

</div>
</div>

## {dovetail}



<div class='challenge' markdown='1'>

## Challenge
Use the `paste()` function to concatenate the strings “hello” and “there” in R

<div class='solution' markdown='1'>

## Solution
 ```r
paste("hello", "there")
```
Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”

<div class='solution' markdown='1'>

## Solution
 ```r
paste0("mono", "rail")
```

</div>

</div>

</div>

## pandoc fenced div

::::::::::::::::::::::::::::::::::::::::::: Challenge

## Challenge

Use the `paste()` function to concatenate the strings “hello” and “there” in R

:::::::::::::::::::::::: solution

## Solution
```r
paste("hello", "there")
```

::::::::::::::::::::::::

Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”

:::::::::::::::::::::::: solution

## Solution
```r
paste0("mono", "rail")
```

::::::::::::::::::::::::
:::::::::::::::::::::::::::::::::::::::::::

tljgr00

The results for this entry can be found at survey-tljgr00.html

Click here to see the markdown generated from the entry

---
sandpaper-digest: 4a675e26abd1bef25601bad3091cdf24
title: "Results for tljgr00"
---




## HTML `<div>`

<div class="challenge">

## Challenge

Use the `paste()` function to concatenate the strings "hello" and "there" in R. 

<div class="solution">

## Solution

```r
paste("hello","there")
```

```output
[1] "hello there"
```

</div>
</div>

## {dovetail}


<div class='challenge' markdown='1'>

## Challenge
Use the `paste()` function to concatenate the strings "hello" and "there" in R.

<div class='solution' markdown='1'>

## Solution
 
```r
paste("hello","there")
```

```output
[1] "hello there"
```

</div>

</div>


## pandoc fenced div

::::::::::::::::::::::::::::: challenge

## Challenge

Use the `paste()` function to concatenate the strings "hello" and "there" in R. 

::::::::::::::::::::: solution

## Solution

```r
paste("hello","there")
```

```output
[1] "hello there"
```

::::::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::::::::::

--------------------------------------------------------------------------------

## HTML `<div>`

<div class="challenge">

## Challenge

Use the `paste()` function to concatenate the strings "hello" and "there" in R.

 <div class="solution">

## School Solution

```r
paste("hello","there")
```

```output
[1] "hello there"
```

 </div>

Great! Now use `paste0()` to paste together "mono" and "rail" to make "monorail"

  <div class="solution">

## Fast Solution

```r
paste0("mono","rail")
```

```output
[1] "monorail"
```

 </div>
</div>

## {dovetail}

<div class='challenge' markdown='1'>

## Challenge
Use the `paste()` function to concatenate the strings "hello" and "there" in R.

<div class='solution' markdown='1'>

## School Solution
 
```r
paste("hello","there")
```

```output
[1] "hello there"
```

Great! Now use `paste0()` to paste together "mono" and "rail" to make "monorail"

<div class='solution' markdown='1'>

## Fast Solution
 
```r
paste0("mono","rail")
```

```output
[1] "monorail"
```

</div>

</div>

</div>

## pandoc fenced div

::::::::::::::::::::::::::::: challenge

## Challenge

Use the `paste()` function to concatenate the strings "hello" and "there" in R.

::::::::::::::::::::: solution

## School Solution

```r
paste("hello","there")
```

```output
[1] "hello there"
```

::::::::::::::::::::::::::::::

Great! Now use `paste0()` to paste together "mono" and "rail" to make "monorail"

::::::::::::::::::::: solution

## Fast Solution

```r
paste0("mono","rail")
```

```output
[1] "monorail"
```

::::::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::::::::::

wonor45

The results for this entry can be found at survey-wonor45.html

Click here to see the markdown generated from the entry

---
sandpaper-digest: 59512942bc76afd89a40d70f108f8ebe
title: "Results for wonor45"
---

# Challenge: Simple Nested

Please write your answers for the simple nested challenge below

## HTML `<div>`

<div class='challenge'>


## Challenge

Use the `paste()`` function to concatenate the strings “hello” and “there” in R.

<div class='solution'>

## Solution

```r
paste("hello", "there")
```

```output
"hello there"
```

</div>
</div>



## {dovetail}



<div class='challenge' markdown='1'>

## Challenge
Use the `paste()`` function to concatenate the strings “hello” and “there” in R.

<div class='solution' markdown='1'>

## Solution
 
```r
paste("hello", "there")
```

```output
"hello there"
```

</div>

</div>

## pandoc fenced div

::::::::::::::::::::::::::::::: challenge

## Challenge

Use the `paste()`` function to concatenate the strings “hello” and “there” in R.

:::::::::::::::::::: solution

## Solution

```r
paste("hello", "there")
```

```output
"hello there"
```
::::::::::::::::::::
:::::::::::::::::::::::::::::::

--------------------------------------------------------------------------------

## HTML `<div>`

<div class='challenge'>


## Challenge

Use the `paste()`` function to concatenate the strings “hello” and “there” in R.

<div class='solution'>

## School Solution

```r
paste("hello", "there")
```

```output
"hello there"
```

</div>

Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”

<div class='solution'>

## Fast Solution

```r
paste0("mono", "rail")
```

```output
"monorail"
```

</div>
</div>


## {dovetail}



<div class='challenge' markdown='1'>

## Challenge
Use the `paste()`` function to concatenate the strings “hello” and “there” in R.

<div class='solution' markdown='1'>

## School Solution
 
```r
paste("hello", "there")
```

```output
"hello there"
# ```

Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”

<div class='solution' markdown='1'>

## Fast Solution
 
```r
paste0("mono", "rail")
```

```output
"monorail"
# ```

</div>

</div>

</div>

## pandoc fenced div

::::::::::::::::::::::::::::::: challenge

## Challenge

Use the `paste()`` function to concatenate the strings “hello” and “there” in R.

:::::::::::::::::::: solution

## School Solution

```r
paste("hello", "there")
```

```output
"hello there"
```
::::::::::::::::::::

Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”

:::::::::::::::::::: solution

## Fast Solution

```r
paste0("mono", "rail")
```

```output
"monorail"
```
::::::::::::::::::::
:::::::::::::::::::::::::::::::