Answer:
public static void printDottedLine()
{
System.out.println(".....");
}
Explanation:
The above written code is in JAVA and it is the method definition of the method mentioned in the question.Since the method returns nothing hence it's return type is void and it does not have any arguments hence there is nothing written in the parenthesis.In JAVA System.out.println is used for standard output and trminates them by newline.
Answer: A. Record Macro dialog box.
Explanation:
Answer:
Prolog program are used in the artificial intelligence and the web development in a systematic manner process. As, it is also sometimes known as declarative language which basically consist of some facts and list. Prolog program are divided into the sections that are:
- Domain sections
- Clauses sections
- Predicates sections
- Goal sections
We need each section of the prolog program because all the sections introduced the systematic program and performed there particular functions so by using all these processing steps an efficient function are formed.
Windows, icons, menus, and pointers does a graphical user interface (GUI) interact with a desktop or laptop computer.
- Windows, icons, menus, and pointers
<u>Explanation:</u>
Graphics user interface (gui) made a big resolution on desktop or laptop or tablet or workstation industries. In olden days till 1994 still, people were using the black and white computer where a desktop consists of keyboard and printer and monitors where display color white and black.
If we open a picture it will display only in black and white so games are in black and white mode. After windows 3.1 we have seen color picture and mouse interface is used. Since technology developed and interface in GUI is also developed improved in windows icon menu and mouse pointer.
As technology developed we going back to a dark mode such as black and white mode.
Answer:
Option (A) int expressions are always computed exactly; but float expressions can suffer round-off error.
Explanation:
Round - Off Error can be defined as the digital computers have limitations on denoting the decimal numbers, due to this the floating point numbers have to be rounded off or even it is represented exactly after the calculation on the numbers the resulting number has to be adjusted / rounded off according to the specified precision. The resulted number has to be rounded off back to the required precision, this leads to the round off errors in digital computers. As integers don't need to go through the rounding off in computers, the integer numbers don't have round off errors, only floating point numbers have round off errors. So, options (B) , (C) and (D) are false.