[Year 12 SofDev] Records and Arrays

Guy Flaherty G.Flaherty at xavier.vic.edu.au
Wed Aug 18 14:58:25 EST 2010


Laurie,

I initially thought exactly as you stated when I looked at the reference in the book. So I did a quick search and in languages like c and pascal arrays must be of the same data type and records(pascal)/struct(c) can have different data types for items, as explained in the text.

Being a python using person myself, I am not used to this, as arrays can have any type of data in them, and there really isn't a 'record' type in python that I am aware of. I think php is similar.

It would seem that this kind of structure is language dependent, and so not the best for an exam question, in my opinion.

Guy Flaherty
Xavier College 
 
>>> "Laurie Savage" <savage.john.l at edumail.vic.gov.au> 18/08/10 01:57 PM >>> 
I have a problem. In Fitzpatrick and Keane p. 161 (and in the 2007 exam)
arrays and records are primarily differentiated by data type. So the text
says: "An array is an indexed collection of elements of the same type of
data"; "A ... record represents a group of different data elements".

 

But, in PHP, this works:

 

<?php 

$pizzaToppings = array('onion', 'tomato', 'cheese', 'anchovies', 'ham',
'pepperoni', 1.6, 200); 

 

echo "<h1>We like $pizzaToppings[5] PIZZA!</h1>";

 

$num = $pizzaToppings[6] * $pizzaToppings[7];

echo $num;

?>

 

i.e. the array is storing data of different types and not storing the
numeric data as a string. What am I missing here? I've done a search, but
these are the only references I've seen that define this as the main
difference. I've been labouring under the delusion that an array lives in
volatile memory and disappears once the application halts or reinitialises
and a record is written to disk. I know from the web that I'm not alone
here.

 

Laurie Savage

Pascoe Vale Girls College


Important - This email and any attachments may be confidential. If received in error, please contact us and delete all copies. Before opening or using attachments check them for viruses and defects. Regardless of any loss, damage or consequence, whether caused by the negligence of the sender or not, resulting directly or indirectly from the use of any attached files our liability is limited to resupplying any affected attachments. Any representations or opinions expressed are those of the individual sender, and not necessarily those of the Department of Education and Early Childhood Development.


Scanned by Sonar. 
Date: 2010-08-18 14:05:08.466
From: sofdev-bounces at edulists.com.au
To: g.flaherty at xavier.vic.edu.au
Profile: Default_In
Mail id: challenge-2104307658s34-0




"This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the Network Manager at Xavier College. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of Xavier College. Whilst every attempt has been made to ensure material in this email message is free from computer viruses or other defects, the attached files are provided, and may only be used, on the basis that the user assumes all responsibility for the use of the material transmitted."



More information about the sofdev mailing list