Answer:
You are creating an array "values" which stores 15 integers. And if we will write int[15]=20, we are not following correct syntax. Hence, nothing will happen, and it might however, throw an error that the syntax is wrong.
Explanation:
int[15]=20 is a wrong syntax, and hence nothing will happen or computer might throw an error like that not correct syntax is being used. And if we write values[15]=20, It will certainly throw ArrayIndexOutOfBoundsException as the maximum length is fixed to 15 and values[14] and not more than that.
Answer:
Home Tab, Paragraph Group and Multilevel Icon.
Explanation:
The Tab on the Ribbon is Home, and the group is Paragraph. And there you will find the Multilevel Icon. Just select the one from it that suits you.
And for increasing the indentation to one more level Press Tab
For Outdenting, press, Shift+ tab
For adding an item at any indentation level, go to the last word, and press enter. And to opt-out of that indentation level, press enters two times.
Now transfer the insertion point to the last of the last most item in the number list, and then enter (press). and then press Del. or you can hit Enter and finally tap on the Numbering button, which you can find in the same tab( home) within the Paragraph group, and from there you can put off the number formatting.
Answer:
All the members within a class are by default are private. Private function in a class can access public function within a similar class. Private member formed the implementation of the class and also form the private interface of members within the class.
All the member of class can be access by function inside the class when it is declare as private.
For example:
class test
{
private:
int a; // when test:a is private
public:
test() : a() // a is accessible in test class
}
B. Lossy compression algorithms are typically better than lossless compression algorithms at reducing the number of bits needed to represent a piece of data.