Opening Ceremony

Bhim Higher Secondary School Suntopar, Dolakha

Sunday, February 23, 2014

Program in QBASIC to print Sum of the Digits

REM Program to print sum of the digits of a given number CLS INPUT "Enter any digit"; n WHILE n <> 0 r = n MOD 10 s = s + r n = n \ 10 WEND PRINT "Sum of digits is "; s END ...

Friday, February 21, 2014

How to run Internet without any cost in NTC Mobile

For Nepali NTC Users, Trick to run Internet free of costs... 1.First,Dial your own mobile no. and make it to call.... 2.Open any of browser,and start running net.. 3.After Finishing, close ur browser and attempt calling urself many time  (just do fast before net sign goes) an after 1 min. Just leave.. .........Check the Balance...Enjoy... ...

Recover the Data of formatted pendrive

Recover the Data from formatted Pendrive ----------------------------------------------- Some Common PC Errors with their Solutions: http://bhssjct.blogspot.com/2013/11/some-common-pc-errors-solutions.html iCare Data Recovery Free Edition ==> Free recovery software that can recover 2GB data. It can perform basic and advanced data resuce to help you restore data deleted, formattedor lost due to errors such as drive/system crash, virus attack...

Set a video as a Desktop background

Its very simple.....follow the bellow steps: 1. Download a software called "DreamScene" and install it. 2. Now select a video which one u want to wallpaper.. Convert the video in to "WMV" file using any video converter apps.. 3. After converting the video in to WMV file.. Right click on that video and set as desktop Background.. Remove Shortcut Virus from Pendrive, HDD, PC, Memory Card: http://bhssjct.blogspot.com/2014/01/remove-shortcu...

Wednesday, January 22, 2014

Remove Shortcut virus from USB Pendrive, PC, Hard disk, Memory cards with & Without software

What is Shortcut Virus?       I have seen this problem in PC having antivirus too, when your Pen drive, PC, Hard Disk, Memory cards or mobile phone got infected by some anonymous malware, they change your files into shortcuts with the original folder icons. How to remove shortcut virus in pen drive, Pc and other devices?  Just follow the below given steps to remove, delete, wipe...

Saturday, January 11, 2014

C Programming Functions Function in programming is a segment that groups a number of program statements to perform specific task. A C program has at least one function main( ). Without main() function, there is technically no C program. Types of C functions Basically, there are two types of functions in C on basis of whether it is defined by user or not. ·         Library function ·         User...