الخميس، 22 يناير 2015


1) Object is an ........ of class.

A. instance

B. implement

C. inheritance

D. invoke


2) ....... is the wrapper class.

A. Random

B. Byte

C. Vector

D. String


3) Class is a ........ entity.

A. logical

B. Physical

C. up normal

D. collection of


4) Which of the following denotes a javadoc comment?

A. //#

B. /*

C. /**

D. //**


5) Object is a ........ entity.

A. normal

B. physical

C. logical

D. normal


6) One interface can inherit another by use of the keyword ........

A. public

B. extends

C. method name

D. class name


7) ......... must be the first non comment statement in the file

A. package

B. class

C. object

D. declaration


8) In java thread to thread communication is called ....

A. passing

B. sending

C. messaging

D. calling


9) Every method of a ........... is implicitly final.

A. static class

B. dynamic class

C. final class

D. abstract class


10) The string is defined in ......... name space.

A. java.Lang

B. java.String

C. java.Char

D. java.Awt



11) A ......... object cannot be modified after it is created.

A. double

B. int

C. string

D. main


12) ......... is a special member function.

A. method

B. class

C. use defined function

D. constructor


13) A ........ class may not have any abstract method.

A. abstract

B. static

C. final

D. public


14) Keyword .......... is always a reference to the object.

A. new

B. this

C. invoke

D. class


15) ......... operators are overloaded for string objects?

A. -,+

B. +,=

C. <<,>>

D. ++,--


16) ....... is a small unit of process.

A. method

B. thread

C. applet

D. steam


17) ....... is valid for if statement?

A. An integer expression

B. A Boolean expression

C. A character expression

D. A legal expression


18) Wrapper class is a wrapper around a ....... data type.

A. normal

B. central

C. primitive

D. concrete


19) ........ statement is valid for array declaration.

A. int number();

B. float number();

C. float number[];

D. count int[];


20) ....... operators which concatenates two strings.

A. +

B. ++

C. -

D. +-

Answers:

1) A. instance
2) B. Byte
3) A. logical
4) C. /**
5) B. physical
6) B. extends
7) A. package
8) C. messaging
9) C. final class
10) A. java.Lang
11) C. string
12) D. constructor
13) C. final
14) B. this
15) B. +,=
16) B. thread
17) B. A Boolean expression
18) C. primitive
19) C. float number[];
20) A. +

Related Posts:

Interview Questions on Overview of Java set-15

Posted at  11:29 م - by mego almasry 0


1) Object is an ........ of class.

A. instance

B. implement

C. inheritance

D. invoke


2) ....... is the wrapper class.

A. Random

B. Byte

C. Vector

D. String


3) Class is a ........ entity.

A. logical

B. Physical

C. up normal

D. collection of


4) Which of the following denotes a javadoc comment?

A. //#

B. /*

C. /**

D. //**


5) Object is a ........ entity.

A. normal

B. physical

C. logical

D. normal


6) One interface can inherit another by use of the keyword ........

A. public

B. extends

C. method name

D. class name


7) ......... must be the first non comment statement in the file

A. package

B. class

C. object

D. declaration


8) In java thread to thread communication is called ....

A. passing

B. sending

C. messaging

D. calling


9) Every method of a ........... is implicitly final.

A. static class

B. dynamic class

C. final class

D. abstract class


10) The string is defined in ......... name space.

A. java.Lang

B. java.String

C. java.Char

D. java.Awt



11) A ......... object cannot be modified after it is created.

A. double

B. int

C. string

D. main


12) ......... is a special member function.

A. method

B. class

C. use defined function

D. constructor


13) A ........ class may not have any abstract method.

A. abstract

B. static

C. final

D. public


14) Keyword .......... is always a reference to the object.

A. new

B. this

C. invoke

D. class


15) ......... operators are overloaded for string objects?

A. -,+

B. +,=

C. <<,>>

D. ++,--


16) ....... is a small unit of process.

A. method

B. thread

C. applet

D. steam


17) ....... is valid for if statement?

A. An integer expression

B. A Boolean expression

C. A character expression

D. A legal expression


18) Wrapper class is a wrapper around a ....... data type.

A. normal

B. central

C. primitive

D. concrete


19) ........ statement is valid for array declaration.

A. int number();

B. float number();

C. float number[];

D. count int[];


20) ....... operators which concatenates two strings.

A. +

B. ++

C. -

D. +-

Answers:

1) A. instance
2) B. Byte
3) A. logical
4) C. /**
5) B. physical
6) B. extends
7) A. package
8) C. messaging
9) C. final class
10) A. java.Lang
11) C. string
12) D. constructor
13) C. final
14) B. this
15) B. +,=
16) B. thread
17) B. A Boolean expression
18) C. primitive
19) C. float number[];
20) A. +

Related Posts:


1) Which of the following statement is/are true?
i) The name of a java program file must match the name of the class with the extension .java
ii) Two methods cannot have the same name in java

A. i- only

B. ii- only

C. Both i and ii

D. None of the above


2) Which of the following represent(s) of a hexadecimal number?

A. 570

B. (hex)5

C. 0X9F

D. 0X5


3) ........ can appear only where in the body of a java method.

A. definition

B. declaration

C. determine

D. package


4) State whether the following statement are True or False?
i) The modulus operator(%) can be used only with integer operands
ii) Declarations can appear anywhere in the body of a java method

A. i-True, ii-False

B. i-False, ii-True

C. i-True, ii-True

D. i-False, ii-False


5) Which of the following will produce a value of 22 if x=22.9?

A. ceil(x)

B. round(x)

C. rint(x)

D. abs(x)


6) ........ is passed to a method by use of call by reference.

A. Variables

B. Objects

C. Methods

D. Operators


7) Using the keyboard interface you can fully abstract a ...

A. Method

B. Keyword

C. Class

D. Variables


8) State True or False for the following statements in java.
i) All the bitwise operators have same level of precedence in java
ii) The default can is always required in the switch selection structure.

A. i-True, ii-False

B. i-False, ii-True

C. i-True, ii-True

D. i-False, ii-False


9) Java is designed for .......... environment of the Internet.

A. Development

B. Deduction

C. Distributed

D. Web Design


10) Which of the following will produce a value of 10 if x=9.7?

A. floor(x)

B. abs(x)

C. rint(x)

D. round(x)

11) Variable declared as ......... do not occupy on a per instance basis.

A. Static

B. Final

C. Abstract

D. Code


12) Which of the following is not keyword?

A. NULL

B. implements

C. protected

D. switch


13) The ...... statement is used to terminate a statement sequence.

A. Break

B. Switch

C. Continue

D. Wait


14) Multidimensional arrays are actually ......

A. Arrays of element

B. Arrays of variable

C. Arrays of arrays

D. Arrays of variable


15) Which of the following keywords are used to control access to a class member?
i) default ii) abstract iii) protected iv) interface v) public

A. i, ii and iii only

B. ii, iii and iv only

C. iii, iv and v only

D. ii, iii and v only


16) ....... is used for initialize the value to the string object.

A. Character literals

B. String literals

C. String group literals

D. Group literals


17) Which of the following methods can be used to remove a component from the display?

A. delete()

B. remove()

C. disappear()

D. hide()


18) Which of the following statements are valid array declaration?
i) int number(); ii) float average[ ];
iii) double[]marks; iv) counter int[];

A. i and ii

B. ii and iii

C. iii and iv

D. All i, ii, iii and iv


19) Which of the following methods belong to the String class?

A. length()

B. CompareTo()

C. equals()

D. substring()

E. All of the above


20) Which of the following in NOT represent legal flow control statements?

A. break;

B. break();

C. continue outer;

D. return;


Answers:

1) A. i- only
2) A. 570
3) B. declaration
4) B. i-False, ii-True
5) C. rint(x)
6) B. Objects
7) C. Class
8) D. i-False, ii-False
9) C. Distributed
10) D. round(x)
11) B. Final
12) A. NULL
13) A. Break
14) C. Arrays of arrays
15) D. ii, iii and v only
16) B. String literals
17) D. hide()
18) B. ii and iii
19) E. All of the above
20) B. break();

Related Posts:

Solved MCQ on Fundamental of Java Language set-14

Posted at  2:33 ص - by mego almasry 0


1) Which of the following statement is/are true?
i) The name of a java program file must match the name of the class with the extension .java
ii) Two methods cannot have the same name in java

A. i- only

B. ii- only

C. Both i and ii

D. None of the above


2) Which of the following represent(s) of a hexadecimal number?

A. 570

B. (hex)5

C. 0X9F

D. 0X5


3) ........ can appear only where in the body of a java method.

A. definition

B. declaration

C. determine

D. package


4) State whether the following statement are True or False?
i) The modulus operator(%) can be used only with integer operands
ii) Declarations can appear anywhere in the body of a java method

A. i-True, ii-False

B. i-False, ii-True

C. i-True, ii-True

D. i-False, ii-False


5) Which of the following will produce a value of 22 if x=22.9?

A. ceil(x)

B. round(x)

C. rint(x)

D. abs(x)


6) ........ is passed to a method by use of call by reference.

A. Variables

B. Objects

C. Methods

D. Operators


7) Using the keyboard interface you can fully abstract a ...

A. Method

B. Keyword

C. Class

D. Variables


8) State True or False for the following statements in java.
i) All the bitwise operators have same level of precedence in java
ii) The default can is always required in the switch selection structure.

A. i-True, ii-False

B. i-False, ii-True

C. i-True, ii-True

D. i-False, ii-False


9) Java is designed for .......... environment of the Internet.

A. Development

B. Deduction

C. Distributed

D. Web Design


10) Which of the following will produce a value of 10 if x=9.7?

A. floor(x)

B. abs(x)

C. rint(x)

D. round(x)

11) Variable declared as ......... do not occupy on a per instance basis.

A. Static

B. Final

C. Abstract

D. Code


12) Which of the following is not keyword?

A. NULL

B. implements

C. protected

D. switch


13) The ...... statement is used to terminate a statement sequence.

A. Break

B. Switch

C. Continue

D. Wait


14) Multidimensional arrays are actually ......

A. Arrays of element

B. Arrays of variable

C. Arrays of arrays

D. Arrays of variable


15) Which of the following keywords are used to control access to a class member?
i) default ii) abstract iii) protected iv) interface v) public

A. i, ii and iii only

B. ii, iii and iv only

C. iii, iv and v only

D. ii, iii and v only


16) ....... is used for initialize the value to the string object.

A. Character literals

B. String literals

C. String group literals

D. Group literals


17) Which of the following methods can be used to remove a component from the display?

A. delete()

B. remove()

C. disappear()

D. hide()


18) Which of the following statements are valid array declaration?
i) int number(); ii) float average[ ];
iii) double[]marks; iv) counter int[];

A. i and ii

B. ii and iii

C. iii and iv

D. All i, ii, iii and iv


19) Which of the following methods belong to the String class?

A. length()

B. CompareTo()

C. equals()

D. substring()

E. All of the above


20) Which of the following in NOT represent legal flow control statements?

A. break;

B. break();

C. continue outer;

D. return;


Answers:

1) A. i- only
2) A. 570
3) B. declaration
4) B. i-False, ii-True
5) C. rint(x)
6) B. Objects
7) C. Class
8) D. i-False, ii-False
9) C. Distributed
10) D. round(x)
11) B. Final
12) A. NULL
13) A. Break
14) C. Arrays of arrays
15) D. ii, iii and v only
16) B. String literals
17) D. hide()
18) B. ii and iii
19) E. All of the above
20) B. break();

Related Posts:

الأربعاء، 21 يناير 2015


1) The control automatically passes the first statement after the loop in ..

A. Continue statement

B. Break statement

C. Switch statement

D. If statement


2) Which of the following is a scalar data type?

A. Float

B. Union

C. Array

D. Pointer


3) The given FOR loop is ..

for( ; ; ) { printf(" "); }

A. valid

B. invalid

C. indefinite

D. displays runtime error


4) In C, a union is ......

A. memory location

B. memory store

C. memory screen

D. memory space


5) The ......... statement causes immediate exit from the loop overriding the condition test ..

A. Exit

B. Break

C. Goto

D. None of the above


6) Pointers are of ..........

A. integer data type

B. character data type

C. unsigned integer data type

D. None of these


7) The keyword used to transfer control from a function back to the calling function is ...

A. switch

B. goto

C. go back

D. return


8) Identify the invalid pointer arithmetic ......

A. addition of float value to a pointer

B. comparison of pointers that do not point to the element of the same array

C. subtracting an integer from a pointer

D. assigning the value 0 to a pointer variable


9) In C, if you pass an array as an argument to a function, what actually gets passed?

A. Value of elements in array

B. First element of the array

C. Base address of the array

D. Address of the last element of array


10) Header file in C contain ......

A. compiler commands

B. library functions

C. header information of C programs

D. operators for files

11) Which of the following cannot be checked in a switch-case statement?

A. Character

B. Integer

C. Float

D. Enum


12) The printf() function returns which value when an error occurs?

A. Positive value

B. zero

C. Negative value

D. None of these


13) When array elements are passed to a function with their values, it is called as ...

A. end value

B. call by value

C. return value

D. first value


14) Which of the following is character oriented console I/O function?

A. getchar() and putchar()

B. gets() and puts()

C. scanf() and printf()

D. fgets() and fputs()


15) In the for loop structure there are .......... optional clauses.

A. one

B. two

C. three

D. four


16) Which header file is essential for using strcmp() function?

A. string.h

B. strings.h

C. text.h

D. strcmp.h


17) A multidimensional array can be expressed in terms of ...........

A. array of pointers rather than as pointers to a group of contiguous array

B. array without the group of contiguous array

C. data type arrays

D. qualifies of data types


18) The real constant in C can be expressed in which of the following forms?

A. fractional form only

B. exponential form only

C. ASCI form only

D. Both fractional and exponential forms


19) A structure ...

A. can be read as a single entity

B. cannot be read as a single entity

C. can be displayed as a single entity

D. has member variables that cannot be read individually


20) What will the function randomize() do?

A. returns a random number

B. returns a random number generator in the specified range

C. returns a random number generator with a random value based on time

D. return a random number with a given seed value


Answers:

1) B. Break statement
2) A. Float
3) D. displays runtime error
4) C. memory screen
5) B. Break
6) D. None of these
7) D. return
8) D. assigning the value 0 to a pointer variable
9) C. Base address of the array
10) B. library functions
11) C. Float
12) C. Negative value
13) B. call by value
14) A. getchar() and putchar()
15) C. three
16) A. string.h
17) A. array of pointers rather than as pointers to a group of contiguous array
18) D. Both fractional and exponential forms
19) A. can be read as a single entity
20) C. returns a random number generator with a random value based on time


Related Posts


Interview Questions on Fundamental of C Language set-8

Posted at  9:30 م - by mego almasry 0


1) The control automatically passes the first statement after the loop in ..

A. Continue statement

B. Break statement

C. Switch statement

D. If statement


2) Which of the following is a scalar data type?

A. Float

B. Union

C. Array

D. Pointer


3) The given FOR loop is ..

for( ; ; ) { printf(" "); }

A. valid

B. invalid

C. indefinite

D. displays runtime error


4) In C, a union is ......

A. memory location

B. memory store

C. memory screen

D. memory space


5) The ......... statement causes immediate exit from the loop overriding the condition test ..

A. Exit

B. Break

C. Goto

D. None of the above


6) Pointers are of ..........

A. integer data type

B. character data type

C. unsigned integer data type

D. None of these


7) The keyword used to transfer control from a function back to the calling function is ...

A. switch

B. goto

C. go back

D. return


8) Identify the invalid pointer arithmetic ......

A. addition of float value to a pointer

B. comparison of pointers that do not point to the element of the same array

C. subtracting an integer from a pointer

D. assigning the value 0 to a pointer variable


9) In C, if you pass an array as an argument to a function, what actually gets passed?

A. Value of elements in array

B. First element of the array

C. Base address of the array

D. Address of the last element of array


10) Header file in C contain ......

A. compiler commands

B. library functions

C. header information of C programs

D. operators for files

11) Which of the following cannot be checked in a switch-case statement?

A. Character

B. Integer

C. Float

D. Enum


12) The printf() function returns which value when an error occurs?

A. Positive value

B. zero

C. Negative value

D. None of these


13) When array elements are passed to a function with their values, it is called as ...

A. end value

B. call by value

C. return value

D. first value


14) Which of the following is character oriented console I/O function?

A. getchar() and putchar()

B. gets() and puts()

C. scanf() and printf()

D. fgets() and fputs()


15) In the for loop structure there are .......... optional clauses.

A. one

B. two

C. three

D. four


16) Which header file is essential for using strcmp() function?

A. string.h

B. strings.h

C. text.h

D. strcmp.h


17) A multidimensional array can be expressed in terms of ...........

A. array of pointers rather than as pointers to a group of contiguous array

B. array without the group of contiguous array

C. data type arrays

D. qualifies of data types


18) The real constant in C can be expressed in which of the following forms?

A. fractional form only

B. exponential form only

C. ASCI form only

D. Both fractional and exponential forms


19) A structure ...

A. can be read as a single entity

B. cannot be read as a single entity

C. can be displayed as a single entity

D. has member variables that cannot be read individually


20) What will the function randomize() do?

A. returns a random number

B. returns a random number generator in the specified range

C. returns a random number generator with a random value based on time

D. return a random number with a given seed value


Answers:

1) B. Break statement
2) A. Float
3) D. displays runtime error
4) C. memory screen
5) B. Break
6) D. None of these
7) D. return
8) D. assigning the value 0 to a pointer variable
9) C. Base address of the array
10) B. library functions
11) C. Float
12) C. Negative value
13) B. call by value
14) A. getchar() and putchar()
15) C. three
16) A. string.h
17) A. array of pointers rather than as pointers to a group of contiguous array
18) D. Both fractional and exponential forms
19) A. can be read as a single entity
20) C. returns a random number generator with a random value based on time


Related Posts


الاثنين، 19 يناير 2015


1) 'C' allows a three way transfer of control with the help of

A. Unary Operator

B. Relational Operator

C. Ternary Operator

D. Comparison Operator


2) Operators have hierarchy. It is used to know which operator ....

A. is most important

B. is used first

C. is faster

D. operators on large numbers


3) The statement that transfers control to the beginning of the loop is called ..

A. break statement

B. exit statement

C. continue statement

D. goto statement


4) C programming language was developed by ..

A. Dennis Ritche

B. Ken Thompson

C. Bill Gates

D. Peter Norton


5) The value that follows the keyword CASE may only be

A. constants

B. variable

C. number

D. semicolon


6) In a C language 'a' represents ...

A. a digit

B. an integer

C. a character

D. a word


7) The statement which is used to terminate the control from the loop is

A. break

B. continue

C. goto

D. exit


8) The continue command cannot be used with ....

A. for

B. switch

C. do

D. while


9) A self contained block of statements that perform a coherent task of some kind is called a .

A. Monitor

B. Function

C. Program

D. Structure


10) Which among the following is a unconditional control structure?

A. do while

B. if else

C. goto

D. for


11) Recursion is sometimes called

A. Circular definition

B. Complex definition

C. Procedure

D. Union


12) Every program statement in a C program end with ...

A. semicolon

B. comma

C. full stop

D. slash


13) The loop in which the statements within the loop are executed at least once is called

A. do-while

B. while

C. for

D. goto


14) The maximum length allowed in specifying the name of a C variable is ........

A. 45

B. 31

C. 56

D. 78


15) The break statement causes an exit

A. Only from the innermost loop

B. Only from the innermost switch

C. From the innermost loop or switch

D. From the program


16) Which of the following is a unformatted console I/O function to get a string input?

A. puts

B. gets

C. clrscr

D. scanf


17) The operators << and >> are

A. assignment operator

B. relational operator

C. logical operator

D. bitwise shift operator


18) The operator & is used for ........

A. Bitwise AND

B. Bitwise OR

C. Logical AND

D. Logical OR


19) Which of the following is FALSE in C

A. Keywords can be used as variable names

B. Variable names can contain a digit

C. Variable names do not contain a blank space

D. Capital letters can be used in variable names


20) The operator && is an example of ........... operator.

A. assignment

B. increment

C. logical

D. relational


Answers:

1) C. Ternary Operator
2) B. is used first
3) C. continue statement
4) A. Dennis Ritche
5) A. constants
6) C. a character
7) A. break
8) D. while
9) B. Function
10) C. goto
11) A. Circular definition
12) A. semicolon
13) A. do-while
14) B. 31
15) C. From the innermost loop or switch
16) B. gets
17) D. bitwise shift operator
18) A. Bitwise AND
19) A. Keywords can be used as variable names
20) C. logical

Related Posts

Solved MCQ on Fundamental of C Language set-7

Posted at  10:25 م - by mego almasry 0


1) 'C' allows a three way transfer of control with the help of

A. Unary Operator

B. Relational Operator

C. Ternary Operator

D. Comparison Operator


2) Operators have hierarchy. It is used to know which operator ....

A. is most important

B. is used first

C. is faster

D. operators on large numbers


3) The statement that transfers control to the beginning of the loop is called ..

A. break statement

B. exit statement

C. continue statement

D. goto statement


4) C programming language was developed by ..

A. Dennis Ritche

B. Ken Thompson

C. Bill Gates

D. Peter Norton


5) The value that follows the keyword CASE may only be

A. constants

B. variable

C. number

D. semicolon


6) In a C language 'a' represents ...

A. a digit

B. an integer

C. a character

D. a word


7) The statement which is used to terminate the control from the loop is

A. break

B. continue

C. goto

D. exit


8) The continue command cannot be used with ....

A. for

B. switch

C. do

D. while


9) A self contained block of statements that perform a coherent task of some kind is called a .

A. Monitor

B. Function

C. Program

D. Structure


10) Which among the following is a unconditional control structure?

A. do while

B. if else

C. goto

D. for


11) Recursion is sometimes called

A. Circular definition

B. Complex definition

C. Procedure

D. Union


12) Every program statement in a C program end with ...

A. semicolon

B. comma

C. full stop

D. slash


13) The loop in which the statements within the loop are executed at least once is called

A. do-while

B. while

C. for

D. goto


14) The maximum length allowed in specifying the name of a C variable is ........

A. 45

B. 31

C. 56

D. 78


15) The break statement causes an exit

A. Only from the innermost loop

B. Only from the innermost switch

C. From the innermost loop or switch

D. From the program


16) Which of the following is a unformatted console I/O function to get a string input?

A. puts

B. gets

C. clrscr

D. scanf


17) The operators << and >> are

A. assignment operator

B. relational operator

C. logical operator

D. bitwise shift operator


18) The operator & is used for ........

A. Bitwise AND

B. Bitwise OR

C. Logical AND

D. Logical OR


19) Which of the following is FALSE in C

A. Keywords can be used as variable names

B. Variable names can contain a digit

C. Variable names do not contain a blank space

D. Capital letters can be used in variable names


20) The operator && is an example of ........... operator.

A. assignment

B. increment

C. logical

D. relational


Answers:

1) C. Ternary Operator
2) B. is used first
3) C. continue statement
4) A. Dennis Ritche
5) A. constants
6) C. a character
7) A. break
8) D. while
9) B. Function
10) C. goto
11) A. Circular definition
12) A. semicolon
13) A. do-while
14) B. 31
15) C. From the innermost loop or switch
16) B. gets
17) D. bitwise shift operator
18) A. Bitwise AND
19) A. Keywords can be used as variable names
20) C. logical

Related Posts


1) A chart can be put as a part of the presentation using

A. Chart From Insert Menu

B. Picture and Choose Chart From Insert Menu

C. Chart From Tools Menu

D. Chart From Format Menu


2) Which of the following can you used to add times to the slide in a presentation?

A. Slide show menu

B. Rehearse timing button

C. Slide transaction button

D. All of the above


3) Which of the following provides a printed copy of your presentation?

A. Outlines

B. Speaker notes

C. Audience handouts

D. All of the above


4) Which shortcut key on the keyboard can be used to view slide show.

A. F1

B. F2

C. F5

D. F10


5) In order to edit a chart, you can

A. Triple Click the chart object

B. Click and drag the chart object

C. Double Click the chart object

D. Click the above


6) Which of the following is not an option when printing handouts?

A. Six slides per page

B. Five slides per page

C. Three slides per page

D. Two slides per page


7) Which option can be used to create a new slide show with the current slides but presented in a different order.

A. Rehearsal

B. Custom Slide Show

C. Slide Show Setup

D. Slide Show View


8) Which file format can be added to a power point show?

A. jpg

B. gif

C. wav

D. All of the above


9) Which of the following provides a means of printing out feature notes with a miniature slide on a printed page?

A. Slides with animation

B. Outline view

C. Notes page view

D. Audience handout


10) Slide show options available to the presenter include all of the following except

A. Transitions Command

B. Speaker Notes Command

C. Meeting Minder Command

D. Navigation Command

11) In Microsoft Power Point two kind of sound effects files that can be added to the presentation are

A. .wav files and .mid files

B. .wav files and .gif files

C. .wav files and .jpg files

D. .jpg files and .gif files


12) What are symbols used to identify items in a list?

A. Icons

B. Markders

C. Bullets

D. Graphics


13) Which of the following will not advance the slides in slide show view?

A. The Esc key

B. The Spacebar

C. The Enter key

D. Delete key


14) In the context of animations, what is a trigger?

A. An action button that advances to the next slide

B. An item on the slide that performs an action when clicked

C. The name of motion path

D. None of the above


15) The view that displays the slides of a presentation as miniature representations of the slides is called

A. Slide show

B. Slide sorter view

C. Notes page view

D. Outline view


16) Special effects used to introduction slides in a presentation are called

A. Effects

B. Custom Animation

C. Transitions

D. Present Animations


17) How can you quickly reinstate a deleted footer placeholder in master view?

A. Create a new slide master

B. Re-apply the footer placeholder

C. Re-apply the slide layout

D. None of the above


18) Which of the following should you do to bring a bullet back to a previous level?

A. Press the shift+tab keys

B. Press the shift key

C. Press the enter key

D. Press the tab key


19) Which of the following views is the best view to use when setting transaction effects for all slides in a presentation?

A. Slide sorter view

B. Notes Pages Views

C. Slide View

D. Outline View


20) Which of the following presentation elements can you modify using the slide master?

A. Slide comments

B. Slide transactions

C. Speaker note font and color

D. All of the above


Answers:

1) B. Picture and Choose Chart From Insert Menu
2) B. Rehearse timing button
3) C. Audience handouts
4) C. F5
5) C. Double Click the chart object
6) B. Five slides per page 
7) C. Slide Show Setup
8) D. All of the above
9) D. Audience handout
10) A. Transitions Command
11) A. .wav files and .mid files
12) C. Bullets
13) A. The Esc key
14) B. An item on the slide that performs an action when clicked
15) B. Slide sorter view
16)  C. Transitions
17) B. Re-apply the footer placeholder
18) A. Press the shift+tab keys
19) A. Slide sorter view
20) B. Slide transactions

Related Posts:

For More Multiple Choice Questions(MCQ's): Click Here

Objective Questions on Ms Power Point in Ms Office set-2

Posted at  12:00 ص - by mego almasry 0


1) A chart can be put as a part of the presentation using

A. Chart From Insert Menu

B. Picture and Choose Chart From Insert Menu

C. Chart From Tools Menu

D. Chart From Format Menu


2) Which of the following can you used to add times to the slide in a presentation?

A. Slide show menu

B. Rehearse timing button

C. Slide transaction button

D. All of the above


3) Which of the following provides a printed copy of your presentation?

A. Outlines

B. Speaker notes

C. Audience handouts

D. All of the above


4) Which shortcut key on the keyboard can be used to view slide show.

A. F1

B. F2

C. F5

D. F10


5) In order to edit a chart, you can

A. Triple Click the chart object

B. Click and drag the chart object

C. Double Click the chart object

D. Click the above


6) Which of the following is not an option when printing handouts?

A. Six slides per page

B. Five slides per page

C. Three slides per page

D. Two slides per page


7) Which option can be used to create a new slide show with the current slides but presented in a different order.

A. Rehearsal

B. Custom Slide Show

C. Slide Show Setup

D. Slide Show View


8) Which file format can be added to a power point show?

A. jpg

B. gif

C. wav

D. All of the above


9) Which of the following provides a means of printing out feature notes with a miniature slide on a printed page?

A. Slides with animation

B. Outline view

C. Notes page view

D. Audience handout


10) Slide show options available to the presenter include all of the following except

A. Transitions Command

B. Speaker Notes Command

C. Meeting Minder Command

D. Navigation Command

11) In Microsoft Power Point two kind of sound effects files that can be added to the presentation are

A. .wav files and .mid files

B. .wav files and .gif files

C. .wav files and .jpg files

D. .jpg files and .gif files


12) What are symbols used to identify items in a list?

A. Icons

B. Markders

C. Bullets

D. Graphics


13) Which of the following will not advance the slides in slide show view?

A. The Esc key

B. The Spacebar

C. The Enter key

D. Delete key


14) In the context of animations, what is a trigger?

A. An action button that advances to the next slide

B. An item on the slide that performs an action when clicked

C. The name of motion path

D. None of the above


15) The view that displays the slides of a presentation as miniature representations of the slides is called

A. Slide show

B. Slide sorter view

C. Notes page view

D. Outline view


16) Special effects used to introduction slides in a presentation are called

A. Effects

B. Custom Animation

C. Transitions

D. Present Animations


17) How can you quickly reinstate a deleted footer placeholder in master view?

A. Create a new slide master

B. Re-apply the footer placeholder

C. Re-apply the slide layout

D. None of the above


18) Which of the following should you do to bring a bullet back to a previous level?

A. Press the shift+tab keys

B. Press the shift key

C. Press the enter key

D. Press the tab key


19) Which of the following views is the best view to use when setting transaction effects for all slides in a presentation?

A. Slide sorter view

B. Notes Pages Views

C. Slide View

D. Outline View


20) Which of the following presentation elements can you modify using the slide master?

A. Slide comments

B. Slide transactions

C. Speaker note font and color

D. All of the above


Answers:

1) B. Picture and Choose Chart From Insert Menu
2) B. Rehearse timing button
3) C. Audience handouts
4) C. F5
5) C. Double Click the chart object
6) B. Five slides per page 
7) C. Slide Show Setup
8) D. All of the above
9) D. Audience handout
10) A. Transitions Command
11) A. .wav files and .mid files
12) C. Bullets
13) A. The Esc key
14) B. An item on the slide that performs an action when clicked
15) B. Slide sorter view
16)  C. Transitions
17) B. Re-apply the footer placeholder
18) A. Press the shift+tab keys
19) A. Slide sorter view
20) B. Slide transactions

Related Posts:

For More Multiple Choice Questions(MCQ's): Click Here

الأحد، 18 يناير 2015


1) Which of the following toolbars provide different options in various master views?

A. Common Task Toolbar

B. Drawing Toolbar

C. Formatting Toolbar

D. Standard Toolbar


2) Which of the following allow you to select more than one slides in slide sorter view?

A. Alt+Click on each slide

B. Shift+Drag each slide

C. Shift+Click on each slide

D. Ctrl+Click each slide


3) The handout master contains placeholders for all of the following except

A. Slide number

B. Title

C. Footer

D. Header


4) Which of the following is the default page setup orientation for slide in Power Point?

A. Vertical

B. Landscape

C. Portrait

D. Tail


5) The boxes that are displayed to indicated that the text, pictures or objects are placed in it called ..

A. Placeholder

B. Auto text

C. Text Box

D. Word Art


6) Which of the following features should you use when typing in the notes text box?

A. Slide shows

B. Insert

C. Slide master

D. Zoom


7) Which of the following provides a means of printing our features notes with a miniature slide in printed page ?

A. Slides with animation

B. Outline view

C. Notes page

D. Audience handout


8) The slide that is used to introduce a topic and set the tone for the presentation is called the

A. Table Slide

B. Graph Slide

C. Bullet Slide

D. Title Slide


9) Which of the following bypass the print dialog box when printing individual slides of an entire presentation?

A. File, Print Preview

B. The Print button

C. File, Print

D. Ctrl+P


10) You can create a new presentation by completing all of the following except

A. Clicking the new button on the standard toolbar

B. Clicking File, New

C. Clicking on File, Open

D. Pressing CTRL+N


11) The power point view that display only text is

A. Slide show

B. Slide sorter view

C. Notes page view

D. Outline view


12) Which of the following toolbars provides different options in various master views?

A. Common tasks toolbar

B. Drawing toolbar

C. Formatting toolbar

D. Standard toolbar


13) Presentation designs regulate the formatting and layout for the slide and are commonly called

A. Design plates

B. Templates

C. Placeholders

D. Blueprints


14) Which of the following should you use if you want all the slides in the presentation to have the same look?

A. The slide, layout option

B. Outline View

C. Add a slide option

D. A presentation design template


15) Which of the following is the default page setup orientation for notes pages, outlines and handouts?

A. Vertical

B. Landscape

C. Portrait

D. None of the above


16) Animation schemes can be applied to in the presentation

A. All slides

B. Select Slides

C. Current Slide

D. All of the above


17) Which command bring you to the first slide in your presentation?

A. Next slide button

B. Page up

C. Ctrl+Home

D. Ctrl+End


18) Which of the following is the default page setup orientation for slides in Power Point?

A. Vertical

B. Landscape

C. Portrait

D. None of the above


19) To insert a new slide in the current presentation, we can choose

A. Ctrl+M

B. Ctrl+N

C. Ctrl+O

D. Ctrl+F


20) Material consisting of text and number is best presented as

A. A table slide

B. A bullet slide

C. A title slide

D. All of the above


Answers:

1) A. Common Task Toolbar
2) C. Shift+Click on each slide
3) B. Title
4) B. Landscape
5) A. Placeholder
6) D. Zoom
7) D. Audience handout
8) D. Title Slide
9) B. The Print button
10) C. Clicking on File, Open
11) D. Outline view
12) A. Common tasks toolbar
13) B. Templates
14) D. A presentation design template
15) C. Portrait
16) A. All slides
17) C. Ctrl+Home
18) B. Landscape
19) A. Ctrl+M
20) A. A table slide

Related Posts:

For More Multiple Choice Questions(MCQ's): Click Here

Solved MCQ on Ms PowerPoint in Ms Office set-1

Posted at  10:04 م - by mego almasry 0


1) Which of the following toolbars provide different options in various master views?

A. Common Task Toolbar

B. Drawing Toolbar

C. Formatting Toolbar

D. Standard Toolbar


2) Which of the following allow you to select more than one slides in slide sorter view?

A. Alt+Click on each slide

B. Shift+Drag each slide

C. Shift+Click on each slide

D. Ctrl+Click each slide


3) The handout master contains placeholders for all of the following except

A. Slide number

B. Title

C. Footer

D. Header


4) Which of the following is the default page setup orientation for slide in Power Point?

A. Vertical

B. Landscape

C. Portrait

D. Tail


5) The boxes that are displayed to indicated that the text, pictures or objects are placed in it called ..

A. Placeholder

B. Auto text

C. Text Box

D. Word Art


6) Which of the following features should you use when typing in the notes text box?

A. Slide shows

B. Insert

C. Slide master

D. Zoom


7) Which of the following provides a means of printing our features notes with a miniature slide in printed page ?

A. Slides with animation

B. Outline view

C. Notes page

D. Audience handout


8) The slide that is used to introduce a topic and set the tone for the presentation is called the

A. Table Slide

B. Graph Slide

C. Bullet Slide

D. Title Slide


9) Which of the following bypass the print dialog box when printing individual slides of an entire presentation?

A. File, Print Preview

B. The Print button

C. File, Print

D. Ctrl+P


10) You can create a new presentation by completing all of the following except

A. Clicking the new button on the standard toolbar

B. Clicking File, New

C. Clicking on File, Open

D. Pressing CTRL+N


11) The power point view that display only text is

A. Slide show

B. Slide sorter view

C. Notes page view

D. Outline view


12) Which of the following toolbars provides different options in various master views?

A. Common tasks toolbar

B. Drawing toolbar

C. Formatting toolbar

D. Standard toolbar


13) Presentation designs regulate the formatting and layout for the slide and are commonly called

A. Design plates

B. Templates

C. Placeholders

D. Blueprints


14) Which of the following should you use if you want all the slides in the presentation to have the same look?

A. The slide, layout option

B. Outline View

C. Add a slide option

D. A presentation design template


15) Which of the following is the default page setup orientation for notes pages, outlines and handouts?

A. Vertical

B. Landscape

C. Portrait

D. None of the above


16) Animation schemes can be applied to in the presentation

A. All slides

B. Select Slides

C. Current Slide

D. All of the above


17) Which command bring you to the first slide in your presentation?

A. Next slide button

B. Page up

C. Ctrl+Home

D. Ctrl+End


18) Which of the following is the default page setup orientation for slides in Power Point?

A. Vertical

B. Landscape

C. Portrait

D. None of the above


19) To insert a new slide in the current presentation, we can choose

A. Ctrl+M

B. Ctrl+N

C. Ctrl+O

D. Ctrl+F


20) Material consisting of text and number is best presented as

A. A table slide

B. A bullet slide

C. A title slide

D. All of the above


Answers:

1) A. Common Task Toolbar
2) C. Shift+Click on each slide
3) B. Title
4) B. Landscape
5) A. Placeholder
6) D. Zoom
7) D. Audience handout
8) D. Title Slide
9) B. The Print button
10) C. Clicking on File, Open
11) D. Outline view
12) A. Common tasks toolbar
13) B. Templates
14) D. A presentation design template
15) C. Portrait
16) A. All slides
17) C. Ctrl+Home
18) B. Landscape
19) A. Ctrl+M
20) A. A table slide

Related Posts:

For More Multiple Choice Questions(MCQ's): Click Here


1) When you insert an excel file into a word document. The data are

A. Hyper-linked place in a word table

B. Linked

C. Embedded

D. Use the word menu bar and toolbars


2) All worksheet formula

A. Manipulate values

B. Manipulate labels

C. Return a formula result

D. Use the addition operator


3) Which of the following is available in Formula Auditing?

A. Trace Precedents

B. Trace Dependents

C. Trace Error

D. All


4) Concatenation of text can be done using ..

A. Apostrophe(')

B. Exclamation(!)

C. Hash(#)

D. Ampersand(&)


5) You can enter which types of data into worksheet cells?

A. Labels, values and formulas

B. Labels and values but not formulas

C. Values and formulas but not labels

D. Formulas only


6) Which of the following is NOT in sheet

A. Tab Color

B. Rename

C. Hide

D. All


7) Data can be arranged in a worksheet in an easy to understand manner using ..

A. Auto Formatting

B. Applying styles

C. Changing fonts

D. All of the above


8) A circular reference is

A. Geometric modeling tool

B. A cell that points to a drawing object

C. A formula that either directly or indirectly depends on itself

D. Always erroneous


9) Which of the following is used to copy the contents and formats of the bottom cell or cells of a selected range into the cells to the right.

A. Fill Left

B. Fill Up

C. Fill Right

D. Fill Down


10) Which area in an Excel windows allows entering values and formulas

A. Title bar

B. Menu bar

C. Formula bar

D. Standard toolbar


11) When a label is too long to fit withing a worksheet cell, you typically must

A. Shorten the label

B. Increase the column width

C. Decrease the column width

D. Adjust the row height


12) A group of related data points plotted in a chart that originates from rows or columns on a single worksheet.

A. Data Label

B. Data Marker

C. Data Series

D. Legend


13) Name box locate on ..

A. Left size of formula bar

B. Right side of formula bar

C. Center of formula bar

D. None of the above


14) The ChartWizard term data categories refers to

A. A chart plot area

B. A horizontal axis

C. The organization of individual values with a chart's data series

D. The data range that supplies chart data


15) A box that identifies the patterns or colors assigned to the data series ..

A. Data Label

B. Data Marker

C. Data Series

D. Legend


16) You can not link excel worksheet data to a word document.

A. With the right drag method

B. With a hyperlink

C. With the copy and paste special commands

D. With the copy and paste button on the standard toolbar


17) Excel uniquely identifies cells within a worksheet with

A. Cell names

B. Column numbers and row numbers

C. Column letters and row numbers

D. Cell locator's coordinates


18) A bar, area or slice or other symbols in a chart that represents a single data point or value.

A. Data Label

B. Data Marker

C. Data Series

D. Legend


19) Which of the following methods cannot be used to entry data in a cell?

A. Pressing an arrow key

B. Pressing the tab key

C. Pressing the Esc key

D. Clicking on the formula bar


20) You want to view the progress of the stock market on a regular daily basis.

A. Pie chart

B. Row chart

C. Line chart

D. Column chart


Answers:

1) B. Linked
2) C. Return a formula result
3) D. All
4) D. Ampersand(&)
5) A. Labels, values and formulas
6) D. All
7) D. All of the above
8) C. A formula that either directly or indirectly depends on itself
9) B. Fill Up
10) C. Formula bar
11) B. Increase the column width
12) C. Data Series
13) A. Left size of formula bar
14) B. A horizontal axis
15) D. Legend
16) D. With the copy and paste button on the standard toolbar
17) C. Column letters and row numbers
18) B. Data Marker
19) A. Pressing an arrow key
20) C. Line chart


Related Posts:

For More Multiple Choice Questions(MCQ's): Click Here

Interview Questions on Microsoft Excel with Answer set-6

Posted at  1:57 ص - by mego almasry 0


1) When you insert an excel file into a word document. The data are

A. Hyper-linked place in a word table

B. Linked

C. Embedded

D. Use the word menu bar and toolbars


2) All worksheet formula

A. Manipulate values

B. Manipulate labels

C. Return a formula result

D. Use the addition operator


3) Which of the following is available in Formula Auditing?

A. Trace Precedents

B. Trace Dependents

C. Trace Error

D. All


4) Concatenation of text can be done using ..

A. Apostrophe(')

B. Exclamation(!)

C. Hash(#)

D. Ampersand(&)


5) You can enter which types of data into worksheet cells?

A. Labels, values and formulas

B. Labels and values but not formulas

C. Values and formulas but not labels

D. Formulas only


6) Which of the following is NOT in sheet

A. Tab Color

B. Rename

C. Hide

D. All


7) Data can be arranged in a worksheet in an easy to understand manner using ..

A. Auto Formatting

B. Applying styles

C. Changing fonts

D. All of the above


8) A circular reference is

A. Geometric modeling tool

B. A cell that points to a drawing object

C. A formula that either directly or indirectly depends on itself

D. Always erroneous


9) Which of the following is used to copy the contents and formats of the bottom cell or cells of a selected range into the cells to the right.

A. Fill Left

B. Fill Up

C. Fill Right

D. Fill Down


10) Which area in an Excel windows allows entering values and formulas

A. Title bar

B. Menu bar

C. Formula bar

D. Standard toolbar


11) When a label is too long to fit withing a worksheet cell, you typically must

A. Shorten the label

B. Increase the column width

C. Decrease the column width

D. Adjust the row height


12) A group of related data points plotted in a chart that originates from rows or columns on a single worksheet.

A. Data Label

B. Data Marker

C. Data Series

D. Legend


13) Name box locate on ..

A. Left size of formula bar

B. Right side of formula bar

C. Center of formula bar

D. None of the above


14) The ChartWizard term data categories refers to

A. A chart plot area

B. A horizontal axis

C. The organization of individual values with a chart's data series

D. The data range that supplies chart data


15) A box that identifies the patterns or colors assigned to the data series ..

A. Data Label

B. Data Marker

C. Data Series

D. Legend


16) You can not link excel worksheet data to a word document.

A. With the right drag method

B. With a hyperlink

C. With the copy and paste special commands

D. With the copy and paste button on the standard toolbar


17) Excel uniquely identifies cells within a worksheet with

A. Cell names

B. Column numbers and row numbers

C. Column letters and row numbers

D. Cell locator's coordinates


18) A bar, area or slice or other symbols in a chart that represents a single data point or value.

A. Data Label

B. Data Marker

C. Data Series

D. Legend


19) Which of the following methods cannot be used to entry data in a cell?

A. Pressing an arrow key

B. Pressing the tab key

C. Pressing the Esc key

D. Clicking on the formula bar


20) You want to view the progress of the stock market on a regular daily basis.

A. Pie chart

B. Row chart

C. Line chart

D. Column chart


Answers:

1) B. Linked
2) C. Return a formula result
3) D. All
4) D. Ampersand(&)
5) A. Labels, values and formulas
6) D. All
7) D. All of the above
8) C. A formula that either directly or indirectly depends on itself
9) B. Fill Up
10) C. Formula bar
11) B. Increase the column width
12) C. Data Series
13) A. Left size of formula bar
14) B. A horizontal axis
15) D. Legend
16) D. With the copy and paste button on the standard toolbar
17) C. Column letters and row numbers
18) B. Data Marker
19) A. Pressing an arrow key
20) C. Line chart


Related Posts:

For More Multiple Choice Questions(MCQ's): Click Here

Copyright © 2013 hello1. by Bloggertheme9 Powered by Blogger.
WP Theme-junkie converted by Blogger template