1.
What does the following method do in iOS:
“@synthesize boxDescription = boxName;”
2.
What is the output of the following C code:
struct student {
    char x[];
};
void main() {
    struct student z;
    printf("%d", sizeof(struct student));
}
3.
In SQLite, what is the command to view all tables in the current database?
4.
Which of these is the correct way to dealloc in iOS?
5.
Which of these can be used for a Release dealloc in iOS?
6.
Which of these can be used for a Release and Nil dealloc in iOS?
7.
Which of these can be used for a Nil and Release dealloc in iOS?
8.
Which of these is supported by iOS devices?
9.
In iOS, what is the purpose of the iCloud key-value storage?
10.
In iOS, what is the purpose of the CloudKit storage?