21. |
Which of the following is a valid declaration of an applet?
નીચે આપેલ માંથી કયો વિકલ્પ એપ્લેટ ડીકલેર કરવા માટેની સાચી સિન્ટેક્ષ છે?
|
||||||||
Answer:
Option (a) |
22. |
What will be the output of following applet program?
import java.awt.*; import java.applet.*; public class myapplet extends Applet { public void paint(Graphics g) { g.drawString("A Simple Applet", 20, 20); } }
નીચે આપેલ પ્રોગ્રામ શું આઉટપુટ ડીસ્પ્લે કરશે?
import java.awt.*; import java.applet.*; public class myapplet extends Applet { public void paint(Graphics g) { g.drawString("A Simple Applet", 20, 20); } }
|
||||||||
Answer:
Option (d) |
23. |
Which of the following statement is a drawback of Applet?
નીચે આપેલ માંથી કયો વિકલ્પ એપ્લેટ નો ગેરફાયદો છે?
|
||||||||
Answer:
Option (c) |
24. |
State true or false: Applet runs inside the browser and does not works at client side.
આપેલ વિધાન સાચું છે કે ખોટું: એપ્લેટ બ્રાઉઝર માં રન થાય છે અને યુઝર મશીન માં વર્ક કરતુ નથી.
|
||||
Answer:
Option (b) |
25. |
Which of the following is correct syntax to display 30*50 rectangle as output in applet?
નીચે આપેલ માંથી કઈ સિન્ટેક્ષ એપ્લેટ માં 30*50 લંબચોરસ ડીસ્પ્લે કરવા માટે થાય છે?
|
||||||||
Answer:
Option (c) |
26. |
Which of the following is correct syntax to display circle of redius 20 as output in applet?
નીચે આપેલ માંથી કઈ સિન્ટેક્ષ એપ્લેટ માં 20 ત્રિજ્યા નું વર્તુળ ડીસ્પ્લે કરવા માટે થાય છે?
|
||||||||
Answer:
Option (d) |
27. |
drawLine, drawRect, drawString are available in which of the following class?
નીચે આપેલ માંથી ક્યાં ક્લાસ માં drawLine, drawRect, drawString મેથડ આવેલ છે?
|
||||||||
Answer:
Option (b) |
28. |
To display vertical line which of the following method is used? નીચે આપેલ માંથી કયો વિકલ્પ વર્ટીકલ લાઈન ડીસ્પ્લે કરવા માટે થાય છે?
|
||||||||
Answer:
Option (c) |
29. |
To add component in an applet which of following is used? નીચે આપેલ માંથી કયો વિકલ્પ એપ્લેટ માં કમ્પોનન્ટ એડ કરવા માટે થાય છે?
|
||||||||
Answer:
Option (a) |
30. |
What will be the output of getCodeBase( ) method? getCodeBase( ) મેથડ શું આઉટપુટ આપશે?
|
||||||||
Answer:
Option (b) |