Skip to main content

Posts

Showing posts from 2018

COMPUTER GENERAL KNOWLEDGE QUESTIONS

1) Father of Computer is Charles Babbage 2) Father of Internet is Vint Cref 3) In the development of Computer Von Neumen shared his experience. 4) World's First Electronic Computer 'ENIAC' 5) First computer developed in India is 'Siddharth' 6) World's first computerized Post Office is in Delhi 7) India's Sillicon Valley is in Banglore 8) Computer Language founded by Sun Microsystem is 'JAVA' 9) Computer language which accepts Hindi Command is 'Pradesh' 10) Nick Name of IBM is Blue Bird 11) FORTRAN is the first ever computer language which was developed for programming. 12) IBM 1401 was the computer in which first time Transistor was used in place of Vacuum Tube . 13) Digital Equipment Corporation(DEC) staretd to manufacture the Mini Computers . 14) Integrated Circuit (IC) was developed by J. S Kilbi 15) The ascending order of a data hierarchy is– bite, byte, record, field, file, database 16) The blinking symbol on t...

My Profile....

Mr. Shravan Kumar (IT Engineer) " Success is not final; failure is not fatal: It is the courage to continue that counts." It's pleasure to say that IT field is improving day by day and minute by minute. Today, Everything controlled and managed by computer. Businesses and companies use a computer to do marketing and business planning, they use a computer to record customer data, they use a computer to manage goods and services etc. Computer with an internet connection is really important for businesses and individuals. You can understand and analyze the importance of computer by seeing a revolution in offline and online business, online education, online business, online communication and internet banking. To store, access, manipulate, calculate, analyze data and information we use hardware devices and software application. Schools and colleges around the world are using computer and internet technologies to teach students digitally and creatively with...

QBASIC STATEMENTS CLASS-VI

CONTROL STATEMENT-    The Control Statements are used for controlling the Execution of the program. We use control statements by two way 1) Unconditionally & 2) Conditionally GOTO STATEMENT- Unconditionally, we use GOTO statement. The Goto Statement is used for transferring the control to the other location for example- if you wants to transfer the control to the other place of the program then we can use the goto statement. When we use goto Statement then we have to supply a name along with a Goto Statement on which Control is transferred. The Name is user choice and Name must be defined with the help of a Colon. When Compiler transfers the Control of program to the Goto statement then statements of Goto block will be Executed and The Name of Goto Statements block is also called as the Label Name. GOTO statement uses line number or label Here, We will understand by an example CLS 1 PRINT " MY NAME IS  AMIT " :GOTO ABC 2 PRINT " I LI...

STRING HANDLING IN QBASIC CLASS VII

String in QBASIC is used to store string values.  In previous chapter we have learnt to store and work with numeric values. In this lesson we will learn to manipulate string / alphanumeric values. As we know that for storing string value in memory, we need to declare the variable as string. For declaring variable as string we use $ sign infront of variable name. Example n$="Raja"  Here, we have declared the variable with name n and for declaring it as string we put $ sign with it. Always remember that string value always enclosed in double quote. As we seen in the example, we have provided the value Raja.

QBASIC ARRAY & GRAPHICS CLASS VIII

ARRAY in QBASIC  is used to store sequential values of same kind.We can use array instead of using number of separate variables. Using different variables to store values will makes our program lengthy and complicated. So, in such cases QBASIC provides us facility to store values of same type. So, Basically there are two types of array in QBASIC: 1) SINGLE DIMENSIONAL ARRAY 2) DOUBLE / TWO DIMENSIONAL ARRAY  SINGLE DIMENSIONAL ARRAY Declaration:-                        We use DIM keyword to declare array. Syntax: DIM  (number of items). Example:- DIM A(10) The above will open 10 dimensions in memory to store 10 numbers. i.e.    1              2           3           4           5      ...