Top of Form | | | | Topic : GF_OSNW_FY12 Sub Topic : Operating System | Question 1 Topic:Operating System,Sub-Topic:Windows XP
Windows XP Professional not allows you to assign the full range of NTFS permissions to files and folders.
State TRUE or FALSE. | a. TRUE | b. FALSE | | | | | | Topic : GF_JAVA_FY12 Sub Topic : Classes and Objects | Question 2 Topic: JAVA, Sub-topic : Classes and Objects
________ and _______ makes up object in Java.
Fill up the blanks with appropriate option. | a. Attributes and behaviour | b. Identity and state | c. Identity and attributes | d. Behaviour and identity | | | | Topic : GF_JAVA_FY12 Sub Topic : Classes and Objects | Question 3 Topic: JAVA, Sub-topic : Classes and Objects
An inner class has free access to private member data of the outer classes.
State TRUE or FALSE | a. FALSE | b. TRUE | | | | | | Topic : GF_JAVA_FY12 Sub Topic : Inheritance | Question 4 Topic:Java, Sub-Topic:Inheritance
Consider the following code:
class Demo1
{
public void meth2()
{
System.out.print(" Demo1.MethodTwo ");
}
} public class Demo extends Demo1
{
public void methodOne()
{
System.out.print(" DemoOne.MethodOne ");
}
public static void main(String[] args)
{
((Demo1)new Demo()).meth2();
Demo demo = new Demo(); demo.methodOne(); }
}
What will be the output of the above code?
Choose most appropriate option. | a. Demo1.MethodTwo DemoOne.MethodOne | b. Demo1.MethodOne DemoOne.MethodTwo | c. Demo1.MethodTwo | d. DemoOne.MethodOne | | | | Topic : GF_HTML-Jsc_FY12 Sub Topic : JSc | Question 5 Topic:JavaScript, Sub-Topic:JavaScript
Consider the following code:
<html>
<head>
<script type="text/javascript"> sum=num1+num2; document.write(sum);
</script>
</head>