Page:8
Below are the scanned copy of Kerala Public Service Commission (KPSC) Question Paper with answer keys of Exam Name 'Workshop Instructor / Demonstrator /Instructor Gr.II in Computer Engineering' And exam conducted in the year 2023. And Question paper code was '095/2023'. Medium of question paper was in Malayalam or English . Booklet Alphacode was 'A'. Answer keys are given at the bottom, but we suggest you to try answering the questions yourself and compare the key along wih to check your performance. Because we would like you to do and practice by yourself.
095/23
44.
45.
46.
47.
48.
49.
50.
51.
In which directory AndroidManifest.xml layout files are stored ?
A) /assets B) /sre C) /res/values D) /res/layout
Which of the following converts Java byte code into Dalvik byte code ?
A) Dalvik converter B) Dex compiler
C) Mobile Interpretive Compiler (MIC) D) Java Virtual Machine
Which method is used to launch a new activity or get an existing activity to do
something new ?
A) Context.startActivity() B) Context.startService()
C) Context.sendBroadcast() D) All the above
You can create a custom view by extending class
A) android.widget.View B) android.widget.LinearLayout
C) android.view. View D) android.content
Write a code to send SMS to another AVD with number 9946671122
A) SmsManager sms=new SmsManager();
sms.sendTextMessage("9946671122", null, "Have a nice day", null, null);
B) SmsManager sms=new SmsManager();
sendSMS("9946671122", null, "Have a nice day", null, null);
C) SmsManager sms=SmsManager.getDefault();
sms.sendTextMessage("9946671122", null, "Have a nice day", null, null);
D) SmsManager sms=SmsManager.getDefault();
sms.sendTextMessage("Have a nice day", null, "9946671122", null, null);
What type of CSS is the following code snippet ?