write a paragraph about ICT?

Answers

Answer 1

Answer:

ICT (information and communications technology or technologies) is an umbrella term. It includes any communication device or application, such as radio, television, cellular phones, computer and internet, satellite systems and so on. Videoconferencing and distance learning is a very important part of ICT.


Related Questions

I need the answer to life. I cant live without my POGCHAMPS!

Answers

Answer:

Pray to God and ask him for help in life. May God bless you

Explanation:

Answer:

Pog

Explanation:

Poggers

Choose the word that matches each definition.
1 - ISP
2 - HTTP
3 -URL

Answers

Answer:

1 - Internet Service Provider

2 - Hypertext Transfer Protocol

3 - Uniform Resource Locator

Explanation:

Question # 4
Multiple Choice
How do you stop a program that is stuck in an infinite loop?

Press the Alt key together with the Q key.

Press the Control key together with the C key.

Press the Control key together with the Q key.

Press the Alt key together with the C key.

Answers

Answer:Control +c

Explanation:yes

Answer: Press the Control key together with the C key.

Explanation: Correct on Edg 2020/2021.

if you put your tik down below I'll tell them to follow

Answers

Answer:

oreo._.thecat7

Explanation:

...................

Answer

I dont have a acc !

Exp

bc i dont like that app a lot

Question # 3
Fill in the Blank
What is the output?
answer = "Hi mom"
print(answer.lower())

Answers

what not understanding

the output is mom, hope this helped p

25 POINTS. Which three features are related to the functions of a continuous rotation servo motor?
A. The command signal sets the direction and speed of rotation.
B. It can change the shaft's movement from circular to forward or backward motion.
C. It is commonly used for radar navigation on robots.
D. The motor can turn either clockwise or counterclockwise with no limits.
E. There are barriers in the design that prevent rotation beyond a half circle.

Answers

I think A I’m not too sure though! Try looking it up cause I’m not sure about my answer

alexa it is olewi.............................................

Answers

Answer:

jvksvksdvkbvkjsdkcn

Explanation:

Huh.........whattttt

4.8 Code Practice: Question 2

Answers

Answer:

for y in range(88, 43, -4):

   print(y, end=" ")

Explanation;

yw

can anyone help with this?​

Answers

The correct answer is Use hanging indents in the second line

Explanation:

One of the recommendations in the works cited page like the one presented is to use hanging indents. This implies the second, third, etc. line of a citation should be indented, while the first line is not indented. This is required by the MLA (Modern Language Association) because it makes citation to be easy to read. According to this, to improve the sample, hanging indents need to be included in the second line of the first and third citation.

Arrange the numbers 4, 8, 2, 6, 3, 5, 0, 1 into ascending order using the Merge sort algorithm

Answers

Answer:

1 2 3 4 5 6 you are missing seven the 8

Explanation:

Which of the following is an example of a tax?

cash payment,medicare,rental payment,line of credit

Answers

Medicare because it’s like insurance

Identify the type of data for each value below.
12.023
"Hello World
52

Answers

12.023 is float

"Hello World" is string

52 is int

Your teacher is nice. She/He has given it in the order.

The type of data for 12.023 is a float, "Hello World is a string, and 52 is a int.

What are the type of data?

The  type of data in computer science can be given as the data values that helps in the analysis of the type of operation that is to be performed. The data types in python are given as classes.

The type of data type is:

The point numbers are given as floating. Hence, 12.023 is a float.

The text form is given as string or str data type. Hence, "Hello World is a string.

The whole numbers positive or negative are given as integers or int. Hence, 52 is a int.

Learn more about data type, here:

https://brainly.com/question/22574321

#SPJ2

What is the advantage of using the Publish Online option for sharing a calendar? It creates a web version that can be viewed by anyone. It allows an employee's boss to see busy/free information. It allows a user inside an organization to view the calendar. It allows a user outside an organization to view the calendar.

Answers

Answer:

its D. it allows a user outside an organization to view the calendar.

Explanation:

i just got it right on edge 2020.

Answer:

B

Explanation:

Dropdown
Choose the correct data type.

type(3) tells you the type is___

type("35") tells you the type__

type(3.5) tells you the type__

Answers

type(3) is int

type("35") is string

type(3.5) is float

Following is the correct data type that one get after giving the following commands”

type(3) is int

type("35") is string

type(3.5) is float

What is the data type?

In any of the computer science and computer programming worlds, a data type is considered for the possible value set and it allows what kind of operation one has to do on it. A variable's basic data type is the classification that specifies the type of value it has.

Most of the time, the data type is used for programming, so don't be concerned about the type of mathematical relations and logical operations that can be applied.

There are basically five types of data types divided on the basis of most modern computer languages. They are integral, floating-point, character, character string, and composite types

Learn more about data type from here:

https://brainly.com/question/14581918

#SPJ2

//TO-DO: Fill in the Authors Name Here//TO-DO: Fill in the current date here//CS1428 Lab//Lab 10//Description: this program will find letter grades from 5 number grades#include using namespace std;double getAverage(double g[], const int SIZE){ double total = 0; for(int i = 0; i < SIZE; i++) { total += g[i]; } return total / SIZE;}void getGrades(double g[], const int SIZE){ cout << "Please enter 5 grades:" << endl; for(int i = 0; i < SIZE; i++) { cin >> g[i]; }}// TODO: Complete function definitionsint main(){ const int SIZE = 5; double grades[SIZE], average; int numberOfAs = 0, numberOfBs = 0, numberOfCs = 0, numberOfDs = 0, numberOfFs = 0; //TODO: Add function calls return 0;}

Answers

Answer:

countLetterGrades:

void countLetterGrades(double grades[], const int SIZE, int &numberOfAs,int &numberOfBs,int &numberOfCs,int &numberOfDs,int &numberOfFs) {

for(int i = 0; i < SIZE; i++){

if(grades[i]>85){numberOfAs++;}

else if(grades[i]>75){numberOfBs++;}

else if(grades[i]>65){numberOfCs++;}

else if(grades[i]>55){numberOfDs++;}

else{ numberOfFs++;}

}

}

printData:

void printData(double average, int numberOfAs,int numberOfBs,int numberOfCs,int numberOfDs,int numberOfFs)

{

cout<<"Average: "<<average<<endl;

cout<<"Number of A's: "<<numberOfAs<<endl;

cout<<"Number of B's: "<<numberOfBs<<endl;

cout<<"Number of C's: "<<numberOfCs<<endl;

cout<<"Number of D's: "<<numberOfDs<<endl;

cout<<"Number of F's: "<<numberOfFs<<endl;  

}

Explanation:

Your question is poorly formatted. (See attachment for proper presentation of question)

------------------------------------------------------------------------------------------------------------

The first step is to go to the main function and replace

//TODO: Add function calls

with the following 4 lines of code:

getGrades(grades,SIZE);

average = getAverage(grades,SIZE);

countLetterGrades(grades, SIZE, numberOfAs,numberOfBs,numberOfCs,numberOfDs,numberOfFs);

printData(average, numberOfAs,numberOfBs,numberOfCs,numberOfDs,numberOfFs);

------------------------------------------------------------------------------------------------------------

1. getGrades(grades,SIZE);

This calls the getGrade functions; The getGrade function is where the user inputs 5 grades for a student

2. average = getAverage(grades,SIZE);

Next, is to get the average of the input grades. This is done using the above and the average is stored in variable average

3. countLetterGrades(grades, SIZE, numberOfAs,numberOfBs,numberOfCs,numberOfDs,numberOfFs);

Next, is to get letter grade of each number grade. This is done using countLetterGrades function.

4. printData(average, numberOfAs,numberOfBs,numberOfCs,numberOfDs,numberOfFs);

The above 3 functions populate data for average, numberofAs to numberofFs; This values are passed to printData function to to display program output.

------------------------------------------------------------------------------------------------------------

Next complete countLetterGrades and printData functions as seen in the answer section.

For clarity, see the attached cpp file for line by line explanation of the complete code

Write a program that reads two integers, checks if a digit repeats 3 times in a row in the first integer and that same digit repeats two times in a row in the second integer.

Answers

Answer:

first_num = input("Enter integer digits (should be four or more digits): ")

sec_num = input("Enter integer digits (should be four or more digits): ")

num = '3'

if

def count_check( digit):

   if (digit * 3) in first_num and (digit * 2) in sec_num:

       print(True)

   else:

       print(False)

count_check(num)

Explanation:

The python source code above receives two values assigned to variables "first_num" and "sec_num" and defines a function called count_check to check if a digit occurs three consecutive times in the first input and two in the second to print a value of true or false otherwise.

Do you think the fact that the cyclist has raised nearly half a billion dollars for a cancer foundation makes what he did any less immoral? Should his sponsors have considered this fact before pulling their contracts with him? Explain your answers.

Answers

Answer:

1. No, I do not think that the fact that the cyclist raised nearly half a billion dollars for a cancer foundation made what he did less immoral.

2. No. The sponsors were right in not considering this fact before pulling their contracts with him.

(Find the Explanations below)

Explanation:

Lance Armstrong is a Cyclist who suffered cancer at the young age of twenty. He survived the ordeal and went ahead to form a foundation known as the Livestrong Foundation which helped cancer patients obtain medical help. He was accused of doping by the United States Anti-doping agency. This led to the withdrawal of sponsorships by several organizations.

1. The fact that the cyclist fought a good cause by raising millions of dollars to fight cancer, does not make what he did any less immoral because it was his fame and the supposed integrity that he possessed that first attracted the recognition and sponsorships to him. Engaging in an illegal act to win his games and stay on top was morally wrong and it corrupted the trust that was placed in him. His career as a cyclist was the base that gave him his voice.

2. The sponsors should not have considered the fact that he raised a lot of money for the cancer cause because the wrong act of engaging in doping was morally wrong, and if the spnsors remained with him, it would be as if they supported this act. Not withdrawing their sponsorships, would also tarnish the image of the organizations.

Which function is used to add a range of cells? =SUM =AVERAGE =MAX =ADD

Answers

Answer:

=SUM

Explanation:

The function used to add a range of cells is =SUM. Thus, option A is correct.

What is a function in excel?

Functions are pre-written formulas that carry out calculations by utilising unique values, referred to as inputs, in a given order, or layout. Calculations of any complex variable can be carried out using functions. the purpose for which a human, thing, or both are created, expressly designed, or employed.

Values are added by the SUM function. Users can include specific values, cell references, specific ranges, or a combination of all three. F

Excel's AutoSum feature makes summing up several items in an quick and simple manner. The Alt+= button makes using the AutoSum command much quicker. It can be found on the Homepage or Formulas tabs.

Therefore, option A is the correct option.

Learn more about Functions , here:

https://brainly.com/question/21145944

#SPJ6

Instructions
Write a program that will add up the series of numbers: 99, 98, 97… 3, 2, 1. The program should print the running total as well as the total at the end. The program should use one for loop, the range() function and one print() command.

Sample Run
99

197

294

390







4940

4944

4947

4949

4950

Answers

total = 0

for x in range(99, 0, -1):

   total += x

   print(total)

I hope this helps!

Identify way computer are used in television production​

Answers

Answer:

image editing, text om screen, weather graphics, animation, sattelites ... a lot more possibilites are endless just limited

(Java) Meadowdale Dairy Farm sells organic brown eggs to local customers. It charges $3.25 for a dozen eggs, or 45 cents for individual eggs that are not part of a dozen. Write a program that prompts a user for the number of eggs in the order and then display the amount owed with a full explanation using the following wording: You ordered 27 eggs. That’s 2 dozen at $3.25 per dozen and 3 loose eggs at 45 cents each for a total of $7.85.

import java.util.Scanner;
class Eggs {
public static void main(String[] args) {
// Write your code here

}
}​

Answers

import java.util.Scanner;

public class Eggs {

   

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.println("How many eggs?");

       int eggs = scan.nextInt();

       int dozens = eggs / 12, ind = eggs - (dozens*12);

       

       System.out.println("You ordered "+eggs+" eggs. That's "+dozens+" at $3.25 per dozen and "+ind+" loose eggs at 45 cents each for a total of $"+((dozens*3.25)+(ind*0.45))+".");

   }

   

}

I hope this helps!

In this exercise we have to use the knowledge of the JAVA language to write the code, so we have to:

The code is in the attached photo.

So to make it easier the JAVA code can be found at:

import java.util.Scanner;

public class Eggs {

  public static void main(String[] args) {

      Scanner scan = new Scanner(System.in);

      System.out.println("How many eggs?");

      int eggs = scan.nextInt();

      int dozens = eggs / 12, ind = eggs - (dozens*12);

System.out.println("You ordered "+eggs+" eggs. That's "+dozens+" at $3.25 per dozen and "+ind+" loose eggs at 45 cents each for a total of $"+((dozens*3.25)+(ind*0.45))+".");

  }

}

See more about JAVA at brainly.com/question/2266606

Write the line of code to calculate the area of a circle with radius 3 and store it in a variable called
area.

Answers

Answer:

area = 2.14 * 3 ** 2

Explanation:

No clue what language you use but this should be pretty universal. To find the area of a circle you use pi(r) ^ 2 or pi times radius squared

[tex]\pi r^{2}[/tex]

In python it looks like this:

>>> area = 3.14 * 3 ** 2

>>> print(area)

28.26 <Printed text

What number will be output by the console.log command on line 5?
A. 10
B. 11
C. 12
D. 13
E. 16

Answers

Answer:

E

Explanation:

If you follow the line of code and add 1, 2, and then 3, 10 + 1 + 2 + 3 = 16.

The output of the block of code will be 16 as the value of the variable is assigned a new value based on the number added to it on each line.

The initial value of the variable oop is 10

On the next line, 1 is added to oop and the resulting value is reassigned to the same variable, the new value of oop is 11

On the next line, 2 is added to oop and the resulting value is reassigned to oop, the new value of oop becomes 13

Variable oop is then increased by 3 ; making the value become (13 + 3) = 16

Therefore, the output of the command is 16.

Learn more :https://brainly.com/question/18505492

What is the purpose of the introduction in an expository essay? A. to introduce the author and his or her dedication B. to highlight the main points of the essay C. to describe the supporting details D. to provide a figurative interpretation of the essay

Answers

I think it’s B, sorry if I’m wrong with this >

What is used to give credit to the source from which information is obtained?
a citation
linkage
plagiarism
a format

Answers

a citation gives credit to the source

Answer:

a citation

Explanation:

Which act passed by the US government in 1998 criminalizes the production and distribution of technology that intends to evade anti-piracy laws?

Answers

The Computer Fraud and Abuse Act I believe. Sorry if I’m wrong and I hope that it helps :)

Answer:

Digital Millennium Copyright Act (DMCA)

Explanation:

i got it right on plato

SOMEONE PLEASE HELP ME WITH THIS !!!!

Answers

I feel it is C, but I am not sure if it is correct, I can only apologize if it is wrong.

True or False? You should never move an injured person.
True
False

Answers

Answer:

true

Explanation:

Use of the Internet for e-government has increased. Identify the benefits by checking all of the boxes that apply.
A. It keeps the public informed about events
B. People do not have to vote
C. People can pay bills
D. People do not have to visit the site
E. The government can share important information about issues with the people in that town.

Answers

It’s A my good guy have a great day

Answer:

the answer is A C and E

Explanation:

2.4 Code Practice: Question 1
Write the code to input a number and print the square root. Use the absolute value function to make sure that if the user enters a negative number, the program does not crash. How do I do this in python ???

Answers

Code in Python:

num = float(input("Enter any number : "))

ab = abs(num)

sqrt = float(ab ** 0.5)

print(sqrt)

The code to input a number and print the square root is,

import math

# Input a number from the user

number = float(input("Enter a number: "))

# Use the absolute value function to handle negative numbers

abs_number = abs(number)

# Calculate the square root using the math module

sqrt_number = math.sqrt(abs_number)

# Print the square root

print(f"The square root of {number} is {sqrt_number}")

Given that,

Write the code to input a number and print the square root.

Now, A code snippet in Python that accomplishes what you described:

import math

# Input a number from the user

number = float(input("Enter a number: "))

# Use the absolute value function to handle negative numbers

abs_number = abs(number)

# Calculate the square root using the math module

sqrt_number = math.sqrt(abs_number)

# Print the square root

print(f"The square root of {number} is {sqrt_number}")

In this code, the abs() function ensures that even if the user enters a negative number, it will be converted to its positive equivalent before calculating the square root.

The math.sqrt() function is used to compute the square root, and the result is printed using the print() function.

To learn more about Function visit:

https://brainly.com/question/11624077

#SPJ6

Other Questions
Would someone mind helping me? I really need this answer but I'm so confused. I would appreciate any help :) and if you get the answer right, ill give you brainliest. thank you. and its not A. Write a note to your roommate stating what he/she has to do for chores this week. Write two (2) complete sentences in Spanish, to tell him/her what he/she has to do. Remember to use the vocabulary words from this lesson/course only. Use the following suggestions as a guide for your answer:In one complete sentence in Spanish, tell him/her two of her daily chores inside the house and on what day/s he/she does them. Remember to use the t form of the verb tener + que + infinitive. (e.g., Clarisa, on Friday, you have to vacuum and mop the floor.)In one complete sentence in Spanish, tell him/her two daily chores outside the house and on what day/s he/she has to do them. Remember to use the t form of the verb tener + que + infinitive. (e.g., Clarisa, on Saturday, you have to take the trash out and cut the grass.) Evaluate each value expression for the given value of x: 22-x/5 , x=20 7) A moving object is rolling on a surface that is 5 m off the ground. The object is moving at a constant speed of 4 m/s. If the object is 3.2 kg, what is the final energy of the ball after rolling for 10 m, assuming friction is negligible?156.8 J 131.2 J 182.4 J25.6 J8) A spreadsheet application is used to create a computational model of the energy experienced by a pendulum. How do the energy values of the pendulum relate?The sum of the potential energy and the kinetic energy is always constant.The sum of the potential energy and the kinetic energy is always 0.The potential energy is always greater than the kinetic energy.The kinetic energy is always equal to the potential energy. A state university is interested in where its students come from. They survey 300 of its students to find out if they are in-state, out-of-state, or foreign students. Match the vocabulary word with its corresponding example.All students at the universityThe proportion of the 300 surveyed students who are in-state studentsThe list of the 300 answers to the survey questionThe answer in-state out-of-state or foreignThe 300 students who were surveyedThe proportion of all students from this university who are in-state studentspopulationStatisticDataVariableSampleParameter 20 points and brainliest. POLICE OFFICER'S REPORT. THERE WAS ANOTHER ACCIDENT AT THE CORNER OF SMITH AND WESTON. THE ACCIDENT HAPPENED AT 3; 15.PM BETWEEN A CAR AND A TAXI. THERE WERE NOT INJURIES. WITNESSES SAY THAT THE DRIVER OF THE CAR DIDN'T STOP AT THE STOP SIGN. HE WAS ON HIS CELLPHONE. SUGGESTION PUT TRAFFIC LIGTH AT THE CROSSING JEFF BROWN WITNESS REPORT NAME POLLY WILSON I WAS INSIDE MY STORE. I HEARD A NOISE, AND I LOOKED OUT THE WINDOW. THE CAR WENT ON THE SIDEWALK AND HIT THE NEWSTAND. I WAS A FRAID THAT THERE WERE INJURIES IN THE CRASH, AND I AM GLAD THAT NO ONE WAS HURT. POLLY WILSON. ANSWERS THE QUESTIONS ABOUT THE READING TRANSLATE THE READING IN SPANISH QUESTIONS DID THE CAR STOP AT THE STOP SIGN? WHAT DID THE CAR HIT? WERE THERE ANY INJURIES? HOW DID THE CAR DRIVER FEEL? WHY? HOW MANY ACCIDENTS HAPPENED AT THE CORNER THIS WEEK? WHY WAS THE TAXI DRIVER ANGRY? Please help!Nika baked three loaves of zucchini bread. Each loaf needed StartFraction 17 over 4 EndFraction cups of flour. Which expression shows the best estimate of the number of cups of flour that Nika used? 4 + 4 + 4 = 12 5 + 5 + 5 = 15 4 + 4 + 4 = 16 17 + 17 + 17 = 51 How are hurricanes and thunderstorms similar? Both form when warm air rises, then cools quickly to form clouds. Both involve the formation of large cumulonimbus clouds. Both cover an area as large as 650 km. Explain how to determine the number of variables and constraints in a transshipment problem when the only number of sources, transshipment, and destinations are known. i need help asap...... need help please hurry Read the excerpt from "A Modest Proposal." A very worthy person, a true lover of his country, and whose virtues I highly esteem, was lately pleased, in discoursing on this matter, to offer a refinement upon my scheme. He said, that many gentlemen of this kingdom, having of late destroyed their deer, he conceived that the want of venison might be well supply'd by the bodies of young lads and maidens, not exceeding fourteen years of age, nor under twelve; so great a number of both sexes in every country being now ready to starve for want of work and service. Which statement best describes Swifts use of rhetorical devices in this excerpt? Swift uses a false premise when he says that people of the kingdom are in want of venison. Swift uses irony when he says so great a number of both sexes are in desperate need of work and service. Swift uses irony when he says the person with whom he discussed his plan is very worthy and a true lover of this country. Swift uses a false premise when he says the gentlemen of the kingdom have destroyed their deer. 40 POINTS!!As part of an adventure challenge, you find yourself dropped into a unknown place. There are birds and wolves. The air iscold, and the ground is very hard. What biome have you landed in? How did the burial of a wealthy person differ from that ofan enslaved person? Choose two answers. SOMEONE PLZ ANSWER Which of the following statements is true:ALongitude lines go up to 90 degrees.BThe Prime Meridian is located in Washington, D.C.CThere are 100 minutes per degree.DLongitude lines go up to 180 degrees. WILL MARK BRAINIEST IF RIGHT(AMC8, 2008) In square ABCE, A F = 2FE and CD = 2DE. What is the ratio of the area BDF to the area of square ABCE? A. 1/6 B. 2/9 C. 5/18 D. 1/3 E. 7/20 You want to buy a new TV the has a regular price of $450. It is on sale for 20% off.What is the amount of discount? $95.40What is the sale price? Which of the following statements are reasons for why we get electrical energy from abattery. Select all that apply. Determine which of the values is a solution of 14>222z. My options are 2, 5, 7, 3, -4, 0