Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fundamentals diagnostic commit #209

Open
wants to merge 2 commits into
base: response
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions diagnostic.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ Graces-MacBook-Pro:try grace$

What is the full path to the current directory?

_Replace this text with your answer._
~/Users/grace/wdi/try

## Question 2

Describe GitHub, **briefly** in your own words.

_Replace this text with your answer._
An online server that allows user to submit code and download code from a universal server. Code can also be tracked and controled using Github; allowing users to log changes and view to alterations in said programming.

## Question 3

Expand All @@ -32,7 +32,7 @@ _Replace this text with your answer._

Is the value of this expression `true` or `false`? Explain your answer.

_Replace this text with your answer._
false

## Question 4

Expand All @@ -45,7 +45,7 @@ while (x < 5) {

How many times does the loop run? What's the value of `x` after the while loop?

_Replace this text with your answer._
3 times

## Question 5

Expand All @@ -62,7 +62,7 @@ var result = strangeAdd(0, -5);

What is the value of result? Explain your answer.

_Replace this text with your answer._
-5

## Question 6

Expand All @@ -76,7 +76,7 @@ var groceryList = [

What is the value of `groceryList[2]`?

_Replace this text with your answer._
'a stick of butter'

## Question 7

Expand All @@ -94,4 +94,6 @@ var teamMember = {
What is the value of `teamMember['hobby']`? Of `teamMember['name']`? Of
`teamMember['name']['surname']`?

_Replace this text with your answer._
1.)'exercise'
2.)'Jason'
3.)'JasonWeeks'