Answer:
Page Setup Grouping.
Explanation:
In Microsoft Word, Columns break up the page into, at max, 13 columns, and at minumum, 2. The way you go about doing this is
- Go to the Layout Tab
- Go to the Page setup Grouping
- Click on the Columns Action
- In the Dialog Box, choose either from one of the presents, or custom make your own column settings.
- Click Okay
- Done!
The electric field points outward
Rapid prototyping as it allows the production of a functional program in a short time
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.
Answer:
All four questions are explained below :
Explanation:
- The types of programming language are: Procedural Programming Language, Functional Programming Language
, Object-oriented Programming Language, Scripting Programming Language,Logic Programming Language. For example: C, C++, Java, FORTRAN, PHP language etc.
- Imperative language means code is executed line by line, in sequence. And declarative language means that the program itself specifies what next is to be done not how it is done.
- One line of 2nd generation is equivalent to one line of object code.
- One line of 3rd generation is equivalent to many lines of object code.