Answer:
A. Database Management System
Explanation:
A Database Management System or DBMS is a set of programs that allow the DB administrator to the information extraction, storage and modification out of a database. It also provides tools to add, erase, modify or even analyze the data within the DB. Some examples of DBMS are MySQL, mongo DB, Ms SQL Server, etc.
Answer:
The answer is C. 85
Explanation:
The int() function is usually used to turn a float, to an int<em>.</em> When you use the int() function, it just cuts of everything past the decimal. It doesn't round the float. Leaving you with the option C. 85
hope this helped you :D
Venn diagrams are used to depict set intersections (denoted by an upside-down letter U)......
All threats can include computer viruses, Trojan horse program, worms, exploit scripts and toolkit.
<span />
Answer:
Following are the expression in the Java language
public class Main
{
public static void main(String[] args) // Main method
{
boolean young= true; // variable declaration
boolean famous= true;// variable declaration
if(young && famous) // check the condition
System.out.println("You must be rich " );// display message
}
}
Output:
You must be rich
Explanation:
Following are the description of the above statement
- Declared a variable "young " of the boolean type that is initialized with the "true" value.
- Declared a variable "famous " of the boolean type that is initialized with the "true" value.
- Check the condition of if() block.If the condition is true then it executed the condition inside the if block.
- Finally ,print the message "You must be rich!"