Answer:
Git is a collaborative software used by members of a group to share and work on the same projects. Github is a web application that uses git to link people working together on a codebase. With git and Github, opensource projects can be accessed and collaborated on by volunteers.
Explanation:
Opensource development is a collaborative group of developers working together on a software or platform with a general public license. When working on an opensource project, each developer is able to folk or get a copy of the repository downloaded to a local computer which they can work on and push or update to the actual online repository if the condition for a change is met.
 
        
             
        
        
        
Answer:Analog component signals are comprised of three signals, analog R′G′B′ or YPbPr. Referred to as 480i (since there are typically 480 active scan lines per frame and they are interlaced), the frame rate is usually 29.97 Hz (30/1.001) for compatibility with (M) NTSC timing.
Explanation:
 
        
             
        
        
        
Answer:
[inaudible]
Explanation:
TranscribeMe is an online transcription company. It employs people all over the world to render transcription services to clients. They have a style guideline which must be strictly adhered to by the transcribers. The guidelines specifically states the "do's " and "dont's" during transcription. Now, when transcribing a word or phrase that cannot be heard or understood due to poor audio or difficult answer, the transcriber uses the tag [inaudible].
 
        
             
        
        
        
Answer:
#include <iostream>
using namespace std;
int main() {
    int a[4][5];//declaring a matrix of 4 rows and 5 columns.
    for(int i=0;i<4;i++)
    {
        for(int j=0;j<5;j++)
        {
            if(i==3)//initializing last row as 0.
            {
                a[i][j]=0;
            }
            else//initializing last row as 1.
            {
                a[i][j]=1;
            }
        }
    }
    for(int i=0;i<4;i++)
    {
        for(int j=0;j<5;j++)
        cout<<a[i][j]<<" ";//printing the matrix.
        cout<<endl;
    }
 return 0;
}
Output:-
1 1 1 1 1  
1 1 1 1 1  
1 1 1 1 1  
0 0 0 0 0 
Explanation:
I have created a matrix of size 4 rows and 5 columns.I have used for loops to fill the array.To fill the last row with 0 i have used if statement.else we are filling it with 1.