Computer LIVE class for Class 12-Day 9 | Web & JavaScript | C programming | NEB Exam 2080

preview_player
Показать описание
Computer LIVE class for Class 12-Day 9 | Web & JavaScript | C programming | NEB Exam 2080
#programming #web #javascript
_____________________________
Here in this video I've tried my best to explain about the Web & JavaScript, along with the substantial explanation of multiple questions in नेपाली language.
_____________________________
This video includes the description of 👇:
1️⃣ Web
2️⃣ JavaScript
with some interesting examples.
_____________________________
Watch the next lecture:
_____________________________
WATCH C-programming LIVE class👇
_____________________________
Learn Completely about Structure in C for 8 marks
_____________________________
Learn Completely about File handling in C for 8 marks
_____________________________
Also WATCH: Programming basics👇
_____________________________
Also WATCH: Types of programming languages and their features👇
_____________________________
Also WATCH: Types of language processor software👇
_____________________________
Also WATCH: introduction to C language and its features👇
_____________________________
Also WATCH: different sections of a C program👇
_____________________________
Also WATCH: how to install Turbo C++ in your PC👇
_____________________________
Also WATCH: C character set, keywords, identifies and variables👇
_____________________________
Also WATCH: Datatypes in C language👇
_____________________________
Also WATCH: Input/output functions in C language👇
_____________________________
Also WATCH: Operators and their types in C language👇
_____________________________
Check out our Computer Basics playlist👇
_____________________________
Our website(Find notes there)👇
_____________________________
Show ❤️ at Social media handles👇
_____________________________
Thanks for watching the video, I hope you learned much more in this video, so don't forget to click the like button. If you either think something is missing or appreciate our work, please consider comment section for the feedback.🙂
And finally, stay tuned for the next video by hitting the 🔔 icon.😀
Рекомендации по теме
Комментарии
Автор

Daii mailey Hajur KO half jati video here sakey Tara yess video ma teteii Maja aayena yll ..
I love you daii ❤
Hamro school KO teacher laii tw khaii nee aauna yll teaching garauuna aajha ..🙅🤦🤷
30 years vo bachelor's and +2
Teaching garauna lageyko
Tara Tess laii khaii nee aauna 😢
Aauna teaching ... Aajha butwal KO
Number 1 computer teacher ho 🙅🤦🤷 rw understand garney tw kohe student xaina 😢Tess ley teach gareyko 😢😢

... If I would get A+ in computer ma vaney ma hajur laii thanks vanney ho
Tess laii tw reasult aayepaxi phone gareyrw harib Gali diney ho yll daii 😅
So that you are my real teacher ❤😊

bejaygc
Автор

DAI ANI YO HAMLE PHP RW JAVASCRIPT MA SIDDAI TAG HARU BOILER PLATE NA LI PROMPT USE GARERA INPUT LERA EXAM MA GARNA PAINXA LIKE function factorial(number) {
if (number === 0 || number === 1) {
return 1;
} else {
return number * factorial(number - 1);
}
}

// Example usage
const userInput = parseInt(prompt("Enter a number:"));
const result = factorial(userInput);
console.log(`The factorial of ${userInput} is ${result}.`);

BUNNY-rslv
Автор

2 hours 18min waste vayona jawaa to hai sir aapka🫡

Crishnaaa
Автор

#include <stdio.h>

int main() {
FILE *fptr;
char filename[20];
int rollno;
char name[30];
char address[50];
char phone[15];


printf("Enter filename: ");
scanf("%s", filename);


fptr = fopen(filename, "w");


printf("Enter student data:\n");
printf("Roll No: ");
scanf("%d", &rollno);

while(1) {
printf("Name: ");
scanf("%s", name);
printf("Address: ");
scanf("%s", address);
printf("Phone: ");
scanf("%s", phone);


fprintf(fptr, "%d %s %s %s\n", rollno, name, address, phone);

printf("Enter 'rio' to stop entering data, or any other key to continue: ");
char response[10];
scanf("%s", response);
if(strcmp(response, "rio") == 0) {
break;
}


printf("Roll No: ");
scanf("%d", &rollno);
}


fclose(fptr);


fptr = fopen(filename, "r");


printf("Contents of %s:\n", filename);
char line[100];
while (fgets(line, sizeof(line), fptr) != NULL) {
printf("%s", line);
}

// Close file
fclose(fptr);

return 0;
}

Samir.Edit.SE