The document outlines various topics including stress causal agents, data organization in RDBMS, differences between interests and abilities, types of motivation, and distinctions between tuples and attributes in a table. It also covers SMART goals, computer virus infection methods, file management, primary and foreign keys, numeric data types, DML commands, and precautions for cleaning computer components. Additionally, it provides SQL commands for querying teacher information from a database.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
4 views2 pages
PA3 Important Questions
The document outlines various topics including stress causal agents, data organization in RDBMS, differences between interests and abilities, types of motivation, and distinctions between tuples and attributes in a table. It also covers SMART goals, computer virus infection methods, file management, primary and foreign keys, numeric data types, DML commands, and precautions for cleaning computer components. Additionally, it provides SQL commands for querying teacher information from a database.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2
1. Name the stress causal agents.
Ans: 1.MENTAL, 2.PHYSICAL, 3.SOCIAL, 4.FINANCIAL.
2. How is data organized in a RDBMS? Ans: The Relational Database Management System (RDBMS) organizes the data into tables. In tables vertical lines are called fields and horizontal lines are called records. 3. Difference between Interests and Abilities. Ans: Interests: Things that you like to do in your free time that make you happy. Things you are curious about or would do even if no one asked you to do it. Abilities: An acquired or natural capacity. Enable you to perform a particular job or task with considerable proficiency 4. Write the different types of motivation and explain. Ans: Internal Motivation: LOVE We do things because they make us happy, healthy and feel good. External Motivation: REWARD We do things because they give us respect, recognition and appreciation. 5. Differentiate between Tuples and Attributes of a table. Ans: A row also called a Record or Tuple represents a single, data item in a table. Whereas A column is a set of data values of a particular simple type, one for each row of the table. 6. In SMART goals, what does ‘S’ stand for? Explain. Ans: Specific Measurable Achievable Realistic Time bound 7. Mention a few ways in which a computer gets infected with a virus. Ans: Infected files Infected pen drives Infected CD-ROMs/DVD-ROMs Through infected file attachment of emails 8. What is the difference between moving and copying a folder? When you copy a file or a folder, a duplicate of the original file or folder is created at the new location, the original remains as it is. When you move a file or a folder, the original file or folder is moved to the new location. 9. State the relationship and difference between a primary and foreign key? Primary Key: A primary key generally focuses on the uniqueness of the table. It assures the value in the specific column is unique. Table allows only one primary key. Foreign Key: A foreign key is generally used to build a relationship between the two tables. Tables can allow more than one foreign key. 10. List datatypes available in Numeric Datatype? Ans: INTEGER, BIGINT, DECIMA , NUMERIC , NUMBER , and MONEY. 11. Name DML commands. Ans: Insert, Update, Delete 12. Write any two precautions to be taken while cleaning the computer components. Ans: Two precautions to be taken while cleaning the computer components are: 1. Always Power Off the computer system before cleaning. 2. Never spray cleaning fluid directly on the component of the computer 13. Differentiate between Forms and Reports. Ans: Form gathers information for essentially one record of the database. That is, information about one person or object. On the other hand, Reports can represent information, gathered from more than one file. 14. In how many ways tables can be created in Base?
Ans: Tables can be created in two ways.
1. In Design view 2. Using Wizard 15. TEACHERS
NUMBER NAME AGE SUBJECT DATE OF JOIN SALARY GENDER
1 RAHUL 34 COMPUTER 10/1/2019 13000 M
2 ADAM 31 MATHS 24/03/2019 40000 M
3 SONA 35 SCIENCE 12/12/2019 15000 F
4 RINKU 40 MATHS 1/7/2020 20000 F
5 VEENA 33 COMPUTER 27/06/2021 21000 F
Write SQL commands:
a. To show all the information computer teachers.
b. To list the details of all the teachers who are getting salary between 15000 to 25000. c. To display the subject of all the teachers whose age is more than 35 years. d. To display the list of names of all the teachers in alphabetical order. Ans: a) select * from teachers where subject=’computer’; b) select * from teachers where salary >20000 & salary<35000; c) select * from teachers where age>35; d) select name from teachers order by name;