Task 1: "Locate Memory Write a script to declare a variable or constant and print it's location in the memory. " My notes: umm, does this just mean "use \ and %p", or something more subtle? Task 2: "Bell Numbers Write a script to display top 10 Bell Numbers. Please refer to https://en.wikipedia.org/wiki/Bell_number for more informations. Example: B0: 1 as you can only have one partition of zero element set B1: 1 as you can only have one partition of one element set {a}. B2: 2 {a}{b} {a,b} B3: 5 {a}{b}{c} {a,b}{c} {a}{b,c} {a,c}{b} {a,b,c} B4: 15 {a}{b}{c}{d} {a,b,c,d} {a,b}{c,d} {a,c}{b,d} {a,d}{b,c} {a,b}{c}{d} {a,c}{b}{d} {a,d}{b}{c} {b,c}{a}{d} {b,d}{a}{c} {c,d}{a}{b} {a}{b,c,d} {b}{a,c,d} {c}{a,b,d} {d}{a,b,c} " My notes: Bell's triangle has a simple algorithm; let's use that!