Java Programming – 2

January 16, 2010

Java Programming – 2

LIST OF ATTEMPTED QUESTIONS AND ANSWERS

Multiple Choice Single Answer

Question Java’s which system allows a thread to enter a synhcronized

method on an object, and then wait there until some other thread

explicitly notifies it to come out :-

Correct Answer Messaging

Your Answer Run time

Multiple Choice Multiple Answer

Question Packages act as containers for :-

Correct Answer Classes , Subordinate packages

Your Answer Subordinate packages , Classes

True/False

Question Threads priorities are not integers that specify the relative priority

of one thread to another.

Correct Answer False

Your Answer False

Multiple Choice Single Answer

Question When java program starts up, which thread begins running

immediately?

Correct Answer Main thread

Your Answer Main thread

Multiple Choice Single Answer

Question Java provides built-in support for which programming?

Correct Answer Multithreaded

Your Answer Multithreaded

Select The Blank

Question The ________ is similar to break, except that instead of halting

the execution of the loop, it starts the next iteration.

Correct Answer Continue

Your Answer Continue

Multiple Choice Single Answer

Question When can a constructor be called without specifying arguments?

Correct Answer When there are no constructors for the class

Your Answer When the default constructor is not called

Match The Following

Question Correct Answer Your Answer

Memory deallocation Garbage Collection Garbage Collection

This Current Object Current Object

Constructor Initialization object Initialization object

Parameters Method Generalized Method Generalized

Select The Blank

Question The mechanism which binds together the code and data and

keeps both safe is ________.

Correct Answer Encapsulation

Your Answer Encapsulation

Select The Blank

Question ________ is an instance of a class that implements the runnable

interface.

Correct Answer threadOb

Your Answer threadO

Multiple Choice Multiple Answer

Question Expression must be of the data types :-

Correct Answer Byte , Short , Int

Your Answer Byte , Short , Int , Boolean

True/False

Question Java define eight simple types of data byte, short, int, long, char,

float, double, boolean.

Correct Answer True

Your Answer True

Multiple Choice Multiple Answer

Question What modifiers may be used with top-level class?

Correct Answer Public , Abstract , Final

Your Answer Public , Abstract , Final

Multiple Choice Single Answer

Question Syntax to declare a variable in java is :-

Correct Answer type identifier [=value][,identifier[=value]…]

Your Answer type identifier [=value][,identifier[=value]…]

Select The Blank

Question ________ statement in java is conditional branch statement.

Correct Answer If

Your Answer If

Multiple Choice Single Answer

Question Which statement used inside a set of nested loops, will only break

out of the innermost loop?

Correct Answer Break

Your Answer Break

Select The Blank

Question In ________ statement condition is true, then statement 1 is

executed.

Correct Answer If

Your Answer If

Multiple Choice Multiple Answer

Question The source for the frist package defines three classes

Correct Answer Protection , Derived , SamePackage

Your Answer Protection , Derived , SamePackage

True/False

Question Java compiler stores the .class files in the path specified in

CLASSPATH environmental variable.

Correct Answer False

Your Answer True

True/False

Question Interface can be extended.

Correct Answer True

Your Answer True

Select The Blank

Question ________ is the logical construct upon which the entire java

language is built.

Correct Answer Class

Your Answer Class

True/False

Question Is it necessary to implement all the methods of an interface while

implementing the interface

Correct Answer False

Your Answer True

Multiple Choice Multiple Answer

Question Which loops can be nested in java?

Correct Answer While , Do-while , For

Your Answer While , Do-while , For

True/False

Question Float data type is useful when we need fractional values.

Correct Answer True

Your Answer True

Multiple Choice Multiple Answer

Question What all the run( ) method can do?

Correct Answer Can call other method , Declare variable

Your Answer Can call other method , Create object

True/False

Question Variable in an interface are implicitly final and static.

Correct Answer True

Your Answer True

Multiple Choice Single Answer

Question Which of the following operators are used in conjunction with the

this and super references?

Correct Answer The dot operator

Your Answer The dot operator

Select The Blank

Question The ________ keyword halts the execution of the current loop

and forces control out of the loop.

Correct Answer Break

Your Answer Break

Multiple Choice Single Answer

Question What is a data structure that controls the state of a collection of

threads as a whole?

Correct Answer Thread group

Your Answer Thread group

Multiple Choice Multiple Answer

Question By Providing the interface keyword, Java allows you to fully utilize

the which aspect of polymorphism?

Correct Answer One interface , Multiple methods

Your Answer One interface , Multiple methods , Derived

Select The Blank

Question For externalizable objects the ________ is solely responsible for

the external format of its contents.

Correct Answer Class

Your Answer Objects

Multiple Choice Multiple Answer

Question Which are the java’s control statements?

Correct Answer For , If , Switch

Your Answer For , Switch , Continue

Multiple Choice Single Answer

Question What are the kinds of variables in Java?

Correct Answer Instance, local, class variables

Your Answer Instance, local, class variables

Multiple Choice Multiple Answer

Question Java Operators can be divided into these groups :-

Correct Answer Arithmetic , Bitwise , Relational

Your Answer Arithmetic , Bitwise , Relational

Match The Following

Question Correct Answer Your Answer

Interface Abtract method Abtract method

Pacakge declaration Package pkg Package pkg

Java.applet.Applet Class Applet Class Applet

Java.applet Java.applet package Java.applet package

Multiple Choice Single Answer

Question What is an array?

Correct Answer It is value collection of same type of data type

Your Answer It is value collection of same type of data type

Multiple Choice Multiple Answer

Question Modulus operator % can be applied to these data types :-

Correct Answer floating Point , Integer , Character

Your Answer floating Point , Integer

Select The Blank

Question Start( )executes a call to ________.

Correct Answer run( )

Your Answer run( )

Select The Blank

Question ________ is an instance of the class.

Correct Answer Object

Your Answer Object

Select The Blank

Question ________method starts a threrad by calling its run method.

Correct Answer start( )

Your Answer start( )

Multiple Choice Single Answer

Question Which Control Statements allow the program to choose different

paths of execution?

Correct Answer Selection

Your Answer Break

Multiple Choice Single Answer

Question Which Control Statements enable program execution to repeat

one or more statements?

Correct Answer Iteration

Your Answer Iteration

True/False

Question The switch statement does not require a break.

Correct Answer False

Your Answer True

True/False

Question In Interface we need not use the keyword abstract for the

methods.

Correct Answer True

Your Answer True

Multiple Choice Multiple Answer

Question What are the Logical operators?

Correct Answer OR(|) , AND(&) , XOR(^)

Your Answer OR(|) , AND(&) , XOR(^)

True/False

Question Byte can be Cast to Double Value.

Correct Answer True

Your Answer False

Multiple Choice Multiple Answer

Question Which thread is created automatically when the program is

started?

Correct Answer Main thread

Your Answer Main thread , Current thread

Java Programming – 2

January 16, 2010

Java Programming – 2

LIST OF ATTEMPTED QUESTIONS AND ANSWERS

Multiple Choice Single Answer

Question Java’s which system allows a thread to enter a synhcronized

method on an object, and then wait there until some other thread

explicitly notifies it to come out :-

Correct Answer Messaging

Your Answer Run time

Multiple Choice Multiple Answer

Question Packages act as containers for :-

Correct Answer Classes , Subordinate packages

Your Answer Subordinate packages , Classes

True/False

Question Threads priorities are not integers that specify the relative priority

of one thread to another.

Correct Answer False

Your Answer False

Multiple Choice Single Answer

Question When java program starts up, which thread begins running

immediately?

Correct Answer Main thread

Your Answer Main thread

Multiple Choice Single Answer

Question Java provides built-in support for which programming?

Correct Answer Multithreaded

Your Answer Multithreaded

Select The Blank

Question The ________ is similar to break, except that instead of halting

the execution of the loop, it starts the next iteration.

Correct Answer Continue

Your Answer Continue

Multiple Choice Single Answer

Question When can a constructor be called without specifying arguments?

Correct Answer When there are no constructors for the class

Your Answer When the default constructor is not called

Match The Following

Question Correct Answer Your Answer

Memory deallocation Garbage Collection Garbage Collection

This Current Object Current Object

Constructor Initialization object Initialization object

Parameters Method Generalized Method Generalized

Select The Blank

Question The mechanism which binds together the code and data and

keeps both safe is ________.

Correct Answer Encapsulation

Your Answer Encapsulation

Select The Blank

Question ________ is an instance of a class that implements the runnable

interface.

Correct Answer threadOb

Your Answer threadO

Multiple Choice Multiple Answer

Question Expression must be of the data types :-

Correct Answer Byte , Short , Int

Your Answer Byte , Short , Int , Boolean

True/False

Question Java define eight simple types of data byte, short, int, long, char,

float, double, boolean.

Correct Answer True

Your Answer True

Multiple Choice Multiple Answer

Question What modifiers may be used with top-level class?

Correct Answer Public , Abstract , Final

Your Answer Public , Abstract , Final

Multiple Choice Single Answer

Question Syntax to declare a variable in java is :-

Correct Answer type identifier [=value][,identifier[=value]…]

Your Answer type identifier [=value][,identifier[=value]…]

Select The Blank

Question ________ statement in java is conditional branch statement.

Correct Answer If

Your Answer If

Multiple Choice Single Answer

Question Which statement used inside a set of nested loops, will only break

out of the innermost loop?

Correct Answer Break

Your Answer Break

Select The Blank

Question In ________ statement condition is true, then statement 1 is

executed.

Correct Answer If

Your Answer If

Multiple Choice Multiple Answer

Question The source for the frist package defines three classes

Correct Answer Protection , Derived , SamePackage

Your Answer Protection , Derived , SamePackage

True/False

Question Java compiler stores the .class files in the path specified in

CLASSPATH environmental variable.

Correct Answer False

Your Answer True

True/False

Question Interface can be extended.

Correct Answer True

Your Answer True

Select The Blank

Question ________ is the logical construct upon which the entire java

language is built.

Correct Answer Class

Your Answer Class

True/False

Question Is it necessary to implement all the methods of an interface while

implementing the interface

Correct Answer False

Your Answer True

Multiple Choice Multiple Answer

Question Which loops can be nested in java?

Correct Answer While , Do-while , For

Your Answer While , Do-while , For

True/False

Question Float data type is useful when we need fractional values.

Correct Answer True

Your Answer True

Multiple Choice Multiple Answer

Question What all the run( ) method can do?

Correct Answer Can call other method , Declare variable

Your Answer Can call other method , Create object

True/False

Question Variable in an interface are implicitly final and static.

Correct Answer True

Your Answer True

Multiple Choice Single Answer

Question Which of the following operators are used in conjunction with the

this and super references?

Correct Answer The dot operator

Your Answer The dot operator

Select The Blank

Question The ________ keyword halts the execution of the current loop

and forces control out of the loop.

Correct Answer Break

Your Answer Break

Multiple Choice Single Answer

Question What is a data structure that controls the state of a collection of

threads as a whole?

Correct Answer Thread group

Your Answer Thread group

Multiple Choice Multiple Answer

Question By Providing the interface keyword, Java allows you to fully utilize

the which aspect of polymorphism?

Correct Answer One interface , Multiple methods

Your Answer One interface , Multiple methods , Derived

Select The Blank

Question For externalizable objects the ________ is solely responsible for

the external format of its contents.

Correct Answer Class

Your Answer Objects

Multiple Choice Multiple Answer

Question Which are the java’s control statements?

Correct Answer For , If , Switch

Your Answer For , Switch , Continue

Multiple Choice Single Answer

Question What are the kinds of variables in Java?

Correct Answer Instance, local, class variables

Your Answer Instance, local, class variables

Multiple Choice Multiple Answer

Question Java Operators can be divided into these groups :-

Correct Answer Arithmetic , Bitwise , Relational

Your Answer Arithmetic , Bitwise , Relational

Match The Following

Question Correct Answer Your Answer

Interface Abtract method Abtract method

Pacakge declaration Package pkg Package pkg

Java.applet.Applet Class Applet Class Applet

Java.applet Java.applet package Java.applet package

Multiple Choice Single Answer

Question What is an array?

Correct Answer It is value collection of same type of data type

Your Answer It is value collection of same type of data type

Multiple Choice Multiple Answer

Question Modulus operator % can be applied to these data types :-

Correct Answer floating Point , Integer , Character

Your Answer floating Point , Integer

Select The Blank

Question Start( )executes a call to ________.

Correct Answer run( )

Your Answer run( )

Select The Blank

Question ________ is an instance of the class.

Correct Answer Object

Your Answer Object

Select The Blank

Question ________method starts a threrad by calling its run method.

Correct Answer start( )

Your Answer start( )

Multiple Choice Single Answer

Question Which Control Statements allow the program to choose different

paths of execution?

Correct Answer Selection

Your Answer Break

Multiple Choice Single Answer

Question Which Control Statements enable program execution to repeat

one or more statements?

Correct Answer Iteration

Your Answer Iteration

True/False

Question The switch statement does not require a break.

Correct Answer False

Your Answer True

True/False

Question In Interface we need not use the keyword abstract for the

methods.

Correct Answer True

Your Answer True

Multiple Choice Multiple Answer

Question What are the Logical operators?

Correct Answer OR(|) , AND(&) , XOR(^)

Your Answer OR(|) , AND(&) , XOR(^)

True/False

Question Byte can be Cast to Double Value.

Correct Answer True

Your Answer False

Multiple Choice Multiple Answer

Question Which thread is created automatically when the program is

started?

Correct Answer Main thread

Your Answer Main thread , Current thread

Java Programming

January 16, 2010

Java Programming

LIST OF ATTEMPTED QUESTIONS AND ANSWERS

True/False

Question Nested if is less efficient then switch statement.

Correct Answer True

Your Answer True

Select The Blank

Question ________ are stored in hierarchical manner.

Correct Answer Packages

Your Answer Packages

Select The Blank

Question The mechanism by which java frees the memory occupied by

unused objects is ________.

Correct Answer Garbage Collection

Your Answer Garbage Collection

Multiple Choice Single Answer

Question When you implement an interface method, it must be declared as :-

Correct Answer Public

Your Answer Public

Multiple Choice Single Answer

Question What are primitive data types?

Correct Answer byte, short, int, long

Your Answer byte, short, int, long

True/False

Question In While loop condition can be any Boolean expression

Correct Answer True

Your Answer True

Select The Blank

Question Long makes it useful when big ________ numbers are needed.

Correct Answer Whole

Your Answer Real

Multiple Choice Single Answer

Question Which Control Statement allow the program to execute in a

non-linear fashion?

Correct Answer Jump

Your Answer Break

True/False

Question With java Type Casts are checked at both compile-time and

runtime.

Correct Answer True

Your Answer False

Multiple Choice Multiple Answer

Question Which of the following assignments are valid?

Correct Answer short s = 28; , double d = 2.3; , int I = ’1′;

Your Answer short s = 28; , float f = 2.3;

Multiple Choice Multiple Answer

Question Java defines two ways when instantiating an object, such as :-

Correct Answer Can implement the runnable interface , Can extend the thread

class

Your Answer Can implement the runnable interface , Can extend the thread

class

Select The Blank

Question The explicit drop of an object reference by setting the value of a

variable, whose data type is a reference type of ________.

Correct Answer Null

Your Answer Instance

Multiple Choice Single Answer

Question What is a string?

Correct Answer A combination of characters called as string

Your Answer A combination of characters called as string

Multiple Choice Multiple Answer

Question What are the programming constructs?

Correct Answer Sequential , Selection — if and switch statements , Iteration — for

loop, while loop and do-while loop

Your Answer Sequential , Selection — if and switch statements , Iteration — for

loop, while loop and do-while loop

Multiple Choice Single Answer

Question What can be created by instantiating an object type thread?

Correct Answer Thread

Your Answer Thread

Select The Blank

Question In ________ statement the value of the expression is compared

with each of the literal values in case statements.

Correct Answer Switch

Your Answer Switch

Multiple Choice Single Answer

Question How to declare an interface example?

Correct Answer access class classname implements interface.

Your Answer access interface name

True/False

Question Integer can Cast to byte value.

Correct Answer False

Your Answer False

True/False

Question Transient variable is variable that may not be serialized.

Correct Answer True

Your Answer True

Multiple Choice Single Answer

Question Using which keyword we can fully abstract a class?

Correct Answer interface

Your Answer interface

Select The Blank

Question The ________ loop repeats a set of statements a certain number

of times until a condition is matched.

Correct Answer For

Your Answer For

Select The Blank

Question There are ________ kinds of Floating point type

Correct Answer Two

Your Answer Two

True/False

Question By default, all program import the java.lang package.

Correct Answer True

Your Answer True

Multiple Choice Multiple Answer

Question What returns a reference to the thread in which it is called?

Correct Answer Method , Class , Object

Your Answer Method

True/False

Question Do while loop always executes its body at least once, because its

conditional expression is at the bottom of the loop.

Correct Answer True

Your Answer True

Multiple Choice Multiple Answer

Question Which statements can be used with the java’s loop?

Correct Answer Jump , Continue , Break

Your Answer Continue , Break

Match The Following

Question Correct Answer Your Answer

start( ) thread child thread

main thread child thread main

NewThread this new

sleep( ) milliseconds milliseconds

Select The Blank

Question ________ are containers for classes.

Correct Answer Packages

Your Answer Packages

Multiple Choice Multiple Answer

Question Java’s multithreading system is built upon :-

Correct Answer Thread class , Its methods , Companion interface

Your Answer Thread class

Select The Blank

Question The default encoding of objects supports the ________ of the

classes.

Correct Answer Evolution

Your Answer Encoding

Multiple Choice Multiple Answer

Question Which are the keywords use in switch statement?

Correct Answer Case , Default

Your Answer Case , Default

Multiple Choice Single Answer

Question A Java application can execute anywhere on the network, this

implements that Java is :-

Correct Answer Architecture neutral

Your Answer Distributed

True/False

Question Boolean values can be cast into any other primitive type.

Correct Answer False

Your Answer False

Match The Following

Question Correct Answer Your Answer

It can have only one of two

possible values

Boolean type Boolean type

Float hightemp, lowtemp Float variable declarations Float variable declarations

Smallest int type Byte Byte

Floating point numbers are

also known as

Real Numbers Real Numbers

Multiple Choice Multiple Answer

Question Which one does not extend java.lang.Number?

Correct Answer Boolean , Character

Your Answer Character

Select The Blank

Question The smallest integer type is ________.

Correct Answer Byte

Your Answer Byte

Multiple Choice Multiple Answer

Question Which is a public static member of thread?

Correct Answer currenthread( ) , mainthread( )

Your Answer mainthread( )

True/False

Question Casting does not affect the original object or value.

Correct Answer True

Your Answer True

Select The Blank

Question Anything declared ________ can be accessed from anywhere

within program.

Correct Answer Public

Your Answer Public

Multiple Choice Single Answer

Question Which method is used to determine the class of an object?

Correct Answer getClass( ) method

Your Answer getClass( ) method

Multiple Choice Multiple Answer

Question Method definition has four parts, they are :-

Correct Answer Name of the method , Type of object , List of parameters

Your Answer Name of the method , List of parameters

True/False

Question Object oriented programming organizes a program around

processes acting on data.

Correct Answer False

Your Answer True

Multiple Choice Single Answer

Question What are the possible access modifiers while implementing

interface methods?

Correct Answer public

Your Answer public

Multiple Choice Single Answer

Question Which statement defines a name space in which classes are

stored?

Correct Answer package

Your Answer package

Multiple Choice Single Answer

Question Which statement is used to explicitly return from a method?

Correct Answer Return

Your Answer Return

Multiple Choice Multiple Answer

Question There are two distinct types of multitasking. Which are those?

Correct Answer Process based , Thread-base

Your Answer Process based , Thread-base

Multiple Choice Multiple Answer

Question Exit statement is optional in which loops in java?

Correct Answer While , Do-while , For

Your Answer While , For

Java Programming

January 16, 2010

Java Programming

LIST OF ATTEMPTED QUESTIONS AND ANSWERS

True/False

Question Nested if is less efficient then switch statement.

Correct Answer True

Your Answer True

Select The Blank

Question ________ are stored in hierarchical manner.

Correct Answer Packages

Your Answer Packages

Select The Blank

Question The mechanism by which java frees the memory occupied by

unused objects is ________.

Correct Answer Garbage Collection

Your Answer Garbage Collection

Multiple Choice Single Answer

Question When you implement an interface method, it must be declared as :-

Correct Answer Public

Your Answer Public

Multiple Choice Single Answer

Question What are primitive data types?

Correct Answer byte, short, int, long

Your Answer byte, short, int, long

True/False

Question In While loop condition can be any Boolean expression

Correct Answer True

Your Answer True

Select The Blank

Question Long makes it useful when big ________ numbers are needed.

Correct Answer Whole

Your Answer Real

Multiple Choice Single Answer

Question Which Control Statement allow the program to execute in a

non-linear fashion?

Correct Answer Jump

Your Answer Break

True/False

Question With java Type Casts are checked at both compile-time and

runtime.

Correct Answer True

Your Answer False

Multiple Choice Multiple Answer

Question Which of the following assignments are valid?

Correct Answer short s = 28; , double d = 2.3; , int I = ’1′;

Your Answer short s = 28; , float f = 2.3;

Multiple Choice Multiple Answer

Question Java defines two ways when instantiating an object, such as :-

Correct Answer Can implement the runnable interface , Can extend the thread

class

Your Answer Can implement the runnable interface , Can extend the thread

class

Select The Blank

Question The explicit drop of an object reference by setting the value of a

variable, whose data type is a reference type of ________.

Correct Answer Null

Your Answer Instance

Multiple Choice Single Answer

Question What is a string?

Correct Answer A combination of characters called as string

Your Answer A combination of characters called as string

Multiple Choice Multiple Answer

Question What are the programming constructs?

Correct Answer Sequential , Selection — if and switch statements , Iteration — for

loop, while loop and do-while loop

Your Answer Sequential , Selection — if and switch statements , Iteration — for

loop, while loop and do-while loop

Multiple Choice Single Answer

Question What can be created by instantiating an object type thread?

Correct Answer Thread

Your Answer Thread

Select The Blank

Question In ________ statement the value of the expression is compared

with each of the literal values in case statements.

Correct Answer Switch

Your Answer Switch

Multiple Choice Single Answer

Question How to declare an interface example?

Correct Answer access class classname implements interface.

Your Answer access interface name

True/False

Question Integer can Cast to byte value.

Correct Answer False

Your Answer False

True/False

Question Transient variable is variable that may not be serialized.

Correct Answer True

Your Answer True

Multiple Choice Single Answer

Question Using which keyword we can fully abstract a class?

Correct Answer interface

Your Answer interface

Select The Blank

Question The ________ loop repeats a set of statements a certain number

of times until a condition is matched.

Correct Answer For

Your Answer For

Select The Blank

Question There are ________ kinds of Floating point type

Correct Answer Two

Your Answer Two

True/False

Question By default, all program import the java.lang package.

Correct Answer True

Your Answer True

Multiple Choice Multiple Answer

Question What returns a reference to the thread in which it is called?

Correct Answer Method , Class , Object

Your Answer Method

True/False

Question Do while loop always executes its body at least once, because its

conditional expression is at the bottom of the loop.

Correct Answer True

Your Answer True

Multiple Choice Multiple Answer

Question Which statements can be used with the java’s loop?

Correct Answer Jump , Continue , Break

Your Answer Continue , Break

Match The Following

Question Correct Answer Your Answer

start( ) thread child thread

main thread child thread main

NewThread this new

sleep( ) milliseconds milliseconds

Select The Blank

Question ________ are containers for classes.

Correct Answer Packages

Your Answer Packages

Multiple Choice Multiple Answer

Question Java’s multithreading system is built upon :-

Correct Answer Thread class , Its methods , Companion interface

Your Answer Thread class

Select The Blank

Question The default encoding of objects supports the ________ of the

classes.

Correct Answer Evolution

Your Answer Encoding

Multiple Choice Multiple Answer

Question Which are the keywords use in switch statement?

Correct Answer Case , Default

Your Answer Case , Default

Multiple Choice Single Answer

Question A Java application can execute anywhere on the network, this

implements that Java is :-

Correct Answer Architecture neutral

Your Answer Distributed

True/False

Question Boolean values can be cast into any other primitive type.

Correct Answer False

Your Answer False

Match The Following

Question Correct Answer Your Answer

It can have only one of two

possible values

Boolean type Boolean type

Float hightemp, lowtemp Float variable declarations Float variable declarations

Smallest int type Byte Byte

Floating point numbers are

also known as

Real Numbers Real Numbers

Multiple Choice Multiple Answer

Question Which one does not extend java.lang.Number?

Correct Answer Boolean , Character

Your Answer Character

Select The Blank

Question The smallest integer type is ________.

Correct Answer Byte

Your Answer Byte

Multiple Choice Multiple Answer

Question Which is a public static member of thread?

Correct Answer currenthread( ) , mainthread( )

Your Answer mainthread( )

True/False

Question Casting does not affect the original object or value.

Correct Answer True

Your Answer True

Select The Blank

Question Anything declared ________ can be accessed from anywhere

within program.

Correct Answer Public

Your Answer Public

Multiple Choice Single Answer

Question Which method is used to determine the class of an object?

Correct Answer getClass( ) method

Your Answer getClass( ) method

Multiple Choice Multiple Answer

Question Method definition has four parts, they are :-

Correct Answer Name of the method , Type of object , List of parameters

Your Answer Name of the method , List of parameters

True/False

Question Object oriented programming organizes a program around

processes acting on data.

Correct Answer False

Your Answer True

Multiple Choice Single Answer

Question What are the possible access modifiers while implementing

interface methods?

Correct Answer public

Your Answer public

Multiple Choice Single Answer

Question Which statement defines a name space in which classes are

stored?

Correct Answer package

Your Answer package

Multiple Choice Single Answer

Question Which statement is used to explicitly return from a method?

Correct Answer Return

Your Answer Return

Multiple Choice Multiple Answer

Question There are two distinct types of multitasking. Which are those?

Correct Answer Process based , Thread-base

Your Answer Process based , Thread-base

Multiple Choice Multiple Answer

Question Exit statement is optional in which loops in java?

Correct Answer While , Do-while , For

Your Answer While , For

International Economics SCDL Assignment

January 16, 2010

Multiple Choice Multiple Answer
Question
Objectives of the IMF
Correct Answer
Stability in the BOP , Stability in internal price level , Stability in the exchange rate
Your Answer
Stability in the exchange rate , Stability in the BOP , Stability in internal price level

True/False
Question
If production takes place at the optimum level price will be not be equal to the minimum average cost of production
Correct Answer
False
Your Answer
False

True/False
Question
In case of exports, agriculture has surpassed gems & jewellery in terms of a higher rate of increase, though lesser in absolute figure.
Correct Answer
True
Your Answer
True

Multiple Choice Multiple Answer
Question
Why is it so common to give protection to infant industry?
Correct Answer
Because the new firms are weak and vulnerable , Unless the conditions are conducive , expansion in output cannot be assured , To discourage the imports
Your Answer
Because the new firms are weak and vulnerable , Unless the conditions are conducive , expansion in output cannot be assured , To discourage the imports

Select The Blank
Question
Current account balance is important in determining nation’s________
Correct Answer
External Investment position
Your Answer
Internal Investment position

True/False
Question
The reigns of policy formulation & operations of the World Bank are in the hands of the Board of Directors.
Correct Answer
False
Your Answer
False

True/False
Question
IMF or World Bank want trading counties to follow a uniform code of classification to emphasis their importance on the world economy.
Correct Answer
False
Your Answer
False

Select The Blank
Question
Under perfect competition same price for ________ will prevail in the product market and price of factors of production also will be same for same varieties
Correct Answer
Identical commodities
Your Answer
Identical commodities

Select The Blank
Question
________ hypothesis advocates globalisation, that it accelerates the country’s growth process
Correct Answer
Convergence
Your Answer
Bhagwati

Multiple Choice Single Answer
Question
In case of tangency between price ration & production possibility cure – post Globalisation – is achieved at a parallel but lower level, then it shows that …
Correct Answer
Production capabilities of both the goods have declined
Your Answer
The commodity prices have declined

Multiple Choice Single Answer
Question
Apart from the gold or foreign curreny, the quota that each country had to pay was based on ..
Correct Answer
Size of GDP
Your Answer
Size of GDP

Multiple Choice Multiple Answer
Question
Balance of payment includes …
Correct Answer
Current Account , Capital Account , Reserve Movements
Your Answer
Current Account , Capital Account , Reserve Movements

True/False
Question
Production equilibrium is realised at the point of tangency between the production possibility curve and factor price ratio.
Correct Answer
True
Your Answer
True

Match The Following
Question
Correct Answer
Your Answer
REGULATOR FOR INSURANCE SECTOR
EFFECTIVE WATCH DOG
EFFECTIVE WATCH DOG
HOLDING COMPANY &FOUR SUBSIDIARIES.
GIC & New india,united,oriental,national
GIC & New india,united,oriental,national
THE POTENTIAL &SCOPE WHICH IS STILL UNDER TAPPED
PERSONAL LINE OF INSURANCE & HEALTH CARE AREA.
PERSONAL LINE OF INSURANCE & HEALTH CARE AREA.
RECENT DEVELOPMENT BY GOVT OF INDIA
SET UP AN AGRICULTURE INSURANCE COMPANY OF INDIA.
SET UP AN AGRICULTURE INSURANCE COMPANY OF INDIA.

Multiple Choice Multiple Answer
Question
Why is it that factor price equalization is not found frequently in countries?
Correct Answer
Presence of factor cost
Your Answer
Presence of factor cost , There is no perfect competition in the market , In absence of commodity price equalization factors cannot move towards equality

True/False
Question
The inception of WTO dates back to 1995
Correct Answer
True
Your Answer
True

True/False
Question
In multiversion scheme to ensure serailizibility it is necessary that a transaction should be able to determine easily and quickly which version of the data item should be read.
Correct Answer
True
Your Answer
True

Multiple Choice Single Answer
Question
What was the main reason for rise in price during 1970′s?
Correct Answer
rise in petroleum prices
Your Answer
rise in petroleum prices

Multiple Choice Single Answer
Question
Globalisation started taking root in the world economy since the
Correct Answer
Eighties
Your Answer
Seventies

Multiple Choice Single Answer
Question
When a particular transaction never makes progress because the data item it wants to lock is already locked and other transaction are also waiting for the same data item then it is said to be
Correct Answer
Starvation
Your Answer
Alive Lock

True/False
Question
Wait-die scheme is based on preemptive technique.
Correct Answer
False
Your Answer
True

Multiple Choice Single Answer
Question
According to the Absolute advantage theory why will there be any kind of difference in cost of the same product in two countries?
Correct Answer
Due to productivity
Your Answer
Lack of technology

Multiple Choice Multiple Answer
Question
What are the problems being faced by the developing countries due to reduced trade barriers?
Correct Answer
entering of giants in the market , stiff competition to the local trades
Your Answer
entering of giants in the market , stiff competition to the local trades , Demand sensitivity of the product

True/False
Question
Developed countries come closer through trade because consumption patterns are know to each other
Correct Answer
True
Your Answer
True

Multiple Choice Single Answer
Question
What is reason behind many Latin American and African countries forming a union?
Correct Answer
These countries have put a common front against the imperial power
Your Answer
These countries have put a common front against the imperial power

True/False
Question
Wound wait and wait die schemes avoids starvation.
Correct Answer
True
Your Answer
True

Multiple Choice Single Answer
Question
A transaction may release locks, but may not obtain any new locks this phase is called as
Correct Answer
Shrinking Phase
Your Answer
Growing phase

Match The Following
Question
Correct Answer
Your Answer
Real protection
An industry takes into account the higher prices a producer has to pay on imported inputs owing to imposition of tariffs
The proportion of total costs accounted for by imported inputs
Tariff barriers
Specific tariff
Specific tariff
Non Tariff barrier
Quotas
Quotas
Effective protection
The proportion of total costs accounted for by imported inputs
An industry takes into account the higher prices a producer has to pay on imported inputs owing to imposition of tariffs

Multiple Choice Multiple Answer
Question
Invisible Trade comprises …
Correct Answer
Travel & Transport , Insurance , Interest Payments
Your Answer
Travel & Transport , Insurance , Transfer Payments & Gifts

Multiple Choice Multiple Answer
Question
Identify the assumptions of H-O theory?
Correct Answer
Technology in both the country are same , Production function of a commodity is same
Your Answer
Technology in both the country are same , Efficiency in production , Production function of a commodity is same

Select The Blank
Question
Apart from international reserves, ________ also widens the monetary base of the central bank.
Correct Answer
Net domestic assets
Your Answer
Net domestic assets

True/False
Question
In case of multiple peg, the domestic currency changes propotionately to any change in exchange rates of nations of the basket
Correct Answer
False
Your Answer
True

Multiple Choice Single Answer
Question
The institutional aspect of reforms refer to
Correct Answer
It’s proper & effective implementation
Your Answer
Working beyong bureacratic compliance

Multiple Choice Multiple Answer
Question
Why is tariff imposed?
Correct Answer
Because it is the major source of revenue , To attain self-sufficiency in the country , To give protection to the domestic countries
Your Answer
Because it is the major source of revenue , To attain self-sufficiency in the country , To give protection to the domestic countries

Multiple Choice Multiple Answer
Question
What are the main highlights of Product life cycle?
Correct Answer
These are normally labor scarce countries , Producers use more capital than labor , Money is spent in research and development to innovate new ways of using capital intensive technique
Your Answer
These are normally labor scarce countries , Producers use more capital than labor , Money is spent in research and development to innovate new ways of using capital intensive technique

Multiple Choice Single Answer
Question
Day to day functioning & policy implementation of the IMF are the responsibilities of the
Correct Answer
Executive Directors
Your Answer
Executive Directors

Multiple Choice Single Answer
Question
The rate of increase in the India’s trade deficit as seen is highest in the year -
Correct Answer
1998-99
Your Answer
1998-99

Multiple Choice Single Answer
Question
Does a big population mean a big labor force?
Correct Answer
It is always compared in relation to the other factors
Your Answer
It is always in comparison with capital

Select The Blank
Question
Due to Export Subsidy selling price abroad ________ the home market price
Correct Answer
Will be less than
Your Answer
Will be less than

True/False
Question
The AMS completely believed & worked on lines of poverty eradication & rural upliftment.
Correct Answer
False
Your Answer
True

Multiple Choice Multiple Answer
Question
How dose a country determine the imports and exports items of a particular country?
Correct Answer
By comparing hourly output per labor , The country with least average cost would be ideal
Your Answer
By comparing the labor capital ratio , By comparing hourly output per labor , The country with least average cost would be ideal

True/False
Question
According to SITC codification scheme, in the import or the export list, any food item was given the code 00 & crude petroleum was given 03.
Correct Answer
False
Your Answer
True

Multiple Choice Single Answer
Question
Pegged Exchange rate was initially advocated by
Correct Answer
IMF
Your Answer
IMF

Select The Blank
Question
Complete specialization would mean that a country will produce only one product and ________ production for other products.
Correct Answer
exchange surplus
Your Answer
exchange surplus

Select The Blank
Question
Pegged Exchange Rate came to be known as ________.
Correct Answer
Official Exchange Rate
Your Answer
Official Exchange Rate

Select The Blank
Question
________was introduced by the IMF in 1967
Correct Answer
SDR
Your Answer
SDR

Select The Blank
Question
The main obsticle experienced in tha way of regional blocks is that after growing for 10-15 years ________ reaches a plateau
Correct Answer
internal trade expansion
Your Answer
internal trade expansion

Relief Fund for Haiti!

January 16, 2010


Today, FarmVille is proud to release Zynga’s Relief Fund for Haiti!

In this event, players will be able to purchase special White Corn from the Market.

In addition, players have the option to donate 25, 55 or 240 Farm Cash to Zynga’s Relief Fund for Haiti!

Some quick tips regarding White Corn:

• 10 coins to plant.

• Yields 125 Coins when Harvested.

• 3 XP gained when planting. (Crop takes 6 Hours to grow).

• After purchasing the White Corn, all donors will receive a one week license to plant them. This means that users are able to plant white corn in unlimited amounts for 7 days only.

• White Corn will never wither!

The best part of this event? Zynga will donate 100% of the proceeds earned from this event to help aid children and their families in Haiti during their time of need.

What could be sweeter than lending a helping hand?

Once you have purchased a new license, a giftable flag will become available to you! Just click on the Gift Page to send one to your friends!

You will also get a special gift with your purchase so hurry on over to FarmVille and check it out!

Relief Fund for Haiti!

January 16, 2010


Today, FarmVille is proud to release Zynga’s Relief Fund for Haiti!

In this event, players will be able to purchase special White Corn from the Market.

In addition, players have the option to donate 25, 55 or 240 Farm Cash to Zynga’s Relief Fund for Haiti!

Some quick tips regarding White Corn:

• 10 coins to plant.

• Yields 125 Coins when Harvested.

• 3 XP gained when planting. (Crop takes 6 Hours to grow).

• After purchasing the White Corn, all donors will receive a one week license to plant them. This means that users are able to plant white corn in unlimited amounts for 7 days only.

• White Corn will never wither!

The best part of this event? Zynga will donate 100% of the proceeds earned from this event to help aid children and their families in Haiti during their time of need.

What could be sweeter than lending a helping hand?

Once you have purchased a new license, a giftable flag will become available to you! Just click on the Gift Page to send one to your friends!

You will also get a special gift with your purchase so hurry on over to FarmVille and check it out!

Hot Rod Tractor!

January 16, 2010

Hot Rod Tractor!
This feature is currently only available to a small group of randomly selected users. Due to the nature of this release, we will continue to roll this feature out to 100% of users in the coming days.

Hot Rod Tractor:

Users at level 12 in Farmville can unlock the ability to purchase a Hot Rod Tractor that can plow up to 9 plots at a time. (3 x 3)

There are two ways you can acquire the new Hot Rod Tractor.

You can purchase the Hot Rod Tractor for 55 Farm Cash from the Market.

You can also visit Mafia Wars to unlock the option to purchase the tractor in Farmville for Coins.

Clicking the “Get This” button will give you the option to launch Mafia Wars. You will receive another pop-up informing you that you can unlock the Hot Rod Tractor by advancing to Level 10 in Mafia Wars.

Upon entering Mafia Wars, you will see the following pop-up:

Hot Rod Tractor!

January 16, 2010

Hot Rod Tractor!
This feature is currently only available to a small group of randomly selected users. Due to the nature of this release, we will continue to roll this feature out to 100% of users in the coming days.

Hot Rod Tractor:

Users at level 12 in Farmville can unlock the ability to purchase a Hot Rod Tractor that can plow up to 9 plots at a time. (3 x 3)

There are two ways you can acquire the new Hot Rod Tractor.

You can purchase the Hot Rod Tractor for 55 Farm Cash from the Market.

You can also visit Mafia Wars to unlock the option to purchase the tractor in Farmville for Coins.

Clicking the “Get This” button will give you the option to launch Mafia Wars. You will receive another pop-up informing you that you can unlock the Hot Rod Tractor by advancing to Level 10 in Mafia Wars.

Upon entering Mafia Wars, you will see the pop-up:

Hot Rod Tractor!

January 16, 2010

Hot Rod Tractor!
This feature is currently only available to a small group of randomly selected users. Due to the nature of this release, we will continue to roll this feature out to 100% of users in the coming days.

Hot Rod Tractor:

Users at level 12 in Farmville can unlock the ability to purchase a Hot Rod Tractor that can plow up to 9 plots at a time. (3 x 3)

There are two ways you can acquire the new Hot Rod Tractor.

You can purchase the Hot Rod Tractor for 55 Farm Cash from the Market.

You can also visit Mafia Wars to unlock the option to purchase the tractor in Farmville for Coins.

Clicking the “Get This” button will give you the option to launch Mafia Wars. You will receive another pop-up informing you that you can unlock the Hot Rod Tractor by advancing to Level 10 in Mafia Wars.

Upon entering Mafia Wars, you will see the pop-up:


Follow

Get every new post delivered to your Inbox.