Bibek Raj Magar
Bibek Raj Magar
  • Видео 109
  • Просмотров 3 093

Видео

SEE | Computer | QBASIC | File Management | Appending a File
Просмотров 814 дней назад
SEE | Computer | QBASIC | File Management | Appending a File
SEE | Computer | QBASIC | File Management | Reading a Sequential File
Просмотров 514 дней назад
SEE | Computer | QBASIC | File Management | Reading a Sequential File
SEE | Computer | QBASCI | File Management | Creating a Sequential File
Просмотров 714 дней назад
SEE | Computer | QBASCI | File Management | Creating a Sequential File
SEE | Computer | QBASIC | Display sum of first 10 natural number using FUNCTION...END FUNCTION
Просмотров 321 день назад
SEE | Computer | QBASIC | Display sum of first 10 natural number using FUNCTION...END FUNCTION
SEE | Computer | QBASIC | Check divisibility of a number by 4 and 6 using SUB...END SUB
Просмотров 1321 день назад
Write a program to ask a number and check it is exactly divisible by 4 and 6 using SUB…END SUB. Ans: declare sub divisible(n) CLS INPUT "Enter a number: "; n CALL divisible(n) END SUB divisible (n) IF n MOD 4 = 0 AND n MOD 6 = 0 THEN PRINT "Divisible by 4 and 6." ELSE PRINT "Not divisible by 4 and 6." END IF END SUB
SEE | Computer | QBASIC | Program to check whether string is palindrome or not using SUB...END SUB.
Просмотров 821 день назад
SEE | Computer | QBASIC | Program to check whether string is palindrome or not using SUB...END SUB.
SEE | Computer | Modular Programming | QBASIC | Calculate Simple Interest and Amount
Просмотров 1428 дней назад
WAP that asks principal, time and rate of interest and calculate simple interest using SUB…END SUB and amount using FUNCTION…END FUNCTION. [Hint: SI=P*T*R/100, Amount=P SI] Ans: declare sub interest(p,t,r) declare function amount(p) CLS COMMON SHARED si INPUT "Enter principal (in Rs.): "; p INPUT "Enter time (in years): "; t INPUT "Enter rate of interest (in %): "; r CALL interest(p, t, r) am =...
SEE | Computer | QBASIC | Analytical Question | Count Vowels
Просмотров 628 дней назад
REM “to count vowels” DECLARE FUNCTION count(A$) INPUT “Enter a word”; A$ PRINT count(A$) END FUNCTION count(A$) B=LEN(A$) C$=UCASE$(A$) FOR I=1 to B E$=MID$(C$,I,1) IF E$=”A” or E$=”E” or E$=”I” or E$=”O” or E$=”U” THEN C=C 1 END IF NEXT I count = C END FUNCTION Questions: a) List the string library functions used in the above program. Ans: LEN(), UCASE$(), MID$() b) Write down the missing sta...
SEE | Computer | Modular Programming | QBASIC | Re-write the given program after correcting the bugs
Просмотров 528 дней назад
SEE | Computer | Modular Programming | QBASIC | Re-write the given program after correcting the bugs
Class - 12 | Computer | Web Technology | How to display queries in tables ?
Просмотров 11Месяц назад
Class - 12 | Computer | Web Technology | How to display queries in tables ?
Class - 12 | Computer | Web Technology | How to fetch data from database using SQL ?
Просмотров 16Месяц назад
Class - 12 | Computer | Web Technology | How to fetch data from database using SQL ?
Class - 12 | Computer | Web Technology | How to insert data into table using SQL ?
Просмотров 14Месяц назад
Class - 12 | Computer | Web Technology | How to insert data into table using SQL ?
How to install wordpress in localhost including theme and plugin ?
Просмотров 123Месяц назад
How to install XAMPP, VS Code & connect server ? shorturl.at/TXbtw
Class - 12 | Computer | Web Technology | How to create table in MySQL ? (Part - 3)
Просмотров 27Месяц назад
Part - 1 : Part - 2 :
Class - 12 | Computer | Web Technology | How to create database in MySQL ?
Просмотров 85Месяц назад
Class - 12 | Computer | Web Technology | How to create database in MySQL ?
Class - 12 | Computer | Web Technology | How to install XAMPP, VS Code & connect server ? (Part - 1)
Просмотров 184Месяц назад
Class - 12 | Computer | Web Technology | How to install XAMPP, VS Code & connect server ? (Part - 1)
Javascript JS | Looping Control Statement | For Loop
Просмотров 132 месяца назад
Javascript JS | Looping Control Statement | For Loop
Javascript JS | Looping Control Statement | Do While Loop
Просмотров 62 месяца назад
Javascript JS | Looping Control Statement | Do While Loop
Javascript JS | Looping Control Statement | While Loop
Просмотров 52 месяца назад
Javascript JS | Looping Control Statement | While Loop
Javascript JS | Control Statement | Branching statement | Switchcase Statement
Просмотров 342 месяца назад
Javascript JS | Control Statement | Branching statement | Switchcase Statement
How to register .np domain for free ?
Просмотров 313 месяца назад
How to register .np domain for free ?
How to configure Hotspot and Radius server in mikrotik ?
Просмотров 3804 месяца назад
How to configure Hotspot and Radius server in mikrotik ?
Mikrotik | How to configure mikrotik with dhcp client ?
Просмотров 314 месяца назад
Mikrotik | How to configure mikrotik with dhcp client ?
Class - 12 | Computer | Database Management System DBMS | How to install MySQL in Windows ?
Просмотров 354 месяца назад
Class - 12 | Computer | Database Management System DBMS | How to install MySQL in Windows ?
CPU-Z
Просмотров 544 месяца назад
CPU-Z
How to play Dominoes game ?
Просмотров 354 месяца назад
How to play Dominoes game ?
How to join Google classroom via web browser using class code ?
Просмотров 434 месяца назад
How to join Google classroom via web browser using class code ?
SEE | Computer | QBASIC | Formal Parameter | Library Function
Просмотров 195 месяцев назад
SEE | Computer | QBASIC | Formal Parameter | Library Function
SEE | Computer | C Program | Sum of Sequence 1,2,3,4,...upto 10th terms
Просмотров 195 месяцев назад
SEE | Computer | C Program | Sum of Sequence 1,2,3,4,...upto 10th terms

Комментарии