Answer:
A. flowcharts
Explanation:
Flowcharts are used to graphically describes a process or system. They can simulate the whole process step by step showing arrows between different steps.
Answer:
High level programming language
Explanation:
There are two groups of programming software:
1. High level programing: Here you can program using almost natural languaje and making complex instructions on a simpler way. The advantages is faster programming and the ability to do complex programs. In this example we can use languages like C/C++, visualbasic.
2. Low level programming: This type of programing is near to machine language (binary - '0' and '1'), and usually is used to obtain full performance of the processor. But requires a high level of expertise from the programmer and is complex to write simple task, like "store a variable". Example: Assembler languague.
Answer
users vote on the relevance of the source which affects whether it will a appear in future searches
Explanation
A search process is is an activity which is carried out by a person to search a certain information from the web pages through a website. It has various aspects which include the selected information is sent to the data base of the search engine which is to be indexed, automated websites builds lists of keywords and the pages containing the searched words are located.
Line 1 System.out.print("*"); //
Line 2 System.out.println(); //
Line 3 System.out.println("*"); //
Line 4 The code segment is intended to produce the following output, but may not work as intended. ** *
Which line of code, if any, causes an error?
Answer:
Lines 1 and 3
Explanation:
For line 1, without putting the asterisk in single or double quote marks, the compiler will assume that the asterisk is the multiplication sign. This causes the error since no numbers are being multiplied. If an argument (in this case the asterisk) is passed into the print function, given that it is not a method, string or character, in most cases, the compiler assumes it is an arithmetic operation
For line 3, to print an empty space, you can use System.out.println(' ') or System.out.println(" "). Writing line 3 the way you did gives an error because nothing was passed in the print argument, so the compiler will not be able to identify what you are trying to print.