Answer:B. Are used to create, organize, and manage databases
Explanation: Database management system (DBMS) is a computer software which is used to collect, analyse or evaluate and retrieve data from a database. It is essential to the flow of businesses or other activities of an organisation.
Examples of database management system softwares MICROSOFT ACCESS,FOXPRO,ORACLE etc all this are effective as it helps to manipulate the data structure,field names,the file formats etc.
Answer:
hmmm well what is your magager?? every job will ask you what you can do.
Answer:
1. The home tab
2. Font group
3. The small arrow at the bottom right of the font command group.
4. On "Font" heading (then "All text" subheading)
Explanation:
The following explanation will help Su in accomplishing her task.
1. Go to the home tab;
2. From the home tab, Su will have access to various command groups but in her case, she needs the Font command group.
3. There's a small arrow located at the bottom left of the font command group section; clicking on this arrow will open the font dialogue.
4. On the font dialogue, there are two headings. The "font" heading and the "character spacing" heading.
In her case, she needs the "Font" heading. The font heading also has various subheadings. To access the underline colour option, she needs the "All text" subheading.
See attachment for picture guide.
Answer:
> we8thereRatings[1:5,]
Food Service Value Atmosphere Overall
1 5 5 5 5 5
2 5 5 5 5 5
5 5 5 4 4 5
11 5 5 5 5 5
12 5 5 5 4 5
Answer:
The output of the given code as follows:
Output:
Area is: 12.60676
Explanation:
In the given code some information is missing so, the correct code to this question can be described as follows:
Program:
public class Test //defining class
{
public static void main(String[] args)//defining the main method
{
double radius= 2; //defining double variable radius
final double PI= 3.15169; //defining double variable PI
double area = radius * radius * PI; //defining double variable area that calculates values
System.out.println("Area is: " + area); //print values
}
}
Explanation:
- In the given java code a class "Test" is defined, in which a double variable "radius" is defined, which holds a value, that is 2.
- In the next step, a double constant variable, that is PI is defined, that holds a value, that is "3.15169".
- Then another double variable area is defined, that calculates the area value, and prints its value.