CHAPTER8 Merged
CHAPTER8 Merged
A real friend is someone who walks in when the rest walks out Page 1 of 2
14. In which option 3D Chart option is visible?
A Column or Bar Chart B Pie Chart
C Area Chart D All of them
15. The marks of quizzes are considered as a data series and a _____ colour is chosen
automatically.
A Red B Breen
C Blue D Yellow
16. The _____ is the horizontal plane which provide base to the chart elements.
A Chart Wall B Chart Floor
C Chart Legend D None of them
17. In which type of chart, chart floor is quite useful?
A Bar B Column
C (A) and (B) D None of them
18. Which toolbar is used o create a chart?
A Standard toolbar B Formatting toolbar
C Drawing tool bar D None of them
19. Which of the following facility is provided by Chart Wall?
A Change border properties such as B Type of border, colour of border
visible or invisible border
C Thickness (weight) of the border, D All of them
change area colour, degree of
transparency
20. What should be done to pull out a portion of the pie chart?
A Drag B click
C right click D left click
21. _____ can be used if complete path of the document is not remembered.
A Apply B Browse
C Back D Target
22. Provide target within the destination document using the _____ option.
A Target B Apply
C Browse D Link
23. To link the selected chart to a new document _____ option should be selected.
A Internet B Mail & News
C Document D New document
24. Which option is available in New Document option?
A File B File type
C (A) and (B) D None of them
25. Which type of files can be created using File Type option?
A Spreadsheet B Word processor
C Drawing D All of them
A real friend is someone who walks in when the rest walks out Page 2 of 2
Std. 10th Sub : Computer
CHAPTER-9
PROBLEM AND PROBLEM SOLVING
1. Into how many types the problems can be classified?
A One B Two
C Three D Four
2. Which of following is the types of problems?
A well defined B ill–defined
C (A) and (B) D None of these
3. Using what any problem can be solved?
A. Define the problem and identify the input, output and constraint of the problem.
B. Identify different alternatives of solving the problem.
C. Prepare detailed stepwise instruction set of the identified alternative. compute results
using this instruction set and check correctness of the answer obtained
D. All of them
4. The generalized solution to the problem can be obtained using which techniques?
A Pseudo code B Flowchart
C Algorithm D All of them
5. What is pseudo code?
A Fake B simulated
C (A) and (B) D None of them
6. A _____ is a technique in which we use pictorial representation of every action that
we perform within the machine process that solves a problem.
A pseudo code B flowchart
C Algorithm D None of them
7. A _____ is used to represent a flowchart.
A set of symbols B triangle
C square D None of these
8. The symbols are also called _____ of flowcharts.
A attribute B tag
C components D value
9. The Start and End components are represented by an _____ an shape.
A triangle B square
C Oval D rectangle
10. The oval shape symbol is also called _____ symbol.
A Terminal B last
C (A) and (B) D None of these
11. Where the given symbol is used in flowchart?
A start B end
C (A) and (B) D None of these
12. What is used to represent start and end in flowchart?
A oval shape B parallelogram
C Arrow D diamond shape
13. Which of the following symbol is used for input and output in flowchart?
A B
C D
14. An is used to show the sequence of the actions that are to be performed.
A B
C D
15. Process is the _____ part of any solution procedure.
"A prudent question is one-half of wisdom." Page 1 of 2
A Optional B core
C any D None of them
16. Logical operations generally help in ______.
A answer B decision making
C loop D nested loop
17. A logical decision of a process is represented by a ______ shaped symbol.
A Oval B rectangle
C Triangle D diamond
18. Which of the following symbol is used for decision?
A B
C D √
19. Diamond shape is also known as_____.
A logical decision of a process B test symbol
C (A) and (B) D None of them
20. For what decision box is used?
A We want to alter the normal B sometimes we may require more
sequence of the solution than two alternative to take a
decision
C (A) and (B) D None of them
21. “Provides us a facility to compare them accurately” – it is advantage or disadvantage
of using flowchart?
A advantage B disadvantage
C (A) and (B) D None of these
22. In computer science, an algorithm refers to a step by step procedure for solving a
particular problem.
A Flowchart B Algorithm
C Looping D Nesting
23. Which of the following statement is true for algorithm?
A Written in a natural language like B Written once then can be easily
English converted into computer programs
C (A) and (B) D None of them
1. Loop means ?
A. execution of statements for one time
B. execution of statement for more than one time
C. no execution of statement
D. none
2. How many loops are there in C ?
A 2 B 4
C 3 D 1
3. Pick the odd one out in terms of loop of C ?
A For loop B Repeat… until loop
C Do loop D Do… while loop
4. Which of the following is syntax of for loop ?
A. for ([expression1]}
B. for ([expression1]: [expression2])
C. for ([expression1]: [expression2]:[expression3])
D. None
5. If we are not using any criteria in loop then it will be ?
A Not execute B Stop
C Not start D Endless
6. In syntax of for loop what is first expression about ?
A Assigning value to variable B Checking condition
C Increment D Decrement
7. In syntax of for loop what is second expression about ?
A Assigning value to variable B Checking condition
C Increment D Decrement
8. In syntax of for loop what is use of third expression ?
A Assigning value to variable B Checking condition
C Increment D Decrement
9. To execute more than one statement is known as ?
A Top of body B Block of statement
C Statements D None
10. In for, all the expression are separated by which sign ?
A @ B ;
C $ D :
11. These three expressions are ?
A Optional B Compulsory
C Fixed D None
12. If we want to write more than one statement then which brackets are used ?
A [] B {}
C No brackets required D ()
13. In third expression a++ means ?
A Increase value of a by 0 B Decrease value of a by 0
C Increase value of a by 1 D Decrease value of a by 1
14. When execution of for loop will be terminated ?
A Condition are not satisfied B When given condition satisfied
C Criteria not matched D None