Answer:
Computer-programming languages are like English, French, and German in that they follow set rules and patterns.
Computers understand binary machine language.
Programming languages like BASIC were developed for the convenience of programmers.
Explanation:
Answer:I would try downloading a beat app and making a song,then posting
Explanation:
Answer and Explanation:
Difference between EIRGP and RIP :
- RIP stands for routing information protocol whereas EIRGP stands for enhanced IGRP, IGRP is interior gateway routing protocol
- EGRIP is more based on the link where as RIP is more based on routing
- There is also references in their working operation.
- Differences in updates and refreshing.
Answer:
// here is code in c.
#include <stdio.h>
// main function
int main()
{
// variable to store year
int year;
printf("enter year:");
// read the year
scanf("%d",&year);
// if year>=2101
if(year>=2101)
{
printf("Distant future");
}
//if year in 2001-2100
else if(year>=2001&&year<=2100)
{
printf("21st century");
}
//if year in 19011-2000
else if(year>=1901&&year<=2000)
{
printf("20th century");
}
// if year<=1900
else if(year<=1900)
{
printf("Long ago");
}
return 0;
}
Explanation:
Read the year from user.After this, check if year is greater or equal to 2101 then print "Distant future".If year is in between 2001-2100 then print "21st century".If year is in between 1901-2000 then print "20th century".Else if year is less or equal to 1900 then print "Long ago".
Output:
enter year:2018
21st century