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

Computers & ICT: Post your doubts here!

Messages
14
Reaction score
0
Points
11
it is better if you copy the label created in step 13. Open the copied label (Rename to Autolabel) and then start recording macro. The steps are few so do so accordingly:
Start recording>got to Mailings> select Finish&Merge from Finish> select Edit individual documents...> Stop recording
basically, what I did here is to automate the creation of the label
the codes should be something like this:
|
|Sub Macro1()
|'
|' Macro1 Macro
|'
|'
| With ActiveDocument.MailMerge
| .Destination = wdSendToNewDocument
| .SuppressBlankLines = True
| With .DataSource
| .FirstRecord = wdDefaultFirstRecord
| .LastRecord = wdDefaultLastRecord
| End With
| .Execute Pause:=False
| End With
|End Sub
|
Thanx!!!(y)
 
Messages
457
Reaction score
317
Points
73
hey.. i want some help related to pastpapers
which years to do there is no P2 before 2011 i am worried plz help
can i only do p1 will this mark as a practice for both p1 and p2
 
Messages
350
Reaction score
64
Points
38
hey.. i want some help related to pastpapers
which years to do there is no P2 before 2011 i am worried plz help
can i only do p1 will this mark as a practice for both p1 and p2
are you referring to the aict or computing?
 
Messages
255
Reaction score
165
Points
43
hey is this thread for APPLIED INFORMATION AND COMMUNICATION TECHNOLOGY too or only computing
 
Messages
255
Reaction score
165
Points
43
i finished my AS practical test and now concentrating on the theory exam on may 9....lets say im in the beggining
 
Messages
255
Reaction score
165
Points
43
thanx...wish u all the best too :D !!!
but can i ask a general question for anyone who reads this and know what is t grades you people get when u solve an AS theory paper?
 
Messages
17
Reaction score
3
Points
13
Re: Need help in Computing? Stuck somewhere? Ask here!

What is your question about storage device.....is it about their classification... I mean difference b/w RAM and ROM..?


Differences are

* ROM can be directly be accessed by the main memory but RAM cannot be
* data in the RAM is lost when power is lost but data in the ROM is not lost when the power is lost
[ RAM is volatile ROM is non Volatile ]

* data in the ROM cannot be changed but data in the RAM can be changed

Hope it is useful !!
 
Messages
17
Reaction score
3
Points
13
Re: Need help in Computing? Stuck somewhere? Ask here!

Can anyone help me with Fetch-Execute- Decode Cycle of paper 3?

For the other topics of p1,p2 and p3, i can help you :D


Example of the fetch decode cycle of LDA [Load-in accumulator ] 200 in immediate addressing mode

address in the PC [Program counter] is copied to MAR [Memory address register]
address in the PC is incremented by 1
MDR [Memory data register] fetches the data in the address pointed to by the MAR
data in the MDR is copied to the CIR [Current instruction register]
the code is then split ed into op code [ LDA ] and operand [200]
operation code LDA is decode as load in accumulator
copy the operand 200 into MDR
Load value in the MDR to the accumulator
reset all registers and make ready to the next cycle

Hope this was interesting !!
 
Messages
17
Reaction score
3
Points
13
Solve this problem...Please make a hashing algorithm as an example....


Total values 200

Hashing algorithm example ID is 2112123

Algorithm - 2112123 MOD 2000 = 123 [ This is the remainder of the division ]


Hope This helps !!
 
Top