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

completed. #10

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
7 changes: 3 additions & 4 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# Submitting Week 1 Assessment
# Submitting First Assessment

### ✅ Completed Files

Select the following as confirmation that the files in this repository are complete.
Please mark the following as confirmation that the tasks in your assessment are complete.

- [ ] Career Readiness
- [ ] Coding Challenges
- [ ] Coding Concepts
- [ ] Interview Questions
Expand All @@ -16,4 +15,4 @@ Do NOT merge your assessment!

### 📝 Feedback

If you would like specific feedback please leave details here:
If you would like specific feedback, please leave details here:
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Assessment for Week 1
# Assessment 1

Being a developer requires an acute attention to detail. The expectation of this assessment is that all instructions are read carefully and followed completely.

Expand All @@ -8,7 +8,7 @@ The step-by-step instructions [here](https://github.com/LEARNAcademy/Syllabus/bl

Assessment should be accessed through the GitHub Classroom link provided to you in Slack.

PRs should be posted _before_ class begins on the following Monday.
This assessment is due _before_ class begins at 9am on the following Monday.

---

Expand Down
17 changes: 0 additions & 17 deletions career-readiness.md

This file was deleted.

11 changes: 5 additions & 6 deletions code-challenges.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,18 @@
// Pseudo coding is REQUIRED
// If you get stuck, leave comments to help us understand your thought process

// Reminder: Ensure you are in the correct directory
// Run the file with the following command: $ node code - challenges.js
// Run the file with the following command: $ node code-challenges.js

// --------------------INSTRUCTOR EXAMPLE: Create a conditional statement that evaluates two strings and determines which of the strings has more characters. Use the two sets of test variables provided.
// --------------------INSTRUCTOR EXAMPLE: Create a function that evaluates two strings and determines which of the strings has more characters. Use the two sets of test variables provided.

// Set one:
const fruit1 = "apple"
const fruit2 = "banana"
// Expected outcome: "banana"

// Set two:
// const fruit1 = "cherry"
// const fruit2 = "kiwi"
const fruit3 = "cherry"
const fruit4 = "kiwi"
// Expected outcome: "cherry"

// Pseudo code:
Expand All @@ -37,7 +36,7 @@ const currentCohort = "LEARN 2023"

// Pseudo code:

// --------------------3) Create the code that will log only the odd numbers from the array using the test variable provided below.
// --------------------3) Use a for loop to log only the odd numbers from the array using the test variable provided below.

const stockExchange = [13, 34, -4, 42, 5, -5, 10, 27, 42, 10]
// Expected output: 13 5 -5 27
Expand Down
2 changes: 1 addition & 1 deletion coding-concepts.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const weekendDays = ["saturday", "sunday"]

// --------------------5) What will this log?

const dataTypes = ["number", "string", "Boolean", "undefined"]
const dataTypes = ["null", "string", "Boolean", "undefined"]
// console.log(typeof dataTypes.length)

// a) Your answer:
Expand Down