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

WEST MIDLANDS-JAN-ITP|SEGUN FOLAYAN|STRCURING AND TESTING DATA|SPRINT2 #429

Open
wants to merge 8 commits into
base: main
Choose a base branch
from

Conversation

segunfolayan
Copy link

@segunfolayan segunfolayan commented Mar 25, 2025

Learners, PR Template

Self checklist

  • I have committed my files one by one, on purpose, and for a reason
  • I have titled my PR with COHORT_NAME | FIRST_NAME LAST_NAME | REPO_NAME | WEEK
  • I have tested my changes
  • My changes follow the style guide
  • My changes meet the requirements of this task

Changelist

Briefly explain your PR.

Questions

Ask any questions you have for your reviewer.

@segunfolayan segunfolayan changed the title WEST MIDLANDS-JAN-ITP|SEGUN FOLAYAN WEST MIDLANDS-JAN-ITP|SEGUN FOLAYAN|STRCURING AND TESTING DATA|SPRINT2 Mar 25, 2025
@segunfolayan segunfolayan added the Needs Review Participant to add when requesting review label Mar 25, 2025
@cjyuan cjyuan added the Review in progress This review is currently being reviewed. This label will be replaced by "Reviewed" soon. label Apr 1, 2025
Copy link

@cjyuan cjyuan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code looks good. You just missed a few parts.

return weight/(height**2)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How would you modify your code to achieve this?

Your result will be displayed to 1 decimal place, for example 23.4.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

function calculateBMI(weight, height) {

const BM = weight/(height**2);
const BMI = BM.toFixed(1);  
return BMI

}

// You will need to play computer with this example - use the Python Visualiser https://pythontutor.com/visualize.html#mode=edit
// to help you answer these questions

// Questions

// a) When formatTimeDisplay is called how many times will pad be called?
// =============> write your answer here
//pad will be called three times
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You missed parts (b) to (e).

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

// a) When formatTimeDisplay is called how many times will pad be called?
// =============> write your answer here
//pad will be called three times

// Call formatTimeDisplay with an input of 61, now answer the following:

// b) What is the value assigned to num when pad is called for the first time?
// =============> write your answer here
//Value assigned will be 0

// c) What is the return value of pad is called for the first time?
// =============> write your answer here
// The return value is 00
// d) What is the value assigned to num when pad is called for the last time in this program? Explain your answer
// =============> write your answer here
// The assigned value is 1

// e) What is the return value assigned to num when pad is called for the last time in this program? Explain your answer
// =============> write your answer here
// The return value is 01

@cjyuan cjyuan added Reviewed Volunteer to add when completing a review and removed Needs Review Participant to add when requesting review Review in progress This review is currently being reviewed. This label will be replaced by "Reviewed" soon. labels Apr 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Reviewed Volunteer to add when completing a review
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants