Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

It's a simple for loop with **i** as iterator which goes up to 20 in steps of 2.

Related - https://www.studytonight.com/forum/facing-issue-in-level-5-lesson-2-in-js-course
2 years ago
2 years ago
Use **m** instead of **battery** as provided in the code.

***
void battery_check(struct mobile m) {
if(m.battery < 3000) {
printf("Poor battery backup");
}
else if(m.battery > 3000) {
printf("Good battery backup");
}
}
***
2 years ago
Please try again with the same. Let us know if you face the same error.
2 years ago
Please share the screenshot to the discord channel discord.gg/NtQXAPQfvF
2 years ago
Please share more details and screenshot to the discord channel - *https://*discord.gg/NtQXAPQfvF
2 years ago
I hope the below code helps you:
***



CSS Grid Template Areas




1

2

3

4

5

6

7

8

9




***
2 years ago
Are you not getting the whole lesson or the exercise instructions. Please let us know.
2 years ago
Please share the your code and error. Thanks!
2 years ago
The output according to the instructions would be:
***
false
false
***

Here is the code which I used:
***
let x = 10;
let y = 50;
let z = "10";

var xy = x >= y;
console.log(xy);

console.log(x === z);
***
2 years ago
Try this code:

***
#include

int main() {

int x;
scanf("%d", &x);
if(x > 10) {
printf("Value of X is greater than 10");
}
else {
printf("X is less than 10");
}

return 0;
}
***
2 years ago