Answer:
All of them apply
Explanation:
Green computing is the process of using environmental friendly computers and its associated components, accessories and other supporting devices.
Virtualization helps us to reduce the number of hardware that we are using.
Grid computers helps us to reduce the use of number of machines and thus supporting the environment in a right way.
Recycling process. Any material that we use needs to be recycled effectively and also in an environmental friendly way.
Autonomic computing uses eco-friendly system which in turn hugely support green computing.
In Computer programming, a value type variable can be used to store a: value expression.
<h3>What is a variable?</h3>
A variable can be defined as any name which refers to a location in computer memory that is typically used for storing a value.
<h3>The two types of variable.</h3>
In Computer programming, there are two (2) types of variable and these include:
Generally, a value type variable can be used to store a <u>value expression</u> or a value of that type.
Read more on variable here: brainly.com/question/20264183
Answer:
i think it is c. whatever that is.
Explanation:
because its not any of those. D. is exceptional tho
hope this helps! :)
Answer:
Following are the program in the C++ Programming Language.
//set header file or namespace
#include <iostream>
using namespace std;
//define main function
int main() {
//set integer type array with indexing 10
int a[10];
//set integer type variable to 1
int i=1;
//set element in 1st index
a[0]=17;
//set element in last index
a[9]=29;
//set while loop for the remaining elements
while(i<9)
{
//set -1 in the remaining elements
a[i]=-1;
i++;
}
//set for loop to print array
for ( int j = 0; j < 10; j++ ) {
cout << a[j]<<endl;
}
}
<u>Output:</u>
17
-1
-1
-1
-1
-1
-1
-1
-1
29
Explanation:
In the following program, we define the main function "main()" and inside it.
- Set an integer type array element "a[]" with index value 10.
- Set integer data type variable "i" initialize to 1.
- Set elements in the first and last place in the array.
- Set the while loop to initialize elements for the remaining place.
- Set the for loop to print the array elements.