Saturday, February 3, 2024

60 Very Short Questions DBMS - 2 Marks - SEE COMPUTER SCIENCE 2080





 1.      Which data type is suitable to store photographs of students in MS-Access? OLE Object

2.      Which data type is used to store date of birth of an employee in MS-Access? Date/Time

3.      Which data type is suitable to store salary of an employee in MS-Access? Currency

4.      Which data type is used to store your school fee in MS-Access? Currency

5.      Which data type is used to store lengthy text and numbers? Memo (Long Text)

6.      What is the storage size of memo and text data type in MS- Access? Memo – 65535 / 64000 Characters / Text – 255 Characters

7.      What is the storage size of Auto number and currency data type? Auto number – 4 Bytes / Currency 8 Bytes

8.      What is the storage size of Date/Time and OLE object data type? Date/Time – 8 bytes / OLE Object 1 GB

9.      What is the storage size of integer and long integer number data type? Integer – 2 Bytes / Long integer –4 Bytes

10.   What is the storage size of single and double number data type? Single – 4 Bytes / Double – 8 Bytes

11.   What is the storage size of yes/no field and hyperlink data type? Yes/no – 1 bit / Hyperlink – 2048 Characters

12.   What is the storage size of attachments data type. 2GB

13.   Which data type is the default type in MS Access? - Text

14.   What is the maximum length of field name in MS-Access? 64 Characters

15.   What is the maximum size of caption field properties in MS-Access? – 2048 Characters

16.   What is the default size of number field in MS-Access? – Long Integer

17.   Which field property gives alternative name for any field? Caption

18.   Is table a database? No,  A table is an object inside a database

19.   Write any three components of database? Table, record and field

20.   What is a record source for a report in MS Access? Table and Query

21.   How many ways to sort data in MS-Access? Ascending or Descending order according to text or numbers

22.   Which object is used to store the data in database? Table

23.   What is the extension of MS-Access 2007? 2003 version - .mdb , 2007 version - .accdb

24.   What is the primary building block of a database? Table

25.   What terms are used to refer to a row and a column in a table? Row – Tuple/Record, Column – Attribute/Field

26.   Which object of DBMS is used to print information? Report

27.   Which object of MS Access is used to provide graphical interface to enter data into a table? Form

28.   Which data type of MS Access is used for data that can store only one of two possible values? Yes/No

29.   Which data type displays data from another table? Lookup Wizard

30.   Which data type provides a link “address” to a document? Hyperlink

31.   Which object of MS-Access is used to retrieve data from the table? Query

32.   Which key sets relationship between tables? Primary key

33.   Which query is used to view the data stored in database? Select query

34.   Which view is used to modify a table structure in MS-Access? Design view

35.   Which query is used to make changes in data stored in database? Action query

36.   Which view is used to modify a record in MS-Access? Datasheet view

37.   Which data type is also known as logical data type in MS-Access? Yes/No

38.   What is the purpose of a query in a database? To ask question to the database.

39.   Which data type is used to store alpha numeric characters or special symbols in MS-Access? Text

40.   Which field property speeds up searching and sorting of records based on a field? Indexed Field Property

41.   Write two examples of primary key fields.  SEE Registration Number,  National Identity Number

42.   What happens while we enter text in number data type? It display error message.

43.   What is relationship? An association or connection between two tables based on a common field or fields.

44.   Which field property controls the value of a record and sets in a specific format? Input Mask

45.   Which field property is used to specify whether a value is required in a field or not? Required

46.   Which field property displays value automatically for a field when new record is added to a table? Default Value

47.   In how many ways we can create a table in Ms Access?

48.   In how many ways we can create a form in Ms Access?

49.   In how many ways we can create a report in Ms Access?

50.   In how many ways we can create a query in Ms Access?

51.   List the types of query.

52.   List the types of action query.

53.   Write any four objects of MS-Access.

54.   Write any four data types used in  MS-Access.

55.   Write any four field properties used in MS-Access.

56.   Write any four examples of database.

57.   Write any four examples of DBMS

58.   Write any four examples of RDBMS.

59.   Define database.

60.   Define DBMS.

50 Very Short Questions Fundamentals - 2 Marks - SEE COMPUTER SCIENCE 2080



50 Very Short Questions Fundamentals 2 Marks - SEE COMPUTER SCIENCE 2080


 1.       What is communication?

2.       What is analog signal?

3.       What is web server?

4.       What is mail server?

5.       What is topology?

6.       What is bandwidth?

7.       What is internet?

8.       What is E-mail?

9.       What is web browser?

10.   Define IP address.

11.   What is search engine?

12.   What is social media?

13.   What is network protocol?

14.   What is Ecommerce?

15.   What is digital currency?

16.   What is digital citizenship?

17.   What is digital signature?

18.   What is Cloud computing?

19.   What is cyber-crime?

20.   What is cyber law?

21.   What is cyber bullying?

22.   What is key logger?

23.   Define computer security.

24.   What is hardware security?

25.   What is Software security?

26.   What is information security?

27.   What is switch in network connecting device?

28.   What is the business done through the internet called?

29.   Give some examples of cyber law

30.   In which communication media data transfer is the fastest?

31.   List out any two applications of internet

32.   Where does intranet has been used?

33.   Write any two benefits of cloud computing.

34.   Mention any two services provided by internet.

35.   Write the name of any two search engines.

36.   Which device is used to connect PC with telephone line?

37.   What is the vision of IT Policy of Nepal 2072?

38.   Name any two modes of electronic payment.

39.   Why switch is also known as smart hub?

40.   Write two examples of bounded media

41.   Write any two examples of full duplex modes of data transmission

42.   List some areas where Al can help us.

43.   Why do you connect your PC to the UPS?

44.   Give reason in short that "Computer network reduces the cost of operation."

45.   What is communication media?

46.   What is a digital footprint?

47.   What is a backup?

48.   What is Online Payment?

49.   What is IoT?

50.   What are the types of cloud computing services?

Friday, February 2, 2024

WRITE A QBASIC PROGRAM WHICH WILL RETURN THE UNIQUE DIGIT INTEGERS BETWEEN 100 AND 120.

 WRITE A QBASIC PROGRAM WHICH WILL RETURN THE UNIQUE DIGIT INTEGERS BETWEEN 100 AND 120

CLS

FOR I = 100 TO 120

    A = I MOD 10

    B = (I \ 10) MOD 10

    C = I \ 100

    IF A <> B AND A <> C AND B <> C THEN PRINT I,

NEXT I

END