• 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)

Computing 9691 post your doubts here

what chapter in p2 u find most difficult


  • Total voters
    9
Messages
179
Reaction score
60
Points
38
I need help with the following
How the contents of a one dimensional array can be intialised to zero
How the contents of a two dimensional array can be intialised to zero
how to declare a one dimensional array
how to declare a two dimensional array
thank you!!
 
Messages
1,824
Reaction score
949
Points
123
my query is how it reads... obviously i know it reads... in the nov 12 question as well u describe how a bardcode reader reads not say it "reads"

You can't do this without going into the mechanism of MICR :\ that the magnetic ink on the ATM/Debit card is read .. the magnetic strip has 3 tracks .. These tracks have details such as account number,sort code , expiry date.. According to the information which is read on these tracks transaction is carried out.. (But that's from my AICT book.. :\)
 
Messages
2,703
Reaction score
3,939
Points
273
I need help with the following
How the contents of a one dimensional array can be intialised to zero
How the contents of a two dimensional array can be intialised to zero
how to declare a one dimensional array
how to declare a two dimensional array
thank you!!
calm down bro half question is p2
initialise is
Dim stuArr(5) As integer
 
Messages
1,824
Reaction score
949
Points
123
I need help with the following
How the contents of a one dimensional array can be intialised to zero
How the contents of a two dimensional array can be intialised to zero
how to declare a one dimensional array
how to declare a two dimensional array
thank you!!

Declaration not in P1.. Initialization of a 2D array in not in P1 syllabus it would come in P2..

A one dimension array is Initialized by defining
-The Identifier Name of the array.
-The size of the array
-The Data Type of the array
 
Messages
2,703
Reaction score
3,939
Points
273
Declaration not in P1.. Initialization of a 2D array in not in P1 syllabus it would come in P2..

A one dimension array is Initialized by defining
-The Identifier Name of the array.
-The size of the array
-The Data Type of the array
yup all mentioned in one line by me :p
 
Messages
1,824
Reaction score
949
Points
123
calm down bro half question is p2
initialise is
Dim stuArr(5) As integer

If you wrote that you'd get zero :p cause that's declaring the array in VB and VB not in P1 :D. you need to write each as a statement
 
Messages
2,703
Reaction score
3,939
Points
273
If you wrote that you'd get zero :p cause that's declaring the array in VB and VB not in P1 :D. you need to write each as a statement
no you dont need to you can do it this way where is it written :/
 
Messages
1,824
Reaction score
949
Points
123
no you dont need to you can do it this way where is it written :/

Well our sir said that it's better to do it like I did.. or the examiner might think that you memorized it.. and that question is usually 3 marks :p one line for 3 marks aint right..
 
Messages
2,703
Reaction score
3,939
Points
273
ok i will write like u but hope it doesnt come or else three marks in the bin
 
Messages
2,703
Reaction score
3,939
Points
273
Declaration not in P1.. Initialization of a 2D array in not in P1 syllabus it would come in P2..

A one dimension array is Initialized by defining
-The Identifier Name of the array.
-The size of the array
-The Data Type of the array
add meaningfull to it :p
 
Messages
888
Reaction score
255
Points
73
m
You can't do this without going into the mechanism of MICR :\ that the magnetic ink on the ATM/Debit card is read .. the magnetic strip has 3 tracks .. These tracks have details such as account number,sort code , expiry date.. According to the information which is read on these tracks transaction is carried out.. (But that's from my AICT book.. :\)
micr is magnetic ink character recognition like characters at the bottom of a cheque ... what i'm talking about is a stripe like on a credit card... dont mix them
 
Messages
179
Reaction score
60
Points
38
Can i intialize an array this way? Array's identifier is robot
Dim Robot(size) as integer
For i = 1 to size
Robot(i) = 0
Next
 
Top