Are you preparing for the SEE Exam in Nepal and worried about the QBasic questions? You're in the right place! In this video, we cover the most important and 100% sure modular programming questions in QBasic that are likely to appear in the SEE 2024 exam. These questions are crucial for your preparation, and understanding them will give you the confidence you need to ace the exam.
📌 What you'll learn:
Key modular programming concepts in QBasic
Step-by-step solutions to likely SEE exam questions
Tips and tricks for solving QBasic problems quickly and accurately
Make sure to watch the video till the end, practice these questions, and share with your friends who are also preparing for the SEE exam. Don't forget to like, comment, and subscribe to our channel for more exam tips and tutorials!
Code:
100% Sure Question: SEE : QBASIC for 4 marks :
1. Write a program to calculate Area of circle using Function procedure and use SUB procedure to calculate its circumference in Q-Basic.[Hint: [A=πr2], [C=2πr]
2. Write a program in QBASIC to find the total surface area of a box using FUNCTION...END FUNCTION, and area of 4 walls using SUB...END SUB.
[Hint: [A =2H(L+B)], TSA=2 x (lw + lh + hw) ]
DECLARE FUNCTION TSA(L,H,W)
DECLARE SUB AREA(H,L,B)
CLS
INPUT"ENTER LENGTH,BREADTH,HEIGHT,WIDTH";L,B,H,W
PRINT"TOTAL SURFACE AREA IF A BOX IS";TSA(L,H,W)
CALL AREA(H,L,B)
END
FUNCTION TSA(L,H,W)
TSA = 2*(L*W + L*H + H*W)
END FUNCTION
SUB AREA(H,L,B)
A = 2*H*(L+B)
PRINT"AREA OF 4 WALLS OF A ROOM";A
END SUB
DECLARE SUB CIRC(R)
DECLARE FUNCTION AREA(R)
CLS
INPUT"ENTER RADIUS OF A CIRCLE";R
X = AREA(R)
PRINT"AREA OF CIRCLE IS";X
CALL CIRC(R)
END
SUB CIRC(R)
C = 2*3.14*R
PRINT"CIRCUMFERENCE OF A CIRCLE IS";C
END SUB
FUNCTION AREA(R)
AREA = 22/7*R*R
END FUNCTION
🚀 Best of luck with your SEE exam! 🚀
#SEEExam #QBasic #ModularProgramming #SEEPreparation #SEE2024 #NepalEducation #QBasicTutorial #SEEStudyTips #SEE2024Preparation
Watch video 100% Sure SEE Exam Modular Programming Questions in QBasic | Must-Know Questions for Nepal SEE 2024 online without registration, duration hours minute second in high quality. This video was added by user Make Easy 15 August 2024, don't forget to share it with your friends and acquaintances, it has been viewed on our site 8 once and liked it people.