Thursday, February 25, 2010
Friday, February 19, 2010
Creating a program to Determine the Given Number is either Negative, Zero or Positive
Here is the program to Determine the Given Number is either Negative, Zero or Positive
20 REM TO find the Given Number is -VE, 0 or +ve
30 input "enter a Number"; N
40 A$= "Negative"
50 B$="Zero"
60 C$= "Positive"
70 D$= "The Number is "
80 S=SGN(N)+2
90 On S GOTO 100, 110, 120
100 Print D$; A$ : End
110 Print D$; B$ : END
120 Print D$; C$ : end
130 End
Posted by Genious at 11:48 PM 0 comments
Creating a Big Z on Screen
Here is the program Creating a Big Z on Screen
zzzzzzzzzzzzzzzzzzzzzzzzzzzzz
Posted by Genious at 11:36 PM 0 comments
Wednesday, February 17, 2010
FlowChart To Determine the Given Temprature is Freezing or Normal
Posted by Genious at 10:51 PM 0 comments
Labels: FlowCharts
Monday, February 15, 2010
Creating Two Table for Number Given By User
Program code for Creating Two Table for Two number Given By User:
10 Input " Enter 1st Number for the Table: ", A
20 Input Enter 2nd Number: ", B
30 For I =1 To 10
40 Print A " * " I " = " A*I TAB(20) B " * " I " = " B*I
50 Next I
60 END
3*6=18 4*6=24
3*7=21 4*7=28
3*8=24 4*8=32
3*9=27 4*9=36
3*10=30 4*10=40
Posted by Genious at 3:00 PM 0 comments
Friday, February 12, 2010
programe to Demonstrate the Read and Data Statements
Here is the gwbasic program to demonstrator the Read and Data statements. Coding is as under:
10 cls
20 Read A,B,C, A$, B$,C$
30 Data 58,70,85
40 Print A$ TAB(20) " Obtained " ; A ; " Marks"
50 Print B$ TAB(20) " Obtained " ; B ; " Marks"
60 Print C$ TAB(20) " Obtained " ; C ; " Marks"
70 Data Tahir, Umar, Tariq
80 End
Tahir Obtained 58 Marks
Umar Obtained 70 Marks
Tariq Obtained 85 Marks
Posted by Genious at 12:47 AM 0 comments
Wednesday, February 10, 2010
GW Programmer for Creating a Table for any Number
program code for Creating the Table for any number in gwbasic is as under:
10 Input " Enter Number for the Table", A
20 Print " Table for the Number ", A
30 For I =1 To 10
40 Print A " * " I " = " A*I
50 Next I
60 END
3*6=18
3*7=21
3*8=24
3*9=27
3*10=30
Posted by Genious at 9:06 PM 0 comments
Labels: Codes
Tuesday, February 9, 2010
Old Paper (2009) of Computer Science SSC-2 for Federal Education Board
Please follow the link below to download the Old Paper (2009) of Computer Science SSC-2 for Federal Education Board.
English Medium: http://www.pakepa.org/omree/papers/cs-eng-SSC-2.pdf
Urdu Medium : http://www.pakepa.org/omree/papers/cs-urd-SSC-2.pdf
Posted by Genious at 11:24 PM 0 comments
Labels: Downloads, Old Papers
Old Paper (2009) of Computer Science SSC-1 for Federal Education Board
Please follow the link below to download the Old Paper (2009) of Computer Science SSC-1 for Federal Education Board.
English Medium: http://www.pakepa.org/omree/papers/cs-eng-SSC-1.pdf
Urdu Medium : http://www.pakepa.org/omree/papers/cs-urd-SSC-1.pdf
Posted by Genious at 11:22 PM 0 comments
Labels: Downloads, Old Papers
Syllabus for Computer Science SSC-2 for Federal Education Board
Posted by Genious at 11:12 PM 0 comments
Syllabus for Computer Science SSC-1 for Federal Education Board
Posted by Genious at 11:10 PM 0 comments
Download Computer Science Book - Chapter 10 (Data Types Assignment INPUT/OUTPUT Statement )
Chapter 10: Data Types Assignment (INPUT/OUTPUT) Statement
Computer Science Book's for class 10 (federal Education Board) Contents are as follows:
Data Types Assignment (INPUT/OUTPUT) Statement
- Character sets, reserved words, commands and statements
- Numeric and strings
- Constants and variables
- Operators: arithmetic, relational and logical
- Hierarchy of operators, expressions
- Arithmetic, relational and logical
- Assignment statements
- Input, READ-DATA
- PRINT, PRINT USING
Posted by Genious at 10:58 PM 0 comments
Download Computer Science Book - Chapter 9 (Problem Solving)
Chapter 9: Problem Solving
Computer Science Book's for class 10 (federal Education Board) Contents are as follows:
Problem Solving
- Defining the problem
- Analysis of the problem, illustrated with examples
- Algorithms
- Flow charts:
- Flow charts symbols, examples of flow charts using daily life applications Computer programming:
- Conversion of flow chart, algorithm into computer language instructions
- Running and debugging programs
- Implementation
- Documentation
Download Book's Chapter 9 as a zip format from the following link:
Posted by Genious at 10:34 PM 0 comments
Friday, February 5, 2010
Download GWBASIC Version 2.2 and Version 3.2 for DOS
Follow the links to download GWBASIC (zip formate) and unzip the file then use it freely, Its just the study purpose not for the other use.
Posted by Genious at 11:22 PM 0 comments
Labels: Downloads
What is GW Basic ?
Syntax
RUN,LOAD,SAVE,LIST
the current program, or quit to the operating SYSTEM
; these commands can also be used as program statements. There is little support for structured programming in GW-BASIC. All IF/THEN/ELSE
conditional statements must be written on one line, although WHILE/WEND
statements may group multiple lines. Functions can only be defined using the single line DEF FNf(x)=
DEF FNLOG(base,number)=LOG(number)/LOG(base)
). The data type of Variables can be specified with a character at the end of the variable name: A$
is a string of characters, A%
is an integer, etc. Groups of variables can also be set to default types based on the initial letter of their name by use of the DEFINT, DEFSTR
, etc., statements. The default type for undeclared variables not identified by such typing statements, is single-precision floating-point.PLAY
statement, requiring a string of notes represented in a music macro language (e.g. PLAY "edcdeee2dfedc4"
). More low-level control is possible with the SOUND
statement, which takes the arguments of a frequency in hertz and a length in clock ticks for the standard internal PC speaker in IBM machines. Consequently sound is limited to single channel beeps and whistles as befits a 'business' machine. Home based PCs such as the Tandy 1000, allowed up to 3 channels of sound for the SOUND
and PLAY
commands.Name
Posted by Genious at 10:51 PM 0 comments
Labels: Intro and History
Hit Counter
Categories
- Books (2)
- Codes (7)
- DateSheets (1)
- Downloads (14)
- FlowCharts (2)
- Intro and History (1)
- Old Papers (2)
- Syllabus (2)
Archives
-
▼
2010
(18)
-
▼
February
(16)
- Date Sheet SSC 2010 Announced
- Creating a program to Determine the Given Number i...
- Creating a Big Z on Screen
- FlowChart for Defective Lamp Problem
- FlowChart To Determine the Given Temprature is Fre...
- Creating Two Table for Number Given By User
- programe to Demonstrate the Read and Data Statements
- GW Programmer for Creating a Table for any Number
- Old Paper (2009) of Computer Science SSC-2 for Fed...
- Old Paper (2009) of Computer Science SSC-1 for Fed...
- Syllabus for Computer Science SSC-2 for Federal Ed...
- Syllabus for Computer Science SSC-1 for Federal ...
- Download Computer Science Book - Chapter 10 (Data ...
- Download Computer Science Book - Chapter 9 (Proble...
- Download GWBASIC Version 2.2 and Version 3.2 for DOS
- What is GW Basic ?
-
▼
February
(16)