Autonomic computing???????????????????????????????
Answer:
2p
Explanation:
if she had p, then she got p again, she got two p amounts. p+p = p*2 = 2p
Answer:
c. float the both asides and the main content to the left.
Explanation:
The float CSS property decides the positioning of an element in its container, the float CSS property allows you to put block-level elements beside each other instead of on top of each other. The float: left; property allows you to float the element to the left of its container.
Answer:
- def three_largest_numbers(num_list):
- sort_list = num_list
- sort_list.sort(reverse=True)
- return sort_list[0:3]
-
- print(three_largest_numbers([5, 7, 1, 8, 9, 3, 6]))
Explanation:
Firstly, we declare a function that will take one input list, num_list (Line 1). To avoid modifying the original num_list, we create a copy of num_list and assign it to a new list, sort_list (Line 2) in the function. Next, we use Python list sort function to sort the list in descending order (Line 3). At last, return the first three elements of the sort_list as output (Line 4).
We test the function using a sample list (Line 6) and we shall get [9, 8, 7] printed in terminal.
Answer:
A) Data:
The raw facts and the figure is known as data. It is collected from different types of sources for different kinds of purposes. Data is stored in the form of information that is used by the computer system.
For example: data is collected by the research paper and e-mail is also the example of data.
B) Field:
Field is defines as the character and the group of characters in the form of alphabets and in numeric form which contain specific meaning. A field is use to define various components and storing the data in the system.
C) Record:
A set of one and more than one field which logically describe the particular information or data within the same domain is known as record. A set of various records is constitute as file. It is also refers to the unique field information.
D) File:
A collection of various records is known as file. Files are used in the computer system for storing various types of data and information.
For example: A file contain the records of the students.