1.
Which of the following denotes the lifecycle of the ViewController in iOS?
2.
Which of the following methods is necessary to configure a table view in iOS?
3.
In iOS, which of the following methods is used to reorder table rows?
4.
In iOS, which of the following methods is used to configure rows for a table view?
5.
In iOS, which of the following methods is not an NSURL connection?
6.
In iOS, which of the following commands is used to synchronously load the data?
7.
In iOS, which of the following methods responds to the changes in the selection?
8.
In iOS, which of the following statements is used to start the thread:

  1. NSThread* myThread = [[NSThread] initWithTarget:self selector:@selector(myThreadMainMethod:) object:nil]; [myThread start];
  2. NSThread* myThread = [[NSThread release] initWithTarget:self selector:@selector(myThreadMainMethod:) object:nil]; [myThread start];
  3. NSThread* myThread = [[NSThread alloc] initWithTarget:self selector:@selector(myThreadMainMethod:) object:nil]; [myThread active];
9.
In iOS, which of the following is an example of the doSomething() method:

  1. [myObj performSelectorStartBackground:@selector(doSomething) withObject:nil];
  2. [myObj performSelectorInBackground:@selector(doSomething) withObject:release];
  3. [myObj performSelectorInBackground:@selector(doSomething) withObject:nil];
  4. [myObj performSelectorOnBackground:@selector(doSomething) withObject:nil]
10.

What is the output of the following iOS code:

 
<code><span class="typ">Whether following code works?
    NSString</span><span class="pln"> getMyName </span><span class="pun">(</span>  <span class="pun">)
    {
    </span></code> return [NSString stringWithString:@”Alex”];
<code><span class="pun">
    }</span></code>