Posts

Showing posts from 2017

DIWAN E AAM: 28 December 2017 Thursday

DIWAN E AAM: 28 December 2017 Thursday

Computer Monitors - CRT, LCD, LED, Plasma & OLED Display Monitors

Image
We all are familiar with the  computer monitors . We spend time sitting in front of them for hours working, gaming or watching movies. A monitor is used to display the output of any computer system. A good display makes all the difference and no doubt enhances the user experience. The innovation in the display technologies has improved the quality of the display devices including monitors. Now the desktop computers are available with a variety of displays ranging from technologically obsolete  CRT monitors  to latest slim  LCD, LED or OLED monitors .   History The first monitor dates long back in history. In the early stages of its evolution they were known as Terminals,  which were the boxy Video Display Terminals (VDTs). VDTs were monochrome monitors which used CRT (Cathode Ray Tube) technology. They were capable of working with any type of computer by connecting through a serial interface.   IBM’s CRT  - IBM launched its first...

Area and Perimeter of circle program in c

Area and Perimeter of circle program in c /*C program to find area and perimeter of circle.*/ # include < stdio.h > # define PI 3 . 14f int main ( ) { float rad , area , perm ; printf ( " Enter radius of circle: " ) ; scanf ( " %f " , & rad ) ; area = PI * rad * rad ; perm = 2 * PI * rad ; printf ( " Area of circle: %f \n Perimeter of circle: %f \n " , area , perm ) ; return 0 ; }

a program in C to input a number and print its arithmetic table upto 10.

Example #1: Multiplication Table Up to 10 #include <stdio.h> int main () { int n , i ; printf ( "Enter an integer: " ); scanf ( "%d" ,& n ); for ( i = 1 ; i <= 10 ; ++ i ) { printf ( "%d * %d = %d \n" , n , i , n * i ); } return 0 ; }

What is PowerPoint?

PowerPoint is a complete presentation graphics package. It gives you everything you need to produce a professional-looking presentation. PowerPoint offers word processing, outlining, drawing, graphing, and presentation management tools- all designed to be easy to use and learn.

Apply a motion path to text or an object

Image
Apply a motion path to text or an object You can add more complex or custom animation motions to text or an object. Watch this short demo to see some examples. Click the object or text to which you want to add a motion path. The path that you apply is followed by the center of the object or text bullet. On the Animations tab, in the Animations group, under Motion Paths , do one of the following: Click Lines , Arcs , Turns , Shapes or Loops . The path chosen appears as a dotted line on the selected object or text object. The green arrow indicates the path’s beginning and the red arrow indicates its end. Click Custom Path . When you click where you want the motion path to start, the pointer becomes a pen . To draw a path of connected straight lines     Click where you want the motion path to start. Move the pointer and click where you want the line to end. Draw the next connected line by clicking where you want it to end. Double-...

Apply sound effects to animated text and objects

Image
Apply sound effects to animated text and objects You can give additional emphasis to animated text or objects by applying sound effects. To add sound to animated text or an object, do the following: On the Animations tab, in the Advanced Animation group, click Animation Pane . The Animation Pane opens on the side of the workspace pane, showing the order, type and duration of animation effects applied to text or objects on a slide. Locate the effect to which you want to add sound, click the down arrow and then click Effect Options. Note:  The Effect Options dialog box displays different options, according to the type of animation selected . On the Effect tab, under Enhancements , in the Sound box, click the arrow to open the list and then do one of the following: Click a sound from the list, and then click OK . To add a sound from a file, click Other Sound from the list , locate the sound file that you want to use, and then click Open . ...

To add animation to text or an object, do the following:

1.Select the text or object that you want to animate 2.On the Animations tab, in the Animation group, click an animation effect from the gallery. Click the More arrow to see more options. 3.To alter how your selected text animates, click Effect Options and then click what you want the animation to do. 4.To specify the timing of the effects, on the Animations tab, use the commands in the Timing group. For more information, see also Set the animation timing or effect options .

Seven Layers of Open Systems Interconnection (OSI

In Seven Layers of Open Systems Interconnection (OSI) Model lesson, you will learn about the seven layers of OSI model and their functions If network communications need to happen with out any trouble, many problems must be solved. Coordinating all these problems are so complex and not easy to manage. To make these tasks smooth, in 1977 the International Standards Organization (ISO) proposed the Open Systems Interconnection (OSI) network model. The Open Systems Interconnection (OSI) model breaks down the problems involved in moving data from one computer to another computer. Open Systems Interconnection (OSI) model categorizes these hundreds of problems to Seven Layers. A layer in Open Systems Interconnection (OSI) model is a portion that is used to categorize specific problems. Open Systems Interconnection (OSI) Seven Layered reference model is only just a reference model. All the problems which are related to the communications are answered by specific protocols operating a...