-- Beispieldaten für Blatt 4, Aufgabe 2 group: Aufgabe 4.2 Product = { maker:string, model:string, type:string "PC Builder", "NB 4000", "Laptop" "PC Builder", "NB 5000", "Laptop" "PC Builder", "NB 5500", "Laptop" "Bytemaker", "Bytemaker 300", "Laptop" "Bytemaker", "Bytemaker 301", "Laptop" "Bytemaker", "Bytemaker 302", "Laptop" "PC Builder", "TB 2000", "Tablet" "PC Builder", "TB 2200", "Tablet" "PC Builder", "TB 2300", "Tablet" "PC Builder", "TB 3000", "Tablet" "PC Builder", "TB 3100", "Tablet" "The printing corp", "Superprinter Alpha", "Printer" "The printing corp", "Superprinter Beta", "Printer" "The printing corp", "Superprinter Gamma", "Printer" "The printing corp", "Superprinter Epsilon", "Printer" "Office shoppe", "Office 5", "Printer" "Office shoppe", "Office 6", "Printer" } Tablet = { model:string, speed:number, ram:number, hd:number, price:number "TB 2000", 2.3, 4096, 250, 699.99 "TB 2200", 2.5, 6144, 500, 899.99 "TB 2300", 2.5, 6144, 1000, 999.99 "TB 3000", 2.7, 8192, 1000, 1399.99 "TB 3100", 2.8, 8192, 1000, 1499.99 } Laptop = { model:string, speed:number, ram:number, hd:number, screen:number, price:number "NB 4000", 2.3, 1024, 125, 1280, 599.99 "NB 5000", 2.5, 2048, 250, 1280, 699.99 "NB 5500", 2.5, 4096, 250, 1600, 799.99 "Bytemaker 300", 1.8, 768, 125, 1024, 499 "Bytemaker 301", 1.9, 1024, 125, 1024, 599 "Bytemaker 302", 2.0, 2048, 125, 1024, 799 "Bytemaker 302a", 2.0, 2048, 180, 1024, 829 } Printer = { model:string, color:string, type:string, price:number "Superprinter Alpha", "grey", "ink black/white", 99.99 "Superprinter Beta", "grey", "laser black/white", 129.99 "Superprinter Gamma", "black", "laser black/white", 149.99 "Superprinter Epsilon", "black", "laser color", 449.99 "Office 5", "red", "ink black/white", 69 "Office 6", "red", "ink black/white", 119 }