Skip to main content

Posts

Showing posts from July, 2020

Free Download QBasic for Windows

QBasic for Windows XP, 7, 8, 10 QBasic Software Link : Click Here Step 1 - Open the File by using Winrar Application Step 2 - Extract the folder  Step 3 - Open the folder of QBasic DOSBOX Step 4 - Click on the icon to install the software

Requirement for Internet Connection | Internet Basics | Class 10 CBSE | Computer Application

The Requirements for internet connection Computer System A computer with a good CPU speed is the prime requirement to access the Internet. This can be a normal desktop, or a laptop. This computer will act as the client or the workstation. Today's websites are a mix of text, sound and images so the contents of the websites might be heavy. Hence, more the speed of the CPU better will be the performance of Internet access. The computer should have at least 1 GB of RAM. The higher the size of the RAM, the better is the speed of your computer. The computer should have at least 1 GB of free hard disk space. But this must not be a problem because most of today's computers come with at least 500 GB hard disk space. Besides the above, a sound system with a microphone, speakers and devices like a printer, scanner, etc. are desirable but not compulsory. Modem A modem is a device that converts the analog signals to digital signals and the digital signals to analog signals. It h

Bit by Bit | Chapter 3 Working with Queries, Forms and Reports | Class 8 CBSE | Computer Application

Working with Queries, Forms and Reports Exercise Solution A. Tick the correct option – 1. (d) Datasheet View 2. (c) Three 3. (c) Four 4. (b) Datasheet View 5. (d) Filter 6. (b) Create B. Fill in the blanks – 1. Query 2. Form 3. Objects 4. Design 5. Report 6. Result C. State True or False – 1. T 2. F 3. T 4. T 5. F 6. T D. Answer the following questions – 1. What is Query? A query is a method of getting answers to questions on data. It is used to retrieve selective data satisfying specific criteria. 2. Differentiate between Form and Report. Forms allow you to add and update data in a table, one record at a time, while reports are an effective way to present data in printed format. You can customize the appearance of tabular data on a report. 3. How can you specify multiple conditions while designing a query? Specifying the condition in the Criteria row for more than one field will result in a query that will select only those records

Q & A Chapter 2 | Python | Class 10 CBSE | Computer Application

Python Q & A Chapter 2 A. Tick the correct option – 1. (c) Boolean 2. (d) Level 3. (a) Built-in 4. (c) both (a) and (b) 5. (b) control B. Very Short Answer Type Questions – 1. What is control variable? The variable which controls the flow of execution of the program is called control variable. These control variables are used in Decision Making statements or Looping statements. 2. What do you mean by Flow of Control? A computer always executes a program sequentially. It starts execution from the first statement and ends at the last statement. This order of execution of statements is called Flow of Control. 3. How many types of loops are there in Python? There are two types of loops in python, For loop and While loop. 4. In how many ways you can call range() in Python? The range() function can be called by three ways. The range() function can be used with three arguments depending on the need of the programmer. 5. Write the syntax of For loop. for <

Introduction to Internet | Internet Basics | Class 10 CBSE | Computer Application

Introduction What is Internet? It is a network of networks or rather, a collection of interconnected networks, publicly accessible from around the world. Internet provides a lot of services like the World Wide Web (WWW), e-mail, online chat, search engines and much more. This chapter elaborates the concepts related to the Internet and WWW. Internet and Its Components Internet is a worldwide collection of publicly accessible interconnected computer network. It is actually a network of networks. It may consist of millions of smaller domestic business, academics, organisation and government networks. Each of these smaller networks might connect hundreds or thousands of computers. Information and services such as electronic mail, online chat, file transfer, and most importantly the resources of the World Wide Web (www) are facilities provided by the Internet.  These computers on dissimilar networks communicate on the Internet using a common language or set of rules called proto

Bit by Bit | Chapter 5 Looping Statements in QB64 | Class 7 CBSE | Computer Application

Solved Question and Answer of Bit by Bit Chapter 5 Looping Statement in QB64 A. Tick the correct option – 1. (a) LET 2. (c) FOR … NEXT 3. (a) FOR 4. (a) FOR 5. (b) DO UNTIL … LOOP 6. (d) GOSUB B. Fill in the blanks – 1. Loop 2. For Next 3. Counter 4. Outer 5. DO WHILE …. LOOP 6. FOR, DO C. State True or False – 1. F 2. F 3. F 4. T 5. T 6. F D. Answer the following questions 1. What is Loop? Name the looping statements used in QB64. A loop is used to repeat a block of statement or statements. FOR … NEXT, WHILE … WEND and DO … LOOP are three looping statements in QB64. 2. What is the use of step value in a FOR … NEXT loop? By default the NEXT statement increases the value of the control variable by 1, but we can increase or decrease the value as per our choice using STEP statement. 3. What is the difference between DO WHILE … LOOP and DO UNTIL … LOOP? The DO WHILE … LOOP is executed as long as the specified condition is TRUE wh

Project in python

Source code lslno=[] lname=[] leng=[] lhnd=[] lmth=[] lsci=[] lsst=[] ltot=[] lper=[] lgrad=[] val=1 def calculategrade(): str="y" while str=="y": slno=int(input("Enter the Sl. No.: ")) lslno.append(slno) name=input("Enter the Name: ") lname.append(name) print("Please enter the marks of the subjects") eng=int(input("English: ")) leng.append(eng) hnd=int(input("Hindi: ")) lhnd.append(hnd) mth=int(input("Maths: ")) lmth.append(mth) sci=int(input("Science: ")) lsci.append(sci) sst=int(input("Sst: ")) lsst.append(sst) total=eng+hnd+mth+sci+sst ltot.append(total) per=(total/500)*100 lper.append(per) if per>=60: lgrad.append("A") elif per>=45 and per<60: lgrad.append("B") elif per>=30 and per<45: lgrad.append("C") else: lgrad.append("Fail") str=input("Do you want to co