Answer:
Following are the program in c language
#include <stdio.h> // header file
int main() // main method
{
char name[90]="mantasa"; // storing name
char add[90]="120 lal bangla mumbai"; // storing address
printf("\n Name:%s\nAddress:%s",name,add); // print name and address
return 0;
}
Output:
Name:mantasa
Address:120 lal bangla mumba
Explanation:
In this program we are declaring the two array of char type which will store the name and address . after that we display name and address.
Answer:
education purposes
Explanation:
Education institutes make some programs like School of the Air and College of the Air, forums, and discussion tables, in 1940 the FCC reserved a range of the FM radio spectrum for education purposes.
Although FM was unpopular when the FCC moved the FM bandwidth to a higher set of frequencies, and people and consumer stations had to buy new equipment.
Answer:
3e : 00111110 (62)
3e0 : 0000001111100000 (992)
3e00 : 0011111000000000 (15872)
Explanation:
Converting the given hexadecimal numbers to binary and decimal format:
1) 3e
3-> 0011
e-> 1110
Combining , 3e -> 00111110
This can be converted to decimal by multiplying each 1 in the binary representation by 2^(position -1) and adding the results.
So 3e = 32+16+8+4+2 = 62
2) 3e0
Binary => 0000001111100000
Converting to decimal : 992 [ This is 16 times a]
3) 3e00
Binary => 0011111000000000
Converting to decimal : 15872 [ This is 16 times b]
So adding a 0 to the hex representation multiplies the decimal number by 16.
Answer:
The most direct effect that the internet has had on retail sales is THE DEVELOPMENT OF E-COMMERCE.
E- Commerce refers to the commercial transactions that are conducted via the internet. The advance in technology has makes it possible for the retailers to advertise their products and get across to the consumers via the internet. Buying and selling on the internet is now more preferable to most people than the traditional buying and selling because of its convenience.