Answer:
New Thing = ("Potato Chip")
Explanation:
Java is a programming language which is used by IT professional for building enterprise applications. The new thing object can be named as potato chip by entering the command statement. The statement must be enclosed in the inverted commas for the application to understand the input.
Answer:
u have to give me more points
Explanation:
sorry
Answer:
C.The Position section of the Insert Rows dialog box
Explanation:
A and B options are part of the steps for adding a completely new table to the document.
D option refers to how many rows will be added to the existing table.
Finally, C is correct, since it selects the <em>relative position</em> to add the new rows, using the currently selected row for reference.
Answer:
"use the span element to create logical areas on a web page that are embedded within paragraphs or other block formatting elements."
Explanation:
- The question is associated with HTML and web pages. As span is a type of function in HTML.
- <span> element is actually a generic in-line tool/container which is used for content phrasing. Its functionality is much like a <div> element but <div> is a block-level element and on the other hand <span> element is in-line element.
- <span> element groups elements for styling purposes, but it does not represents anything inherently.
<u>Answer:</u>
<em>int fNumber,scndNumber = -1, </em>
<em>dup = 0;
</em>
<em>do {
</em>
<em>cin >> fNumber;
</em>
<em>if ( scndNumber == -1) {
</em>
<em>scndNumber = fNumber;
</em>
<em>}
</em>
<em>else {
</em>
<em>if ( scndNumber == fNumber )
</em>
<em>duplicates++;
</em>
<em>else
</em>
<em>scndNumber = fNumber;
</em>
<em>}
</em>
<em>} while(fNumber > 0 ); </em>
<em>cout << dup;
</em>
<u>Explanation:</u>
Here three variables are declared to hold the first number which is used obtain all the inputs given by the user, second number to hold the value of <em>last encountered number and “dup” variable to count the number of duplicate values.</em>
<em>“Do-while”</em> loop help us to get the input check whether it is same as previous input if yes then it <em>adds to the duplicate</em> value otherwise the new previous value if stored.