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
9 months ago
9 months 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");
}
}
***
9 months ago
Please try again with the same. Let us know if you face the same error.
10 months ago
Please share the screenshot to the discord channel discord.gg/NtQXAPQfvF
10 months ago
Please share more details and screenshot to the discord channel - *https://*discord.gg/NtQXAPQfvF
10 months ago
I hope the below code helps you:
***



CSS Grid Template Areas




1

2

3

4

5

6

7

8

9




***
10 months ago
Are you not getting the whole lesson or the exercise instructions. Please let us know.
10 months ago
Please share the your code and error. Thanks!
10 months 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);
***
10 months 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;
}
***
10 months ago