Answer:
goku comes in and turns super sayain  naruto come in with kurama and naruto get goku with a rasagen and geku is still fist fightin while naruto is using his kurama and turns into kurama and knocks out goku now naruto thinks he won and goku IS HITIN HIM WITH A KAMEKAMEHA GOKU IS SIROUS NOW
Explanation:
 
        
                    
             
        
        
        
Answer:
b. foreign key
Explanation:
In the database world, a foreign key is a field on one table and a primary key for another table. The purpose of a foreign key is to provide linkages between two or more tables. Given two tables A and B, and making A the point of reference, a primary key is a field that is unique in A while a foreign key is unique in B. 
On another hand, a composite primary key is a combination of two or more fields/columns on database table that can be used to uniquely identify each row in the table.
In the database lingua, what we have is a unique key not a distinct key, though the two words are similar in meaning.
A duplicate key is used when an information may be repeatedly entered on a table.
So the correct option is a foreign key.
 
        
             
        
        
        
Answer: Program for bit stuffing in C
#include<stdio.h>
       int main()
     {     
           int i=0,count=0;
           char data[50];
           printf("Enter the Bits: ");
           scanf("%s",data);            //entering the bits ie. 0,1  
           printf("Data Bits Before Bit Stuffing:%s",databits);
           printf("\nData Bits After Bit stuffing :");
           for(i=0; i<strlen(data); i++)
               {
               if(data[i]=='1')
                      count++;
               else
                      count=0;
                 printf("%c",data[i]);
              if(count==4)
                 {
                           printf("0");
                           count=0;
                  }
              }
     return 0;
  }
Explanation:
bit stuffing is the insertion of non-information bits during transmission of frames between sender and receiver. In the above program we are stuffing 0 bit after 4 consecutive 1's. So to count the number of 1's we have used a count variable. We have used a char array to store the data bits . We use a for loop to iterate through the data bits to stuff a 0 after 4 consecutive 1's.