Posts

Showing posts from September, 2019

Block Diagram Of a computer

Image
Block Diagram of Computer and its Various Components Computer – The word “computer “comes from the word “compute “which means to calculate. So a computer is normally considered to be a calculating device that performs arithmetic operations at enormous speed. A computer is an electronic device which is used to perform operation on raw data as per instruction given by user. They are 1) It accepts data or instructions through input, 2) It stores data, 3) It can process required data by the user, 4) It gives results as production, and 5) It controls all functions inside the computer Various Components of Computer Computer is an electronic device which performs tasks given by user with extremely fast speed and accuracy. Like any other device or machine, a computer system has also a number of parts.  A computer system can be blocked into mainly three parts: Input Unit Central Processing Unit Output Unit 1. Input unit – Input unit is a unit that accepts any input device. The

Applets

Image
Definition of Applet An applet is a small Java program that is a part of a web page and is downloaded automatically from a server when the client requests that web page. Applet Fundamentals Since applet is a part of a webpage, we will learn basic things related to web pages. A web page is a collection of information (ex: Google home page, Yahoo home page etc). Web pages are generally created using HTML. A web page contains at least four basic HTML tags: <html>  : Specifies that it is the root tag. <head>  : Specifies the head section of the web page. It contains meta information, page title, scripts, external style sheet links etc. <body>  : Contains the content that is displayed to a user who is visiting the web page. <title>  : Specifies the title of the web page. It is specified inside <head> tags. As an example let’s look at the HTML code of a web page that displays “Hello World” in large letters. The code is as follows: hel