Students and Teachers Forum
A document using http that resides on a website is known as web page. .....
Every HTML document should follow this general form: <HTML> <HEAD> <TITLE> Title of page written here </TITLE> </HEAD> <BODY> The HTML tags that define our page here are </BODY> <H/TML> .....
The container tags are pair tags i.e. they required a starting tag as well as and ending tag. They affect the text appearing between their starting and ending tag. E.g. <HTML> ..............</HTML> <B> .............. .....
A tag is coded HTML command that indicates how part of web page should be displayed. All HTML tags are contained with angle brackets (<>) e.g <Head> <Body>, etc. There are two types of tags: Container Tag (Paired Tag) Empty .....
Any four advantages of HTML language are:HTML is simple language to code and required little time for developing web page.It provides special tags that help text in the form of tables.It is designed to work on a wide variety of platform.It provides .....
HTML stands Hyper Text Markup Language that is used to develop Web pages. It is a versatile language and can be used on any platform. It was developed by Tim Berners Lee in 1990. HTML documents have html or html file extensions. .....
The amendment provisions to the IT policy of Nepal 2057 are: This policy may be reviewed and amended in every two years in conformity with technological development and expansion of services because of rapid developments in the Information .....
The NITCC is constituted to carry out research on and develop information technology such as. Develop manpower required for this sector. Define a curriculum for information technology. Improve the quality of computer training operated by the .....
The functional responsibilities of NITC are: Act as data bank information & assist in computerization of records in different government offices. Act as a secretariat of the NITDC. Act as a regulator for the healthy development of .....
The NITDC is formed under the chairmanship of Rt. Honorable Prime Minister in which total 18 members will be there. .....
The main problems and challenges of IT policy of Nepal 2067 are:The situational risk of the right of protection of intellectual property and anti dumping after being the member of World Trade Organization.The active and effective involvement of .....
The mission of IT Policy of Nepal 2067 is “To achieve good governance, minimize poverty along with socio-economic promotion by the proper use of Information Technology in .....
Two polices of information technology policy of Nepal 2057 are: To provide internet facilities to all the village development committee of the country in phases To computerize the records of each government office &build web site for them .....
Any four policies of IT policy of Nepal 2067are:Programs for increasing employment opportunities will be enhanced increased by making similar policies of information technology with the policies made for development of other areas.The policies .....
The IT policy of Nepal is needed to develop .Information technology in the shortest time possible for the sake of the national economy & other improvements. .....
The policy formulated by the government or concerned authority to organize, develop and implement in different sector of IT systematically is known as IT .....
Information Technology is the modern technology of computer science which includes fast communication from one place of world to another .....
Four information technology strategies of Nepal adopted to accomplish the above objectives are: The government will acts as a promoter, Facilitator and regulator. Legalize and promote e-commerce Assist in E. Governance by using IT Carry on .....
The objectives of IT policy of Nepal 2057 are:To make it accessible to the general public and increase employment through this mean. To build knowledge based society. To establish knowledge based industries. .....
The main vision of IT policy of Nepal 2057 is "To place Nepal on global map of information Technology with the next five years". .....
The policy formulated by the government or concerned authority to organize, develop and implement in different sectors of IT systematically, is known as IT policy. .....
The components of information technology are:Data Hardware Software People Network .....
Information Technology is the modem technology of computer science, which includes fast communication from one place of world to another .....
Logical operators are used to connect two or more relations and return a TRUE or FALSE value to be used in a decision. The common logical operators are: AND ConjunctionOR DisjunctionNOT Logical .....
Logical Operator, Meaning=, Equal to > , Greater than< , Less than<=, Less than or equal to>=, Greater than or equal to<> , Not equal .....
QBASIC can handle arithmetic expression involving the five arithmetic operators + (addition), - (subtraction), * (multiplication, / (division) and ^ (exponentiation). The hierarchy of operations is as follows: Exponential Multiplication and .....
In QBASIC, variables are also of two types: Numeric variable String variableNumeric variable can assume numeric value and is represented by an alphabet or an alphabet followed by another alphabet or digit. For example A, C, A2, ABC, A6 etc. .....
A quantity in a computer program which does not change its value during the execution of the program is called a constant and the quantity which may change its values during the execution of the program is called variable. QBASIC allows the .....
The advantages of QBASIC are: QBASIC is easy to learn and fun to practice. It may be called a "People's language".It is available almost in every computer from micro to mainframe. Therefore, a program developed in a micro can run on bigger system .....
Four common high-level programming languages are: Quick BASIC (QBASIC) Visual BASIC (VB) C, C++ Java etc. .....
The common features of high-level language are: User friendly, since it uses English similar works It is problem oriented. It follows set of rules called syntax. It is translated to MLL by using language processor. .....
High-level language is machine independent problem oriented common language that uses English similar instructions and Mathematical notations for writing instructions. .....
Advantagesof assembly language are:It is easier than machine level language. It uses mnemonic code so program becomes easier. Disadvantagesof assembly language are:Programs are not user friendly. Difficult to understand than high-level language .....
This is second-generation computer programming language alphanumeric codes instead of 0 & 1. The program of assembly language is needed to be translated by an assembler. .....
Advantages of MLL are:Language processor is not required. Program execution is faster. Disadvantagesof MLL are:It is difficult to understand since it uses only 0 & 1. It is very tedious task to write program in MLL. .....
Machine level language is first generation language, which uses binary codes i.e. 0 & 1. It is computers native language so translator is not required. .....
Low level language is machine dependent language which cannot be used in another computer when it is written for one computer. Low level language are of two types. Machine level language (MLL) Assembly language (AL) .....
A programming language is an artificial language that is understood by computer, which is used to write a set of instructions. Types of programming language are: Low level language High level .....
The rules that give meaning to programs are called the semantics of the programming languages. We can say syntax has specific output oriented meaning, which is called .....
Some special features of good programming languages are given below: It should be simple for learning and coding.It should use some natural languages if possible to develop the program.It should be efficient for program development.It should be .....
Program is a set for instruction given to a computer to perform specific task. A program tells the computer what to do. The process of writing a program using a series of instruction code i.e. keyword, in a computer language to perform certain .....
A mechanism of doing or performing job of task in a well suited manner or in a correct way is .....
A set of computer instruction executed in such a manner that after the complete execution of instruction leads to completion a task or job is called a .....
Iteration is one in which a set of computer instructions are executed repeatedly and conditionally that is, the loop statements are driven by the loop condition. Iteration is also called .....
A set of computer instruction which follow one another and are executed unconditionally is called .....
There are three types of logic used by QBASIC. They are Sequence, Selection and .....
Algorithm.Step 1 : StartStep 2 : Read A, BStep 3 : Assign A to X and B to YStep 4 : Divide A by B.Step 5 : Is remainder zero? If yes, go to step 7.Step 6 : Assign A to B and B to remainder. And go to step 4Step 7 : Assign B to HCFStep 8 : Multiply X .....
lgorithmStep 1 : StartStep 2 : Read radius and store to RStep 3 : Assign value of pie to PStep 4 : Find area and circumferenceStep 5 : Display area and circumferenceStep 6 : .....
Two disadvantages of flowchart are:It takes long time to prepare to proper flowchart.Translation of flowchart into program is sometimes .....