Explanation:
ICT permeates all aspects of life, providing newer, better, and quicker ways for people to interact, network, seek help, gain access to information, and learn. Besides its presence everywhere, Information and Communication Technology has an immense economic significance.
Answer:
// here is code in c++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main() {
// variables to read birth month and year
int birthMonth,birthYear;
cout<<"Enter the birth month:";
// read the birth month
cin>>birthMonth;
cout<<"Enter the birth Year:";
// read the birth year
cin>>birthYear;
// print the output
cout<<birthMonth<<"-"<<birthYear<<endl;
return 0;
}
Explanation:
Declare two variables "birthMonth" and "birthYear". Read the value of birthMonth and birthYear from user. Then print the birth month and birth year and a dash(-) in between them.
Output:
Enter the birth month:1
Enter the birth Year:2000
1-2000
Enter the birth month:5
Enter the birth Year:1950
5-1950
Answer:
It uses simple words and symbols to communicate the design of a program.
Explanation:
Information technology is the umbrella term for a collection of processes that can be used to collect, arrange, organize, store, alter, and transfer data.
Technology: What Is It?
Technology is the systematic and repeatable body of scientific to achieve practical objectives. The result of such an effort is sometimes known as technology. The use of tech is pervasive in many areas, including daily life, science, industry, communication, and transportation. Both real things like the machines or the utensils and intangible tools like software are considered technologies. Computer technology (IT) is indeed the practice of creating, processing, storing, retrieving, and exchanging various types of data and information using computers. Technology used for information and communications includes IT.
To know more about Technology
brainly.com/question/7788080
#SPJ4