Answer:
import
Explanation:
the <em>import </em>keyword is used to import external modules into a python script.
Answer:
public class ANot {
public static void main(String[] args) {
int numberOfSides = 20;
boolean isQuadrilateral;
if(numberOfSides==4){
isQuadrilateral = true;
System.out.println("The triangle is quadrilateral");
}
else{
isQuadrilateral=false;
System.out.println("The triangle is not quadrilateral");
}
}
}
Explanation:
- Create and Initilize the int variable numberOfSides (You can also receive this from a user using the scanner class for example).
- create a boolean variable isQuadrilateral
- Use if and else statement to check if numberOfSides ==4 and assign true to isQuadrilateral else assign false
Answer:
Localization is the process of adapting the project and service at a particular language.
Explanation:
Localization is that adapted to the product and service that need a desired to the popular look and feel.
Localization is to perform that including changing the local culture.
Localization is addition to perform the such details and time zone ,local color, holiday and name translation, money all to be considered.
Localization can sometimes be perform with automatic language translation.
Localization that requirement to the enabling product to be different national product known as globalization.
Answer:
False
Explanation:
A Domain Based Security. "Domain Based Security", abbreviated to "DBSy", is a model-based approach that is being used in analyzing information security risks in a business context and offers an apparent, understandable and direct mapping among the risks and the security controls needed to handle them.
While A security domain is the list of items a subject is permitted to access. More largely defined, domains are collections of subjects and objects with related security requirements.
I would say none of the above as A, B, and C do not seem like sensible answers.