Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Technology Questions
In the Android Activity life cycle, under what condition is the onStop method invoked by the system?
In Android programming, what are Intents and how are they used to communicate between different application components?
In Android, what is AIDL (Android Interface Definition Language) and which kinds of data types are supported by AIDL interfaces for interprocess communication?
Describe the overall Android application architecture, from the Linux kernel layer up to the application layer that users interact with.
In an Android XML layout, how can you let the user select more than one option from a ListView, and which attribute enables multiple selection?
Why can standard Java Virtual Machine bytecode not run directly on the Android platform without conversion, even though Android applications are written in Java or Kotlin?
In Android, how does an application run in isolation and remain sandboxed from other applications that are installed on the same device?
In Android code, how can you retrieve the IMEI number of a phone by using the TelephonyManager class, and what permission is required?
In Android, how can your application perform actions such as sending an email by reusing functionality provided by other installed applications?
Within an Android application, how do you launch another Activity using an explicit Intent from your current Activity?
In the C family of programming languages, what is a struct data type and how is it used to group related fields in memory?
In Objective C, what is the difference between the NSArray and NSMutableArray collection classes?
In Objective C, when you call performSelector withObject afterDelay, does the passed object get retained until the selector is executed, and why does that matter for memory management?
In iOS development, what is the correct way to manage IBOutlet outlet memory references under ARC when connecting user interface elements from storyboards or nib files?
If you do not have a physical iPhone device, where can you test and run your iOS applications during development?
Which Apple testing API allows you to write scripts that exercise the user interface elements of an iOS application automatically?
If your iOS application is in the foreground but is currently not receiving events, in which life cycle state is it according to the iOS application model?
In iOS Core Animation, what are layer objects such as CALayer and what do they represent within the view hierarchy and rendering system?
In web development, what is SVG (Scalable Vector Graphics) and how is it used to display resolution independent graphics in modern browsers?
In HTML5, what is the localStorage concept and how does it allow a web application to store data on the client side in the user browser?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79