Skip to main content

Posts

Showing posts with the label class 10th

ads1

Chapter :- 2 Adding Graphics in a Document

Chapter :- 2 Adding Graphics in a Document Select the correct option. 1.You can insert a picture in a document from the __________ group of the Insert tab. a. Arrange b. Symbols c. illustrations 2. __________is a collection of pictures or images that are available in Microsoft Office gallery. a. WordArt b. Clip Art c. Picture 3. You can fill colour in a shape by using the ___________ option in the Shape Styles group of the Format tab. a. Fill Shape b. Shape Fill c. Fill Color 4. ______________ handles are used to resize an image diagonally.   a. Corner Handles b. Side Handles c. Both a and b 5. By using the ____________ dialog box, you can make changes in the picture properties. a Format Picture b. Properties c. Image Properties B. Write T for True and F for False. 1. You can draw a shape in the document by selecting any shape from the Insert tab. :- True   2. The 'Drawing Object Properties' tab opens when you select an object. :- False 3. Drawing objects can be grouped togethe

Class 10th Chapter :- 16 Function

    Function C program has at least one main() function. The use of function in a program makes it modular. Modularity means partitioning a complex problem into small sub-problems which are easy to understand and maintain. There are two categories of functions in C. (1) Library functions or System defined functions (2) User defined functions Library Functions  :-The C language standard library provides many built-in functions that our program can use. They are also known as system defined functions. For example printf( ), scanf(), sqrt() and cos are examples of library functions User Defined Functions The functions developed by user are known as user defined functions. The main() is special type of user defined function in C. The program execution starts from main() function. Testing and debugging of such program may be become difficult for programmer. Variables By scope of variable we mean the part of program where the variable is accessible. In C scope of variables are of two types:

ads2