Welcome to our website

This module describes methods for incorporating environmental information into accounting management information systems to allow financial decision makers to include environmental criteria in their decisions. The module is subdivided to permit a progression of detail concerning accounting systems and their role in encouraging the design and development, marketing, and use of more environmentally-conscious products, services, and manufacturing processes..

Monday, January 11, 2010

Java Programming - 21

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 - 20

LIST OF ATTEMPTED QUESTIONS AND ANSWERS

 

True/False

Question Casting occurs commonly between numeric types

Correct Answer True

Your Answer True

 

Multiple Choice Multiple Answer

Question When might your program wish to run the garbage collector?

Correct Answer Before it enters a compute-intense section of code , Before it enters a

memory-intense section of code , When it knows there will be some idle time

Your Answer When it knows there will be some idle time , Before it enters a memory-intense

section of code

 

Multiple Choice Single Answer

Question What are members of the threads class?

Correct Answer Method

Your Answer Method

 

True/False

Question Boolean data type have only Yes or No value.

Correct Answer True

Your Answer False

 

Select The Blank

Question The ________ loop is java's most fundamental looping statement.

Correct Answer While

Your Answer While

 

Multiple Choice Single Answer

Question In multithreaded program each part of such program is called :-

Correct Answer Thread

Your Answer Thread

 

Multiple Choice Multiple Answer

Question Which of the following are mathematical Expressions?

Correct Answer (+ +) , (+ =) , (- =)

Your Answer (+ =) , (- =)

 

True/False

Question A thread can be blocked when waiting for a resource.

Correct Answer True

Your Answer True

 

True/False

Question Each class in java can have a finalizer method.

Correct Answer True

Your Answer False

 

Multiple Choice Single Answer

Question Which statement has a the effect of "jumping out" of the switch statement?

Correct Answer Break

Your Answer Break

 

True/False

Question As abstract class must have at least one abstract method and others may be concrete or abstract.

Correct Answer True

Your Answer True

 

Multiple Choice Single Answer

Question The argument to which specifies the delayperiod in milliseconds

Correct Answer sleep( )

Your Answer sleep( )

 

Select The Blank

Question When java program starts up, one thread begin runing and it is called ________thread.

Correct Answer main( )

Your Answer main( )

 

Multiple Choice Single Answer

Question class conditional { public static void main(String args[]) { int i = 20; int j = 55; int z = 0; z

= i < j ? i : j; // ternary operator System.out.println("The value assigned is " + z); } } } What is output

of the above program?

Correct Answer The value assigned is 20

Your Answer The value assigned is 20

 

True/False

Question When for loop start the execution, the initialization portion of the loop is executed.

Correct Answer True

Your Answer True

 

Select The Blank

Question ________ variables are declared by use of the Byte Keyword.

Correct Answer Byte

Your Answer Byte

 

Multiple Choice Single Answer

Question Which cast must be used to cast an object to another class?

Correct Answer Specific cast.

Your Answer Explicit cast.

 

Multiple Choice Multiple Answer

Question Which are keywords in Java?

Correct Answer Extends , Synchronized , Sizeof

Your Answer Extends , Synchronized , Sizeof

 

Multiple Choice Multiple Answer

Question What are different data types in java?

Correct Answer char , double , byte

Your Answer char , double , byte

 

Match The Following

Question Correct Answer Your Answer

The Operators used in mathematical expressions Arithmetic Operator (= operator;)

Order in which operators are evaluated in expressions. Order of precedence Order of precedence

Whether an expression is evaluated left-to-right or right-to-left. Associativity Associativity

Java operator syntax for right associativity (= operator;) Comparison Operator

 

Multiple Choice Single Answer

Question Java uses which system to store packages?

Correct Answer File system directories

Your Answer File system directories

 

True/False

Question Constructors can be overloaded like regular methods.

Correct Answer True

Your Answer True

 

Multiple Choice Multiple Answer

Question What are different modifiers?

Correct Answer Private , Protected , Final

Your Answer Private , Protected

 

Select The Blank

Question After the new thread is created, it will not start running until you call its

________method.

Correct Answer start( )

Your Answer start( )

 

Select The Blank

Question The ________ repeats a set of code at least once before the condition is tested.

Correct Answer Do-while loop

Your Answer Do-while loop

 

Select The Blank

Question ________ loop repeats a statement or block while its controlling expressions is true.

Correct Answer While

Your Answer While

 

Match The Following

Question Correct Answer Your Answer

The data, or variable, defined within a class Instance variable. Instance variable.

General form of Cast (target--type)value (target--type)value

Determine the relationship that one operand has to the other Relational Operator Comparison

operator

The secondary versions of the Boolean AND and OR operators Short-Circuit Logical Operators

Short-Circuit Logical Operators

 

Multiple Choice Multiple Answer

Question The Bitwise Logical Operators are :-

Correct Answer ^ , ^= , <<

Your Answer ^ , <<

 

Select The Blank

Question The name of the new thread is specified by ________.

Correct Answer threadName

Your Answer Currentthread

 

Select The Blank

Question ________ is probably the least used java data type

Correct Answer short

Your Answer short

 

Multiple Choice Single Answer

Question How to change the values of the elements of the array?

Correct Answer By using array subscript expression

Your Answer By specifying index number

 

Multiple Choice Single Answer

Question What is declared within the file that will belong to the specified pacakage?

Correct Answer classes

Your Answer classes

 

Multiple Choice Single Answer

Question How many concrete classes can you have inside an interface?

Correct Answer none

Your Answer none

 

True/False

Question A thread's priority is used to decide when to switch from one running thread to the next,

this is called as the context switch.

Correct Answer True

Your Answer True

 

Select The Blank

Question A class is ________ for an objects in java.

Correct Answer Template

Your Answer Template

 

Select The Blank

Question Anonymous classes be implemented in an ________.

Correct Answer Interface

Your Answer Method

 

True/False

Question When an object is referenced, it mean that it has been identified by the finalizer method

for garbage collection.

Correct Answer False

Your Answer False

 

Multiple Choice Multiple Answer

Question Features of Java applets are :-

Correct Answer They can be transmitted over internet , Require java enabled web browser

Your Answer They can be transmitted over internet , Require java enabled web browser , They

are intelligent programs.

 

Multiple Choice Multiple Answer

Question Classes usually consist of two things such as :-

Correct Answer Instance variable , Methods

Your Answer Instance variable , Methods

 

Multiple Choice Multiple Answer

Question Main thread is important for which two reasons?

Correct Answer It is thread from which other "child" thread will be swapped , Often it must be the

last thread to finish execution because It performs various shutdown actions

Your Answer It is thread from which other "child" thread will be swapped , Often it must be the last

thread to finish execution because It performs various shutdown actions

 

True/False

Question If the break statement is omited in switch statement, then execution will continue on

into the next case.

Correct Answer True

Your Answer True

 

Multiple Choice Multiple Answer

Question Which are the two threads of java?

Correct Answer mainthread( ) , childthread( )

Your Answer mainthread( ) , current

 

Select The Blank

Question The ________ repeat a set of code while the condition is false.

Correct Answer While loop

Your Answer For

 

Multiple Choice Multiple Answer

Question Which of these lines of code will compile?

Correct Answer short s = 20; , char c = 32; , double d = 1.4;

Your Answer short s = 20; , byte b = 128;

 

Multiple Choice Multiple Answer

Question What are means of encapsulating and containing the name space and scope of

variables and methods?

Correct Answer Classes , Packages , Subclasses

Your Answer Packages , Subclasses

 

Multiple Choice Single Answer

Question How is it possible to use few methods of an interface in a class?

Correct Answer By declaring the class as abstract

Your Answer By declaring the class as abstract

 

Multiple Choice Single Answer

Question Which statement will always execute the body of a loop at least once?

Correct Answer Do

Your Answer Do

Monday, January 4, 2010

Strategic Finance - 24

LIST OF ATTEMPTED QUESTIONS AND ANSWERS

 

Match The Following

Question Correct Answer Your Answer

AS 21 Consolidated financial statements Consolidated financial statements

AS 4 Contingencies & events occurring after the balance sheet date Contingencies & events occurring after the balance sheet date

AS 13 Accounting for investments Accounting for investments

AS 23 Accounting for investments in associates in consolidated financial statements Accounting for investments in associates in consolidated financial statements

 

Select The Blank

Question There is a ________ relationship between the number of employees & the use of

operating supplies.

Correct Answer Natural

Your Answer Natural

 

Multiple Choice Multiple Answer

Question The main characteristics of CAPM are :-

Correct Answer It is an equilibrium Model , It describes the pricing of assets as well as derivatives ,

Expected security return = Riskless return + beta x (expected market risk premium)

Your Answer It is an equilibrium Model , It describes the pricing of assets as well as derivatives ,

Expected security return = Riskless return + beta x (expected market risk premium)

 

Multiple Choice Multiple Answer

Question A firm using a conservative policy for determining the requirements of current assets:-

Correct Answer Has fewer production stoppages , Ensures quick deliveries to customers , Stimulates sales

Your Answer Has fewer production stoppages , Ensures quick deliveries to customers , Stimulates sales

 

Multiple Choice Single Answer

Question As per Pecking order theory, which is the costliest means of funding :-

Correct Answer Equity Shares

Your Answer Equity Shares

 

Multiple Choice Single Answer

Question Free Reserves is a component of :-

Correct Answer Equity

Your Answer Equity

 

Select The Blank

Question ________ are those operating assets that are employed by a segment in its

operating activities.

Correct Answer Segment assets

Your Answer Segment assets

 

Multiple Choice Multiple Answer

Question The overhead expenses include :-

Correct Answer Utilities , Maintenance , Security

Your Answer Utilities , Maintenance , Security

 

Multiple Choice Multiple Answer

Question Examples of accrued expenses are :-

Correct Answer Wages , Income tax , Property tax

Your Answer Wages , Income tax , Property tax

 

Multiple Choice Single Answer

Question One of the bases for determining the residual value of similar assets is :-

Correct Answer Realizable value

Your Answer Realizable value

 

Select The Blank

Question The number of bidding centers shall not be less than ________ for buy back through

book building.

Correct Answer 30

Your Answer 30

 

Multiple Choice Single Answer

Question Conservative policy for determining the requirements of current assets is also known

as :-

Correct Answer Flexible policy

Your Answer Flexible policy

 

True/False

Question Management of working capital refers to the management of total assets and

liabilities of a company.

Correct Answer False

Your Answer False

 

Multiple Choice Single Answer

Question usually the `controlling block' tends to be between :-

Correct Answer 20 & 40 percent

Your Answer 20 & 40 percent

 

Multiple Choice Single Answer

Question The difference between current assets & current liabilities is known as :-

Correct Answer Net working capital

Your Answer Net working capital

 

Select The Blank

Question Conglomerate mergers are also called ________.

Correct Answer Concentric mergers

Your Answer Concentric mergers

 

Multiple Choice Multiple Answer

Question The main theories behind share repurchases are :-

Correct Answer Dividend or personal taxation hypothesis , Leverage hypothesis , Information or

signalling hypothesis

Your Answer Dividend or personal taxation hypothesis , Leverage hypothesis , Information or

signalling hypothesis

 

Multiple Choice Single Answer

Question In value of assets method the following is also to be included as they are also of

value to the company :-

Correct Answer Non trading assets

Your Answer Non trading assets

 

Multiple Choice Multiple Answer

Question Every business requires funds on a continual basis for expenses incurred on for :-

Correct Answer Purchase of raw material , Manufacturing costs , Administration

Your Answer Purchase of raw material , Manufacturing costs , Administration

 

True/False

Question The scope of the data required relates to the scope of the activity model & processes

under review.

Correct Answer True

Your Answer True

 

Multiple Choice Single Answer

Question Investment decisions are mainly concerned with :-

Correct Answer Assets

Your Answer Assets

 

Match The Following

Question Correct Answer Your Answer

Unsecured loans Form of debt not backed by the

pledge of specific assets

Form of debt not backed by the

pledge of specific assets

Line of credit Does not constitute any legal

commitments on the part of the

bank

Does not constitute any legal

commitments on the part of the

bank

Revolving credit agreements While the commitment is in force

the bank must extend credit

whenever the borrower wishes to

borrow

While the commitment is in force

the bank must extend credit

whenever the borrower wishes to

borrow

Transaction loan The cash flow ability of the

borrower to pay the loan is

usually of paramount importance

The cash flow ability of the

borrower to pay the loan is usually

of paramount importance

 

Multiple Choice Single Answer

Question Short term sources of funds include :-

Correct Answer Current Liabilities

Your Answer Reserves

 

Multiple Choice Single Answer

Question Profitability of a company depends upon :-

Correct Answer Cost of capital

Your Answer Earning per share

 

True/False

Question DCF is not a method used to calculate market value of a firm.

Correct Answer False

Your Answer False

 

Multiple Choice Multiple Answer

Question Shortcomings of accounting numbers consist of the following :-

Correct Answer Firms use different kind of accounting methods , Business risk and financial risk do

not have any influence on accounting numbers

Your Answer Dividend policy has lot of influence on accounting numbers , Business risk and

financial risk do not have any influence on accounting numbers

 

Multiple Choice Multiple Answer

Question Debt reduces :-

Correct Answer Agency cost of free cash flow , Commitment to pay in time to all lenders , Freedom of

decisions

Your Answer Agency cost of free cash flow , Commitment to pay in time to all lenders , Freedom of

decisions

 

True/False

Question Planning helps an acquiring firm to identify the units it should drop & it should add.

Correct Answer True

Your Answer True

 

Select The Blank

Question Non value added activities helps ________.

Correct Answer To analyse the activities more carefully

Your Answer To take a better decision

 

True/False

Question Usually only a single method is used for valuation of shares.

Correct Answer False

Your Answer False

 

Select The Blank

Question In the reproduction value method of valuation, the value of assets is taken to be on

the basis of ________

Correct Answer Replacement cost

Your Answer Replacement cost

 

Multiple Choice Multiple Answer

Question The major conditions to be fulfilled for buyback of shares as per the legal provisions

include :-

Correct Answer Articles of association should authorize buyback of shares , The shares which are

sought to be bought back should be fully paid up , After the buy back the ratio of debt

to total capital and free reserves should not be more than 2 : 1

Your Answer Articles of association should authorize buyback of shares , The shares which are

sought to be bought back should be fully paid up , After the buy back the ratio of debt

to total capital and free reserves should not be more than 2 : 1

 

Multiple Choice Single Answer

Question The Public announcement of share buy back has to be made at least :-

Correct Answer 7 Days prior to the commencement of buy back

Your Answer 7 Days prior to the commencement of buy back

 

Select The Blank

Question Combination of 2 or more companies into existing company is called ________.

Correct Answer Absorption

Your Answer Absorption

 

Select The Blank

Question ________ is not a example of segment liability.

Correct Answer Goodwill

Your Answer Accrued liabilities

 

Multiple Choice Multiple Answer

Question The characteristics of working capital are :-

Correct Answer It is continually required for a going concern , Quantum of working capital fluctuates

depending on the level of activity , It is impacted by numerous transactions on a

continuous basis

Your Answer It is continually required for a going concern , Quantum of working capital fluctuates

depending on the level of activity , It is impacted by numerous transactions on a

continuous basis

 

True/False

Question The accounting records serve as the major source of cost data.

Correct Answer True

Your Answer True

 

Select The Blank

Question AS 23 - Accounting for investments in associates in consolidated financial

statements comes into effect in respect of accounting periods commencing on or

after ________.

Correct Answer 01.04.2002

Your Answer 01.04.2002

 

True/False

Question The activity model is normally created by an activity Accountant.

Correct Answer False

Your Answer False

 

True/False

Question Organisational changes are similar to mission changes.

Correct Answer True

Your Answer True

 

Multiple Choice Single Answer

Question Equity includes :-

Correct Answer Development Rebate Reserve

Your Answer Development Rebate Reserve

 

Select The Blank

Question A geographical segment cannot be ________.

Correct Answer Countries in different zones

Your Answer Countries in different zones

 

Multiple Choice Single Answer

Question The Management of the Company may enter into a negotiated purchase, which is

referred to as :-

Correct Answer Greenfield

Your Answer Greenfield

 

Multiple Choice Single Answer

Question The acquirer should intimate to the target company & the concerned stock

exchanges as soon as its holding touches :-

Correct Answer 5 % of the voting capital of the target company

Your Answer 5 % of the voting capital of the target company

 

Multiple Choice Multiple Answer

Question Significant influence is the power to :-

Correct Answer Participate in the financial decisions , Participate in the operating policy decisions

Your Answer Participate in the financial decisions , Participate in the operating policy decisions

 

Multiple Choice Multiple Answer

Question An investment property is an investment in land or buildings :-

Correct Answer Not intended to be occupied substantially for use by investing enterprise , Not

intended to be in the operations of the investing enterprise

Your Answer Not intended to be occupied substantially for use by investing enterprise , Not

intended to be in the operations of the investing enterprise

 

Multiple Choice Single Answer

Question The following analysis is more targeted on similar activities or firms that exist in

parallel within the activity model or process flow to ensure that they are being done

the same best way :-

Correct Answer Comparative analysis

Your Answer Comparative analysis

 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | Free Samples By Mail