Answer:
Option A is the correct choice answer for the above question.
Explanation:
The programming concept says that every function returns some value. If the return value is not defined by the user then the function returns the garbage value otherwise it returns the defined value by the user.
The return value is defined by the user with the help of the "return" statement and with the help of the following syntax-
return value; // The return statement.
Hence the option A is right because it satisfies the above concept while the other is not because--
- Option B states that it must be longer than one line which is not correct.
- Option C states that it cannot be longer than one line but this line does not make any sense about the returned statement.
- Option D states that it describes the parameter value which is the wrong definition about the returned statement.
Answer:
The correct answer is:
Option 1: export the query results from the database to a spreadsheet, then export the graph to a document.
Explanation:
Spreadsheets are used to represent numerical data, perform calculations and display the results numerically or graphically.
When using a database, the query results can be exported to other software using the query web address.
So in order to include the graph in her report, Serena will export the result to spreadsheet and then export the graph to document.
Hence,
The correct answer is:
Option 1: export the query results from the database to a spreadsheet, then export the graph to a document.
Nested elements are elements that are placed within another element.
When an element is nested within another, all lines of the nested element will <em>inherit </em>the <em>properties </em>of the parent element.
Take for instance, the following HTML code
<em><p align = "center"> I am a <b>boy</b> </p></em>
In the above HTML code,
The bold element (i.e. <b>) is nested in the paragraph element (i.e. <p>)
The paragraph element is aligned center.
This means that, all elements in the paragraph element (including the <em>bold element</em>) will be centralized.
Hence, all lines of a nested element will <em>inherit </em>the properties of the parent element.
Read more about nested elements at:
brainly.com/question/22914599
Hi Brainiac
The severity of a burn or shock is not dependent on the location or the distance from source
I hope that's help:0
Answer:
Option B is the correct answer.
Explanation:
- In the above code, the loop will execute only one time because the loop condition is false and it is the Do-While loop and the property of the Do-while loop is to execute on a single time if the loop condition is false.
- Then the statement "x*=20;" will execute one and gives the result 200 for x variable because this statement means "x=x*20".
- SO the 200 is the answer for the X variable which is described above and it is stated from option B. Hence it is the correct option while the other is not because--
- Option A states that the value is 10 but the value is 200.
- Option C states that this is an infinite loop but the loop is executed one time.
- Option D states that the loop will not be executed but the loop is executed one time