• We need your support!

    We are currently struggling to cover the operational costs of Xtremepapers, as a result we might have to shut this website down. Please donate if we have helped you and help make a difference in other students' lives!
    Click here to Donate Now (View Announcement)

comp. st.(help pz)

Messages
43
Reaction score
0
Points
0
GOOD LUCK TO EVRY1 APPEARIN FOR COMPUTERS!
any suggestions or questions plz post :)

by the way im totally lost on pseudocodes...HELP PLZZ!!!
 
Messages
36
Reaction score
0
Points
16
im gna try go for top 10 in the world or atleast first in my country
my friend got first in my country last year
 
Messages
92
Reaction score
3
Points
18
Computers.. VERY tough, i dont know waht im going to do :/

How are you guys preparing?
 
Messages
30
Reaction score
0
Points
16
im revising the 5 booklets thoroughly but fast, because i studied them in the mocks and my school exam, then after i finish studying the booklets ill do pastpapers from 2005 and onwards. algorithms for me is easy, i just hate the find the problem part :S
 
Messages
133
Reaction score
61
Points
38
Make sure you test yourself by doing the specimen paper giving yourself exact time, and then check it using the mark scheme. Also make sure you go over the meanings, and I advice you to always include an example in meanings,, they worth a whole mark for each meaning..
Good luck to all of u!
 
Messages
43
Reaction score
0
Points
0
hi! actually i dnt get pseudocodes..like hw to form it at all...lets just say im 0 at it...if u hv any link or smtin...pls help
 
Messages
878
Reaction score
1,474
Points
153
muskaan123 said:
hi! actually i dnt get pseudocodes..like hw to form it at all...lets just say im 0 at it...if u hv any link or smtin...pls help
Its simpler to learn it with a top-down approach. 8)
FIrst you have to learn looping.
3 types of loops used in pseudocodes :
1) FOR-NEXT Loop
This example will add together ten numbers.
For COUNT = 1 to 10
Input NUMBER
TOTAL=TOTAL + NUMBER
Next COUNT
The first time the loop is executed, COUNT is equal to one.The first number is read and its value is added to TOTAL to give a new TOTAL.Next COUNT adds one to COUNT which is now 2 ; This is what we call 'incrementing by 1'.Now we are back to the FOR loop and the value of COUNT is checked.If it satisfies the condition (COUNT = 1 to 10) the loop is repeated until the value of COUNT equals 10.This is an example of an iterative loop.
2) WHILE-DO Loop
Lets look at the same example in which WHILE-DO loop is used.Same variables are used.
While COUNT < 10 DO
Input NUMBER
TOTAL = TOTAL + NUMBER
COUNT=COUNT + 1 <====This is the 'Increment by 1' part.
Endwhile
Output TOTAL

explanation in next post + REPEAT-UNTIL Loop.........M going for namaz
 
Messages
92
Reaction score
3
Points
18
Good Luck All Computer Studies Students...
Lets Hope The Paper Is Easy... All We Can Do Right Now :(
 
Messages
43
Reaction score
0
Points
0
oh thanks!!!
i did the FOR loop in my paper...
i think i got it pretty much right!..lets just hope n pray for the best
:)
thanks a lot
 
Top