Dots Per Inch
JPEG (or jpg)
For img tags, the ALT attribute. It's also very important for text readers for the visually impaired.
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.
Answer and Explanation
There are five stages of group development which Alex should follow.
i) Stage 1: Forming-this is where he forms a team which will follow the other stages.
ii)Stage 2: Storming - In this stage is where the members set their goals and boundaries.
iii)Stage 3: Norming- This is where the team comes together in terms of ideas. In this stage members are ready to move forward with big expectations.
iv)Stage 4: Performing.-This is where now the team is now accomplishing or implements their ideas and they are now getting the benefits.In this stage members argue positively.
v)Stage 5: Adjourning-This is the stage where the group has accomplished their mission.And now the group is dissolved