what is information communication technology?

Answers

Answer 1

Answer:

Information and Communication Technologies is a broader term for Information Technology, which refers to all communication technologies, including the internet, wireless networks, cell phones, computers, software, video-conferencing, social networking.


Related Questions

Develop a sorting algorithm. Your sorting algorithm may only be an implementation of a the shellsort, mergesort, or quicksort. Your algorithm must use an array of integers of at least 20 different items.

Answers

Answer:

Explanation:

The following function is created in Python and uses a mergesort algorithm implementation in order to sort a given array of integers which is passed as an argument. Once complete it returns the sorted array. This can then be printed in the main method as seen in the attached picture below.

def BrainlySort(arr):

   if len(arr) > 1:

       mid = len(arr) // 2 #First find the middle of the array

       # Divide the array into two sections

       left = arr[:mid]

       right = arr[mid:]

       #Sort each section seperately

       BrainlySort(left)

       BrainlySort(right)

       i = j = k = 0

       # Copy data to temp arrays left[] and right[]

       while i < len(left) and j < len(right):

           if left[i] < right[j]:

               arr[k] = left[i]

               i += 1

           else:

               arr[k] = right[j]

               j += 1

           k += 1

       #Make sure no elements are left in the array

       while i < len(left):

           arr[k] = left[i]

           i += 1

           k += 1

       while j < len(right):

           arr[k] = right[j]

           j += 1

           k += 1

what are the importance of computer in today's generation​

Answers

Answer:

We use it everyday for all sorts of stuff

Explanation:

Consider a collection C of subsets of a nite set V . (V; C) is called a hypergraph. A hypergraph (V; C) is 3-regular if every subset in C contains exactly three elements. A subcollection M of C is matching if all subsets in M are disjoint. Show that there exists a polynomial-time 3-approximation for the maximum matching problem in 3-regular hypergraphs as follows: Given a 3-regular hypergraph, find a matching with maximum cardinality.

Answers

Explanation:

polynomial-time 3-approximation for the maximum matching problem in 3-regular hypergraphs as follows: Given a 3-regular hypergraph, find a matching with maximum cardinality.

How can you refer to additional information while giving a presentation? will help you emphasize key points on a specific slide. The Notes section is only to you in the Slide view and not in the main Slide Show view.

Answers

Explanation:

1. welcome your audience and introduce yourself.

2. capture their attention

3. identify your number one goal or topic of presentation.

4. give a quick shout out line of your presentation.

5.

candidates should identify at least three different types of information in any one presentation from text, drawing, images, tables, video ,audio .

What type of software is used to create letters and papers? ​

Answers

Answer:a paper that haven’t been use

Explanation:

Write function d2x() that takes as input a nonnegative integer n (in the standard decimal representation) and an integer x between 2 and 9 and returns a string of digits that represents the base-x representation of n.

Answers

Answer:

The function in Python is as follows:

def d2x(d, x):

   if d > 1 and x>1 and x<=9:

       output = ""

       while (d > 0):

           output+= str(d % x)

           d = int(d / x)

       output = output[::-1]

       return output

   else:

       return "Number/Base is out of range"

Explanation:

This defines the function

def d2x(d, x):

This checks if base and range are within range i.e. d must be positive and x between 2 and 9 (inclusive)

   if d >= 1 and x>1 and x<=9:

This initializes the output string

       output = ""

This loop is repeated until d is 0

       while (d > 0):

This gets the remainder of d/x and saves the result in output

           output+= str(d % x)

This gets the quotient of d/x

           d = int(d / x) ----- The loop ends here

This reverses the output string

       output = output[::-1]

This returns the output string

       return output

The else statement if d or x is out of range

   else:

       return "Number/Base is out of range"

how do you record your own video game Music and post Them on yt

Answers

Answer:I would try downloading a beat app and making a song,then posting

Explanation:

You should use another electronic and record it from their

WHY THE HECK IS BRAINLY SHOWING UNSKIPPABLE ADS!?

I was looking for an answer on brainly and it told me to see an ad. When I clicked on it and waited for the ad to end, it didn't let me skip to the answer. In fact, I doesn't let me through AT ALL. Please fix this.

Answers

I don’t know why you have that

• > Four 240-pin DDR3 SDRAM DIMM sockets arranged in two channels • > Support for DDR3 1600+ MHz, DDR3 1333 MHz, and DDR3 1066 MHz DIMMs • > Support for non-ECC memory • > Support for up to 16 GB of system memory 1. Of the given features, which one(s) would be applicable to this computer? (Select all that apply.)

Answers

Answer:

The memory used in this system does not perform checking error.

Explanation:

Non ECC memory is referred to  the non error checking. In this configuration the computer is able to perform assigned tasks quickly but is unable to perform checking errors. The memory supports 16GB system and the 1333 MHz is the speed of the memory.

Write an assembly code to implement the y=(x1+x2)*(x3+x4) expression on 2-address machine, and then display the value of y on the screen. Assume that the values of the variables are known. Hence, do not worry about their values in your code.
The assembly instructions that are available in this machine are the following:
Load b, a Load the value of a to b
Add b, a Add the value of a to the value of b and place the result in b
Subt b, a Subtract the value of a from the value of b and place the result in b
Mult b, a Multiply the values found in a and b and place the result in b
Store b, a Store the value of a in b.
Output a Display the value of a on the screen
Halt Stop the program
Note that a or b could be either a register or a variable. Moreover, you can use the temporary registers R1 & R2 in your instructions to prevent changing the values of the variables (x1,x2,x3,x4) in the expression.
In accordance with programming language practice, computing the expression should not change the values of its operand.

Answers

mbly code to implement the y=(x1+x2)*(x3+x4) expression on 2-address machine, and then display the value of y on the screen. Assume that the values of the variables are known. Hence, do not worry about their values in your code.

The assembly instructions that are available in this machine are the following:

Load b, a Load the value of a to b

Add b, a Add the value of a to the value of b and pla

help me guys plssssss​

Answers

Answer     The answer is

                                   

                           So hope this was helpful

Explanation:

hardware and costs of adding two levels of hardware RAID. Compare their features as well. Determine which current operating systems support which RAID levels. Create a chart that lists the features, costs, and operating systems supported.

Answers

Explanation:

1. Redundant batch of Inexpensive Drives (or Disks) (RAID) is a term for data storage schemes that divide and/or replicate data amid multiple hard drives.

2. RAID can be designed to provide increased data accuracy or increased Input/Output performance

Hardware RAID exists as a customized processing system, utilizing various controllers or RAID cards to control the RAID design independently from the OS. Software RAID utilizes the processing capacity of that computer's operating system in which the RAID disks exists installed.

What are the two types of RAID?

We have two kinds of RAID implementation through. Hardware and Software. Both these implementation contains its own benefits and drawbacks.

Software RAID does not count any cost for a RAID controller and exists fairly effortless to estimate the cost of as you exist only buying additional drives. All of our usual dedicated servers come with at least two drives, indicating there exists NO cost for software RAID 1, and stands positively suggested.  It exists positively suggested that drives in a RAID array be of the exact type and size. With RAID 0 or RAID 1, you'd require at least two drives, so you would require to buy one additional drive in most cases. With RAID 5 you'll require at least three drives, so two additional drives, and with RAID 6 or 10 you'd require at least four total drives. To earn additional implementation, redundancy, or disk space, you can count more disks to the collections as well.

To learn more about two types of RAID

https://brainly.com/question/19340038

#SPJ2

2. What is software conflict?

Answers

Answer:

A problem that occurs when two programs cannot run in the same computer at the same time. It is generally due to a programming bug and typically manifests when two programs compete for the same resource (memory, peripheral device, register, etc.).

Hope it helps out!

Explanation:

Which of these statements regarding mobile games is true?

A.
They are typically played indoors.
B.
They have detailed environments.
C.
Their levels can be completed quickly.
D.
They are typically played for several hours at a time.
E.
They are played on large screens.

Answers

i have a feelings it’s the one that’s about playing for long lengths of time

Answer:

C. The levels can be completed quickly

#PlatoLivesMatter

Explanation:

Arrays of structures ________. Group of answer choices None of the above. are automatically passed by reference cannot be passed by reference are automatically passed by value

Answers

Answer:

are automatically passed by reference.

Explanation:

A parameter can be defined as a value that can be passed to a function. Thus, a parameter refers to a value that must be passed into a function, subroutine or procedure when it is called.

This value can be passed to a function either by reference or by value.

This ultimately implies that, parameter variable stores information which is passed from the location of the method call directly to the method that is called by the program.

Basically, parameters can serve as a model for a function; when used as an input, such as for passing a value to a function and when used as an output, such as for retrieving a value from the same function.

In Computer programming, an array can be defined as data structure which comprises of a fixed-size collection of variables each typically holding a piece of data and belonging to the same data type such as strings or integers.

This ultimately implies that, when a programmer wishes to store a group of related data (elements) of the same type, he or she should use an array.

A character positions in arrays start counting with the number 0 not 1.

Hence, an array uses a zero-based indexing and as such the numbering or position of the characters (elements) starts from number 0. Thus, the first character (element) in an array occupies position zero (0), the second number one (1), the third number two (2) and so on.

Generally, arrays of structures are automatically passed by reference through the use of a REPLICATE function.

What is the default join type? inner self join left outer right outer

Answers

Answer: inner

Explanation: on edg

Answer:

inner

Explanation:

just did it on Edg

With the addition of electric cars, we have a need to create a subclass of our Car class. In this exercise, we are going to create the Electric Car subclass so that we can override the miles per gallon calculation since electric cars don’t use gallons of gas.
The Car class is complete, but you need to complete the ElectricCar class as outlined in the starter code with comments.
Once complete, use the CarTester to create both a Car and ElectricCar object and test these per the instructions in the CarTester class.
Classes
public class CarTester
{
public static void main(String[] args)
{
// Create a Car object
// Print out the model
// Print out the MPG
// Print the object
// Create an ElectricCar object
// Print out the model
// Print out the MPG
// Print the object
}
}
////////////////////////////
public class ElectricCar extends Car {
// Complete the constructor
public ElectricCar(String model){
}
// Override the getMPG here.
// It should return: "Electric cars do not calculate MPG.
// Override the toString() here.
// (model) is an electric car.
}
//////////////////////////////////
public class Car {
//This code is complete
private String model;
private String mpg;
public Car(String model, String mpg){
this.model = model;
this.mpg = mpg;
}
public String getModel(){
return model;
}
public String getMPG(){
return mpg;
}
public String toString(){
return model + " gets " + mpg + " mpg.";
}
}

Answers


Hey will you please help me with my essay and I’ll get back to yours please ASAP//

Please help me with Excel!!! A lot of points!

Write a formula that does the following:

Adds all of the Monthly Expenses.
Multiplies the result by 12.
Then adds all of the Yearly Expenses to the product of Steps 1 and 2.
Divides this new sum by 12 (your numerator should be completely in parentheses).

Answers

Answer:

=((SUM(PUT RANGE OF MOTHLY EXPENSES HERE)*12)+SUM(PUT RANGE OF YEARLY EXPENSES HERE))/12

Explanation:

Adds all of the Monthly Expenses : SUM(PUT RANGE OF MOTHLY EXPENSES HERE)

Multiplies the result by 12: *12

Then adds all of the Yearly Expenses to the product of Steps 1 and 2 : SUM(PUT RANGE OF YEARLY EXPENSES HERE)

Divides this new sum by 12: /12

=((SUM(PUT RANGE OF MOTHLY EXPENSES HERE)*12)+SUM(PUT RANGE OF YEARLY EXPENSES HERE)/12)

An OpenCL Device is composed of: Group of answer choices Command Queues Platforms Processing Elements Compute Units

Answers

Answer:

Compute Units

Explanation:

A platform can be defined as a computing environment for building and executing sets of code in a software application or program such as an application programming interface (API).

The two parts of the platform used to run an application software are both hardware and software (operating system).

Machine and assembly are referred to as a low level programming language used in writing software programs or applications with respect to computer hardware and architecture. Machine language is generally written in 0s and 1s, and as such are cryptic in nature, making them unreadable by humans but understandable to computers.

OpenCl is an abbreviation for open computing language that runs on CUDA-powered graphics processing units (GPUs). An OpenCL Device is composed of compute units and an OpenCl compute unit typically comprises of processing elements.

What is the technology in community​

Answers

Answer:

Community technology is the practice of synergizing the efforts of individuals, community technology centers and national organizations with federal policy initiatives around broadband, information access, education, and economic development. National organizations efforts include: Developing effective language.

Community technology is a principled approach to technology that is grounded in the struggle for a more just digital ecosystem, placing value on equity, participation, common ownership and sustainability. In these activities, participants will use social analysis to understand technologies we use. Hope this helped!

Write a function called csv_sum that takes a filename and returns the sum of all of the numbers in the file. The numbers are in csv format. For instance, if the contents of the file are: 12,3,2 -5 10,20,-10,8.3 Then the function should return 40.3.

Answers

Answer:

Explanation:

def csv_sum(filename):

   total = 0

   try:

       f = open(filename)

       for line in f:

           words = line.strip().split(",")

           for word in words:

               total += float(word)

       f.close()

   except FileNotFoundError:

       pass

   return total

Which of the following is not one of the goals of technical recovery team members during the recovery phase of a BCP? Normalize operations. Restore temporary operations to critical systems. Repair damage done to original systems. Recover damage to original systems.

Answers

Answer:

Repair damage done to original systems

Explanation:

It is imperative that businesses brace up for moments or period of challenges whereby normal operation is impeded due to disruption in standard system condition. The ability of businesses to thrive and continue to deliver in these circumstances is catered for by the business continuity plan. The recovery team ensures that important processes critical to the business are restored in other to ensure that business operation isn't crippled. Once normalcy ahs been restored, the team ensures recoverabke day in the original system are taken care of. The repair of damage done is not a goal of the recovery ohase in the business continuity plan as repairsvare catered for after recovery event has been finalized.

Describe any FIVE features that make high level languages the preferred ones over machine languages​

Answers

Explanation:

Machine language, or machine code, is the only language that is directly understood by the computer, and it does not need to be translated. All instructions use binary notation and are written as a string of 1s and 0s.

A high-level language is a programming language that uses English and mathematical symbols, like +, -, % and many others, in its instructions. When using the term 'programming languages,' most people are actually referring to high-level languages. High-level languages are the languages most often used by programmers to write programs.

Examples of high-level languages are C++, Fortran, Java and Python.

High level languages are called ‘high-level’ because they are closer to human languages and

are further removed from machine languages than assembly language.

There is no one-to-one relationship between the instructions in a high level language and

machine language as there is with assembly language.

Difference between Machine Language and High Level language -

In high level code instructions use words but In machine code instructions are in binary code. High-level code is designed to be read by human programmers but In Machine code is to be read/executed by the computer High level code can be portable/translated for different machines but Machine code is specific to a particular machine.

Describe a cellular network, its principle
components and how it works.

Answers

A cellular network is a contact network with a wireless last connection. The network is divided into cells, which are served by at least one fixed-location transceiver station each. These base stations provide network coverage to the cell, which can be used to send voice, data, and other types of information. It's often referred to as a mobile network.

The principal components of the cellular network will be explained below as follows-

BTS (Base Transceiver Station) - It is the most important part of a cell since it links subscribers to the cellular network for data transmission and reception. It employs a network of antennas that are dispersed across the cell.

BSC (Basic Station Controller) - It is a portion that interfaces between Basic Station Controllers and is connected to Basic Station Controllers via cable or microwave links, as well as routing calls between Basic Station Controllers and the MSC (Mobile Switching Center).

MSC (Mobile Switching Center) - The supervisor of a cellular network is linked to several Basic Station Controllers and routes cells between them. It also connects the cellular network to other networks such as the PSTN through fiber optics, microwave, or copper cable.

A cellular network works when the SIM card is organized into geographical cells, each of which has an antenna that transmits to all mobile phones in the city, cellular networks operate by knowing the exact location, which comes from the SIM card. A transmitter generates an electrical signal, which is converted by the transmit antenna into an electromagnetic wave, which is then radiated, and the RF wave is then converted back into an electrical signal. In cellular network networks, four multiple access schemes are used, ranging from the first analog cellular technologies to the most modern cellular technologies.

Which statement about parallax scrolling is true?

A.
Parallax scrolling distorts the position of the player character when playing the game.
B.
Parallax scrolling involves segmenting the playing area into background layers that move slower than the foreground layers.
C.
Parallax scrolling involves unifying the playing area into a single environment.
D.
Parallax scrolling involves segmenting the playing area into background layers that move faster than the foreground layers.
E.
Parallax scrolling involves segmenting the playing area into background layers and foreground layers that move at the same speed.

Answers

Answer:

The answer is B

Explanation:

I wrote down every slide of this lesson by hand lol. Good luck on the final <3

Blockquote
The page contains a review within a block quote. Go to the Blockquote Styles section and create a style rule for theblockquote element that sets the background color to rgb(173, 189, 227) and the text color to the rgb(255, 255, 255) with an opacity of 0.65.
For every paragraph within the blockquote element create a style rule that sets the top/bottom padding space to 2.5 pixels and the left/right padding space to 10 pixels.
My Code
/* Blockquote Styles */
blockquote {
background-color:rgb(173,189,227);
color:rgb(255,255,255);
opacity:0.65;
}
blockquote > p {
padding: (2.5, 10, 2.5, 10);
}

Answers

Answer:

I don't knowthe answer

Explanation:

I really don't know the answer

Discuss four uses of computer ​

Answers

1. It helps to the development of our career.

2. Through the internet, we can know the facts which were happening all over the world

3. Computer can be use as a calculator too

4. We can store any kind of information.

Hope This Helps You ❤️
1-Watching videos.
3-Audio, Video and photo editing.
4-Creating sound or video.
5-Communicating with other people.

Evaluation of your strengths and weaknesses
a. Self Assessment b. Employee
c. Entrepreneurship d. Entrepreneur

Answers

いt  背lfまyべラテぇrべit is a lolololol idek ima just stop

When adding several user accounts, you might want to use the newusers utility, which can process a text file full of entries to add user accounts. Use the man or info page to find out how to use this utility, and use it to add three users. When finished, view the /etc/passwd, /etc/shadow, and /etc/group files to verify that the users were added successfully.

Answers

Explanation:

Given - When adding several user accounts, you might want to use the new users utility, which can process a text file full of entries to add user accounts.

To find - Use the man or info page to find out how to use this utility, and use it to add three users.

Proof -

New Users Utility:

It is an utility which reads the file full of usernames and clear text passwords.

It then uses this information to update a group of the existing users to create new users.The format of the file consists of specified things like:

pw - passwd

pw - age

pw - gid

pw - dir

Use of the Utility:

The command is new users filename

The file should look like -

(Username : Password : UID : GID : User Information : Home Directory : Default Shell)

where ,

UID = User Identifier

GID = Group Identifier

Testing the Users:

Creating users from the file given above test User 1, directory Of File

Executing the create user new users directory Of File

Repeat this step to undergo all the users that are been noted down in the file to make them a user in the noted group policy.

Hence,

These are the steps of using the new Users utility.

An ISA specifies a word size of 8 bytes, byte addressability, and an address space of 256 K; it uses single-word instructions (i.e. each instruction is a single 8 byte word). What is the size of the MAR

Answers

Answer:

2 bytes

Explanation:

Size of the MAR ( memory address register )  = 18 bits = 2 bytes

Given that

address space = 256 K  = 2^8

number of address location= 2^8  * 2^10       ( where 1K = 2^10 )  

                                              = 2^18

Given the number of address location = 2^18 ;

Hence  18 bits are required to store the address of the instruction

Other Questions
Why were kibbutzim such as the one shown here important to the newly formed nation of Israel? (1 point)O They provided useful jobs for unemployed people from the nation's overpopulated cities.O They developed from small towns into the nation's first factories and modern cities.They helped prevent land erosion and produced grain used to feed the nation's cattle.They grew crops for sale abroad that contributed to the nation's economic development. Mark filled 36 glasses with orange juice for a camp breakfast. If each glass holds 1 cup of juice, how many pints of orange juice did Mark use? What is the probability of having fish with red scales shown on a table How many cups are on 2.5 liters Whats the mathematical relation between them :the small mass and the larger mass.Giving brainlist on this one I really need help on this one please Ill be so grateful! please help me someone what is the path you eye takes when looking at an object called?A: spaceB: gestureC: movement D: progression Read and match each country with its correct tradition, based on what you have learned from the lesson.Column A1.Family dinner2.Pouring water at 12 a.m.3.Pretending to be younger or older4.FireworksColumn Ba.Uruguayb.Mxicoc.Dominican Republicd.United States (1/4)^3+(3/4)^3+3(1/4)(3/4)(1/4+3/4) Help please!!Which of the following best gives a positive and a negative of the Europe First strategy in World War II?A. POSITIVE: This helps out Great BritainNEGATIVE: Winston Churchill won't be Prime Minister of Great Britain once Japan stops fightingB. POSITIVE: Defeating Nazi Germany would help many of the Allied ForcesNEGATIVE: This does not stop the immediate threat of Japan in the Pacific TheaterC. POSITIVE: This helps out the Soviet UnionNEGATIVE: The Soviets, especially Joseph Stalin, cannot be trustedD. POSITIVE: Nazi Germany did a lot of bad thingsNEGATIVE: France would not be able to give a lot of help to the Allied Forces If mZ2 = 26, what is mZ16?11 12314141315 1665718(not drawn to scale)A64B2616D154 need help. asap. also need an explanation for the problem. :) Find the measure of the are or angle indicated. Assume that lines which appear tanget are tangents Select the correct answer.Which of the following methods of learning is usually the fastest in exercise?A. VisualB. AuditoryC. KinestheticD. The sandwich method essay on natural disaster Find the center, vertices, and foci of the ellipse with equation x squared divided by 9 plus y squared divided by 25 A marketing research firm would like to survey undergraduate and graduate college students about whether or not they take out student loans for their education. There are different cost implications for the region of the country where the college is located and the type of degree. The survey cost table is provided below: Student type Region undergraduate graduateEast $10 $15 Central $12 $18 West $15 $21 The requirements for the survey are as follows: The survey must have at least 1500 students. At least 400 graduate students. At least 100 graduate students should be from the West No more than 500 undergraduate students should be from the East At least 75 graduate students should be from the Central region At least 300 students should be from the West The marketing research firm would like to minimize the cost of the survey while meeting the requirements. Let X1 = # of undergraduate students from the East region, X2 = # of graduate students from the East region, X3 = # of undergraduate students from the Central region, X4 = # of graduate students from the Central region, X5 = # of undergraduate students from the West region, and X6 = # of graduate students from the West region.Required:Clearly state the problem (objective function, constraints) Part AWhich structure does the author use to organize information in the text Improving Old MacDonald's Farm?cause and effectlogical orderchronological ordercomparison and contrastQuestion 2Part BRead excerpt from "Improving Old MacDonald's Farm."One important source of water pollution caused by farming activities is called sedimentation. Sedimentation occurs when wind or water runoff carries soil particles and dumps them into a nearby lake or stream. Too much sediment can cloud the water, which reduces the amount of sunlight that reaches aquatic plants. It can also clog the gills of fish or smother fish larvae.How does the structure identified in Part A contribute to the development of ideas in this section of the article?It describes how farming activities have caused sedimentation throughout history.It compares the effects of sedimentation on aquatic plants to the impact on fish.It shows that because farming activities are polluting the water, sedimentation occurs.It explains the steps that lead to water pollution. An airline that wants to assess customer satisfaction chooses a random sample of 10 of its flights during a single month and asks all of the passengers on those flights to fill out a survey. This is an example of a Please help, Ill mark as brainliest!! The picture is above :)