- Видео 109
- Просмотров 3 093
Bibek Raj Magar
Непал
Добавлен 16 окт 2020
My name is Bibek Raj Magar. Let's change the way we live, faster, better and together in this digital world. I am happy to be a part of your journey. Besides this, We always have one new learning from the ups and downs in our daily life and we need to grow with these experiences for the best version of our life. I would love to see the difference in the living standard of Nepal🇳🇵.
Please free to share with me your computer, network, server and programming queries/issues.
DISCLAIMER: The information presented in my videos is intended for informational, educational, or guidance purposes only. I don't make any representation or warranties with respect to the accuracy, applicability, or completeness of the video content. You're solely responsible for any actions you take from this information, and I'm not liable for any losses and damages in connection with the use of this information.
Thanks for watching and being here 🙏.
Your Well Wisher 😀
- Bibek Raj Magar
Please free to share with me your computer, network, server and programming queries/issues.
DISCLAIMER: The information presented in my videos is intended for informational, educational, or guidance purposes only. I don't make any representation or warranties with respect to the accuracy, applicability, or completeness of the video content. You're solely responsible for any actions you take from this information, and I'm not liable for any losses and damages in connection with the use of this information.
Thanks for watching and being here 🙏.
Your Well Wisher 😀
- Bibek Raj Magar
Видео
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 ?
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
👍🏻
Sir can put how to use mero share app
Thanks 😊
Welcome 😊
sir cc++ bhanya ka ho
QBASIC jastai ho. Class - 10 ma padhnu parchha.
sir tyo linux ko video
ruclips.net/video/qWoIn80nwvE/видео.html