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



CSS Grid Template Areas




1

2

3

4

5

6

7

8

9




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