Git Product home page Git Product logo

checkpoint-00's Introduction

Post Pre-Work/Week1 Quiz

Fork and clone this repo and follow the directions below.

For the following quiz, there will be a series of questions or directions followed by answer goes here. You'll replace answer goes here with your answer between the triple back ticks ( ``` ) Then submit this updated file as a pull request to this repo.

Javascript Variables and Data Structures

Question 1

Create a variable and store the string "pizza" in it

var food = "pizza"

For questions 2-5, use the code below to answer questions 2 through 4.

var names = ["Jonas", "Inigo Montoya", "Slim Shady", "Mr. Robot"];
var clown = {
  name: "Joker",
  evil: true,
  minions: ["Bozo", "Harley Quinn", "Grumpy", "Chuckles"],
  enemy: {
    name: "Batman",
    evil: false,
    minions: ["Robin", "Alfred"]  
  }
};

Question 2

Access the value "Jonas" out of the names array:

var names [0];```

---
### Question 3

Write a for loop such that you say hello(using `console.log`) to each name in the `names` array

```js
for (i = 0, i < 4, i ++)
  console.log('Hello');```

// Objects in an array are numbered starting at 0. Initiate at 0, up to 4, by 1.


---


### Question 4

Access the value `"Alfred"` out of the `clown` object

```js
var clowns = minions [1];```

---
### Question 5

Set a new property on the object stored in the variable clown. Make it anything you want!

```js
var clown = new Clown ("James")```

---
### Question 6
Write a function that takes an array as an argument and returns the array's first value

```js
answer goes here

Git & GitHub

Question 7

What is Git, what problem does it solve? What is the difference between git and github?

Git is a version control system, whereas Github is the web-based application that hosts git files.

Question 8

What is the difference between a fork and a clone?

A fork is the function that takes place in Github to being making changes to a repo. A clone is the local copy of the fork.

HTML & CSS


Question 9

How would you link a css file entitled, hardstyle.css in an html file?

<link rel="stylesheet" type="text/css" href="hardstyle.css">```

---

> ##### For Questions 10 & 11 use the code example below:

```HTML
<!-- ...html stuff above -->
<body>
  <div id="dog-resume">
    <ul class="skillz">
      <li> - Bone Location</li>
      <li> - Remote Sniffing</li>
      <li> - Delineating Territory</li>
      <li> - Shoe Deconstruction </li>
      <li> - Carpet Stain Placement </li>
    </ul>
  </div>
</body>
<!-- html stuff below... -->

Question 10

Write a CSS selector-rule that will select and apply styling to an element with an id of dog-resume:

.dog-resume {
  color: red;
  }```

---

### Question 11

Write a CSS selector-rule that will select and apply styling to every `<li>` inside of a `<ul>`:

ul li { text-align: center; }```

checkpoint-00's People

Contributors

andrewsunglaekim avatar meagdoh avatar superbuggy avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.