It is True
Hope it helps
Answer: b.no
Explanation: upgrading to android 11 will caused some lags for devices maybe dont upgrade is good to prevent lags
A. blog.
B. newsgroup.
C. chat room.
D. e-mail list.
A. blog.
B. newsgroup.
C. chat room.
D. e-mail list.
An online journal or diary you create to share your thoughts, opinions and personal news is referred to
as a blog. The answer is letter A.
Answer:
uncompressed audio formats, such as WAV,AOFF AU, or raw header- less PCM;
Formats with lossless compression, such as FLAC Monkey's Audio extension.
Answer:
The outputs of the code is
2
0
2
Explanation:
First, I'll arrange the code line by line. While arranging the code, I'll make some corrections
#include <iostream>
using namespace std;
void doSomething();
int main(){
int x = 2;
cout << x <<endl;
doSomething(x);
cout << x << endl;
return 0;
}
void doSomething(int &num)
{
num = 0;
cout << num << endl;
}
At line 6, the value of x which is 2 is printed and the line is terminated to prevent printing of value on the same line. So, the next print statement will start on the next line.
At line 7, the function doSomething () is called.
This statement will execute the instructions in the doSomething () function and print value 0. This line is also terminated.
At line 8, the value of x is printed which is also 2
b. name
c. keyword
d. identifier
A variable's data types describes the kind of values that can be held by the variable.
A variable is a container for storing value . A variable is a memory location where you store a value.
A variable can be used to store different data types.
Data types includes strings, integers, float and many more.
The data types describes the kind of value that can be held by the variable.
For example, string datatypes holds text and the float datatypes holds decimal numbers.
Therefore, the variable's data types describes the kind of values that can be held by the variable.
learn more variables here:brainly.com/question/13378513
#SPJ2