Compared with a star topology, a hierarchical topology: a. is more effective at handling heavy but short bursts of traffic. b. allows network expansion more easily. c. offers a great deal of network control and lower cost. d. has cable layouts that are easy to modify.

Answers

Answer 1

Answer:

c. offers a great deal of network control and lower cost.

Explanation:

A network topology can be defined as a graphical representation of the various networking devices used to create and manage a network.

Compared with a star topology, a hierarchical topology offers a great deal of network control and lower cost.


Related Questions

Have you ever played the game Mad Libs? Basically, the goal is to build a story using a template and have other people fill in the blanks. They make for pretty funny stories because the people filling in the blanks don’t know what the story is about!
For this activity, you will be creating your own Mad Libs game. It’s similar to the way you created the Introduction paragraph in the unit.
Start by typing out your Mad Libs fill-in-the-blank story in a word processing document. Make it as creative as possible! Identify whether your blanks should be filled by nouns, verbs, adjectives, or adverbs. Your story should include at least 10 blanks.
Next, transform your story into one big Python print statement in REPL.it, using variables in place of the blanks.
Finally, create the variables you need for your template by putting them at the top of your program. You should use input statements to make the game interactive.
Test out your program thoroughly, fixing any syntax errors or bugs that arise. Once you are happy with it, take a screenshot of your code actually being run.
Copy and paste your code into the same document where you wrote your fill-in-the-blank story, so that you have the regular fill-in-the-blank version and the code version.
Have a friend or family member try your Mad Lib (the typed or the coded version). Record yourself reading the result.

Someone please help!

Answers

Answer:

oh hi i can answer now lol

Explanation:

A simple computer has a main memory and a disk but not a cache. If a referenced word is in main memory, 90ns are required to access it. If it is on disk but not in main memory, 10ms are needed to load it into main memory (this includes the time to originally check the main memory), and then reference is started again. The main memory hit ratio is 0.8. What is the average time in ns required to access a referenced word on this system

Answers

Answer:

The average time in ns to reference a work will be of 2,000,090.

Explanation:

80% of the time, you will need just to load from the main memory(when there is a hit), that is, a time of access of 90 ns.

20% of the time, you will have a miss, so you have to access the main memory(90 ns) plus the disk(10 ms = 10000000 ns).

So, the average time needed to reference a word will be:

[tex]t = 0.8*90 + 0.2*(90 + 10000000) = 2000090[/tex]

The average time in ns to reference a work will be of 2,000,090.

Identify the letter of the choice that best matches the phrase or definition. Group of answer choices Having a current knowledge and understanding of computers, mobile devices, the web and related technologies [ Choose ] Thin, lightweight mobile computer with a screen in its lid and a keyboard in its base [ Choose ] An electronic device, operating under the control of instructions stored in its own memory, that can accept data, process the data according to specified rules, produce information, and store the information for future use [ Choose ] A personal computer designed to be in a stationary location [ Choose ] A computer dedicated to providing one or more services to other computers or devices on a network [ Choose ] A computing device small enough to hold in your hand [ Choose ] An Internet-capable phone that usually also includes a calendar, an address book, a calculator, notepad, games, and several other apps [ Choose ] Any hardware component that allows you to enter data and instructions into a computer or mobile device [ Choose ] Any hardware component that conveys information from a computer or mobile device to one or more people [ Choose ] Where a computer keeps data, instructions, and information [ Choose ] Removable flash memory [ Choose ]

Answers

Answer:

1. Digital literacy.

2. Laptop.

3. Computer.

4. Desktop computer.

5. Server.

6. Mobile device.

7. Smartphone.

8. Input device.

9. Output device.

10. Storage media.

11. Memory card.

Explanation:

1. Digital literacy: having a current knowledge and understanding of computers, mobile devices, the web and related technologies.

2. Laptop: thin, lightweight mobile computer with a screen in its lid and a keyboard in its base.

3. Computer: an electronic device, operating under the control of instructions stored in its own memory, that can accept data, process the data according to specified rules, produce information, and store the information for future use.

4. Desktop computer: a personal computer designed to be in a stationary location.

5. Server: a computer dedicated to providing one or more services to other computers or devices on a network.

6.  Mobile device: a computing device small enough to hold in your hand.

7. Smartphone: an Internet-capable phone that usually also includes a calendar, an address book, a calculator, notepad, games, and several other apps.

8. Input device: any hardware component that allows you to enter data and instructions into a computer or mobile device.

9. Output device: any hardware component that conveys information from a computer or mobile device to one or more people.

10. Storage media: where a computer keeps data, instructions, and information. It includes hardware devices such as solid-state drive (SSD), hard-disk drive (HDD), optical drive, and flash drive.

11. Memory card: Removable flash memory. In terms of size, it has a width and height of about 1.5 inches.

g A string is represented as an array of characters. If you need to store an array of 5 strings with the maximum length of a string is 100, how would you declare it

Answers

Answer:

Declare it as: char str[5][100]

Explanation:

The attachment completes the question

The options in the attachment shows that the programming language being described is more likely to be C language.

In C language, the following syntax is used to store an array of m number of strings and a maximum of n elements in each string,

char array-name[m][n]

 

From the question:

[tex]m = 5[/tex]

[tex]n = 100[/tex]

Let array-name be str.

The array will be declared as: char str[5][100]

One problem with dynamic arrays is that once the array is created using the new operator the size cannot be changed. For example, you might want to add or delete entries from the array similar to the behavior of a vector. This project asks you to create a class called DynamicStringArray that includes member functions that allow it to emulate the behavior of a vector of strings.
The class should have:
A private member variable called dynamicArray that references a dynamic array of type string.
A private member variable called size that holds the number of entries in the array.
A default constructor that sets the dynamic array to NULL and sets size to 0.
A function that returns size.
A function named addEntry that takes a string as input. The function should create a new dynamic array one element larger than dynamicArray, copy all elements from dynamicArray into the new array, add the new string onto the end of the new array, increment size, delete the old dynamicArray, and then set dynamicArray to the new array.
A function named deleteEntry that takes a string as input. The function should search dynamicArray for the string. If not found, return false. If found, create a new dynamic array one element smaller than dynamicArray. Copy all elements except the input string into the new array, delete dynamicArray, decrement size, and return true.
A function named getEntry that takes an integer as input and returns the string at that index in dynamicArray. Return "" string if the index is out of dynamicArray’s bounds.
Overload the operator[] so that you can get and change an element by an index integer. If the index is out-of-bounds, return a "" string.
A copy constructor that makes a copy of the input object’s dynamic array.
Overload the assignment operator so that the dynamic array is properly copied to the target object.
A destructor that frees up the memory allocated to the dynamic array.
Create a suitable test program to test your class.
You should name the project ASG10. When you zip up the project folder, ASG10, include all the files (.sln, .cpp, etc) and subdirectories (Debug, etc.).
**************************************************
Copy your DynamicStringArray from Assignment 10. Fix the program so all 13 tests work properly. Modify the definition of the overloaded operator [] and getEntry so they throw an OutOfRange exception if an index that is out of range is used. OutOfRange is an exception class that you define. The exception class should have a private int member and a private string member, and a public constructor that has int and string arguments. The offending index value along with a message should be stored in the exception object. You choose the message to describe the situation. Modify your test program and add tests that catch the new exception class.
You should name the project ASG14. When you zip up the project folder, ASG14, include all the files (.sln, .cpp, etc) and subdirectories (Debug, etc.).

Answers

Answer:

Un problema con las matrices dinámicas es que una vez que se crea la matriz utilizando el nuevo operador, no se puede cambiar el tamaño. Por ejemplo, es posible que desee agregar o eliminar entradas de la matriz de manera similar al comportamiento de un vector. Este proyecto le pide que cree una clase llamada DynamicStringArray que incluye funciones miembro que le permiten emular el comportamiento de un vector de cadenas.

La clase debe tener:

Una variable miembro privada llamada dynamicArray que hace referencia a una matriz dinámica de tipo cadena.

Una variable de miembro privada llamada tamaño que contiene el número de entradas en la matriz.

Un constructor predeterminado que establece la matriz dinámica en NULL y establece el tamaño en 0.

Una función que devuelve el tamaño.

Una función llamada addEntry que toma una cadena como entrada. La función debe crear una nueva matriz dinámica un elemento más grande que dynamicArray, copiar todos los elementos de dynamicArray en la nueva matriz, agregar la nueva cadena al final de la nueva matriz, incrementar el tamaño, eliminar el antiguo dynamicArray y luego establecer dynamicArray en el nueva matriz.

Una función llamada deleteEntry que toma una cadena como entrada. La función debe buscar la cadena en dynamicArray. Si no lo encuentra, devuelva falso. Si lo encuentra, cree una nueva matriz dinámica con un elemento más pequeño que dynamicArray. Copie todos los elementos excepto la cadena de entrada en la nueva matriz, elimine DynamicArray, reduzca el tamaño y devuelva verdadero.

Una función llamada getEntry que toma un número entero como entrada y devuelve la cadena en ese índice en dynamicArray. Devuelve la cadena "" si el índice está fuera de los límites de dynamicArray.

Sobrecargue el operador [] para que pueda obtener y cambiar un elemento por un índice entero. Si el índice está fuera de los límites, devuelve una cadena "".

Un constructor de copia que hace una copia de la matriz dinámica del objeto de entrada.

Sobrecargue el operador de asignación para que la matriz dinámica se copie correctamente en el objeto de destino.

Un destructor que libera la memoria asignada a la matriz dinámica.

Cree un programa de prueba adecuado para evaluar su clase.

Debería nombrar el proyecto ASG10. Al comprimir la carpeta del proyecto, ASG10, incluya todos los archivos (.sln, .cpp, etc.) y subdirectorios (Debug, etc.).

************************************************

Copie su DynamicStringArray de la Tarea 10. Corrija el programa para que las 13 pruebas funcionen correctamente. Modifique la definición del operador sobrecargado [] y getEntry para que generen una excepción OutOfRange si se usa un índice que está fuera de rango. OutOfRange es una clase de excepción que define. La clase de excepción debe tener un miembro int privado y un miembro string privado, y un constructor público que tenga argumentos int y string. El valor del índice infractor junto con un mensaje deben almacenarse en el objeto de excepción. Tú eliges el mensaje para describir la situación. Modifique su programa de prueba y agregue pruebas que detecten la nueva clase de excepción.

Deberías nombrar

Explanation:

The code repeat 3 [forward 50 right 120] creates which shape?
a square
a circle
a pentagon
a triangle

Answers

Answer:

Triangle. D

Explanation:

I have no Idea, I was searching for the answer like most of you guys are doing. But my best guess is Triangle

Answer:

D. A triangle is your answer

Explanation:

The triangle is the only shape in this list that has 3 sides.

Answerer's Note:

Hope this helped :)

Explain the iterative nature of the database requirements collection, definition, and visualization process.

Answers

Answer:

you can do a quizlet about it and you can get da answers from there

Explanation:

difference between Opacity and Alpha properties in CSS3?

Answers

Answer:

Opacity sets the opacity value for an element and all of its children; While RGBA sets the opacity value only for a single declaration. Opacity : The opacity property sets the opacity level for an element. ... The alpha parameter is a number between 0.0 (fully transparent) and 1.0 (fully opaque)

hope it helps

please mark me as brainliest.

follow me

Define the following propositions: c: I will return to college. j: I will get a job. Translate the following English sentences into logical expressions using the definitions above: (a) Not getting a job is a sufficient condition for me to return to college. (b) If I return to college, then I won't get a job.

Answers

Answer:

Answered below

Explanation:

//Program is written in Kotlin programming language

//Initialize Boolean variables

var getJob:Boolean = true

var returnToCollege: Boolean = false

//First sentence. If no job then return to //college.

if( !getJob ) {

returnToCollege = true

}

//Second sentence. If you have returned to college then you cannot get a job.

if (returnToCollege == true){

getJob = false

}

When you add a software stack, such as an operating system and applications to the service, the model shifts to _____ model. SaaS PaaS IaaS All of the mentioned

Answers

Answer:

The correct answer is B) PaaS

Explanation:

PaaS is short for Platform-as-a-Service.

It is a cloud computing architecture that provides the capability for customers (with a full suite of outsourced hardware, software, and other related infrastructure) to create, run and maintain applications less the arduous task of developing such platform on their own business place.

Of course, it helps to reduce associated costs as well. is a cloud computing model that provides customers a complete platform—hardware, software, and infrastructure—for developing, running, and managing applications without the cost, complexity, and inflexibility of building and maintaining that platform on-premises.

Facilities included in a PaaSinfrastructure are

serversstoragenetworkingmiddlewaredevelopment toolsbusiness intelligence (BI) servicesdatabase management systems etc.

With a  PaaS one can complete the entire web application lifecycle which runs from building the application to testing it, deploying the software, managing and updating it.

Cheers

how risk can impact each of the seven domains of a typical IT infrastructure: User, Workstation, Local Area Network (LAN), Local Area Network-to-Wide Area Network (LAN-to-WAN), Wide Area Network (WAN), Remote Access, and System/Application domains

Answers

Answer and Explanation:

User Domain:

Risk

User can destroy the data and delete all User can find checked and use a password to delete all the work User can insert the USB flash and Infected CD.

Work Station Domain:

The workstation domain has some software vulnerability that connects remotely and steals data. A workstation can fail because of lost data.

LAN domain

A worm can spread and infect the computer.LAN have some known software vulnerability. An unauthorized access of the organization workstation in

LAN WAN domain

LAN WAN domain that consists of internet and semi-private lines Service providers have major network problems. Server can receive the DOS File Transfer protocol can allow uploaded illegal software.

LAN/WAN Domain

The boundary between the trusted and untrusted zones. Hacker can penetrate the IT infrastructure and gain access. Week ingress and egress filtering performance. A firewall with the ports open can allow access to the internet.

System Storage Domain:

A fire can destroy the data DOC can cripple the organization's email. A database server can be attacked by the injection of SQL and corrupting data.

Remote Access Domain

Communication circuit outage the connections Remote communication from the office can be unsecured VPN tunneling between the remote computer and router

What symbol should you look for to determine who owns the intellectual property of a website?

Answers

Answer:

the logo of the company or corporation

Explanation:

Usually, the symbol that determines who owns the intellectual property is the logo of the company or corporation. The logo of a website is technically the logo of the brand which has the rights to all of the information represented on the site and ultimately the intellectual property of the site itself. Since there are various board members that usually make up the company that owns the intellectual property, the logo is a way of representing all of these members as a single entity.

Answer: D the copyright symbol

Explanation: I hope this helps you out

Provide an example of an IT project from your readings, experience, and/or other sources and discuss some of the challenges faced in its implementation. Suggest ways to overcome such challenges to achieve successful outcomes.

Answers

Answer:

kindly check the explanation.

Explanation:

Getting any project to be a successful one is not an easy task at all as many projects failed even before it nears completion stage. The Project Management Institute[PMI] states that only 69% [mean percentage] are able to complete and meet the original goals for and business intent of the project.

The reasons behind this failed IT projects are numerous, few of them are given below:

=> When estimates for the IT project is inaccurate. Th inaccuracy  do cause IT projects to not meet the target.

=> When the available resources are not enough and there is poor project management it causes the IT projects to fail.

=> When team members are not diligent. The procrastination of team members do lead to failed projects.

The ways that such problems can be overcome in order to to achieve successful outcomes is given below;

=> Someone should be held accountable. That is there should be a seasoned and qualify project manager to supervise the project and can be hold accountable for how things turns how to be.

=> The scope of the project should be flexible so that when things changes the plan can also change.

=> Making sure that all the estimates are accurate.

If background option when creating file. the color of the background is

Answers

Answer:

Light Grey.

Explanation:

I guess because mostly I have seen document background colour is Grey.

Light grey...........

The stub: transmits the message to the server where the server side stub receives the message and invokes procedure on the server side. locates the connection on the computer. packs the parameters into a form transmittable over the hardware. locates the port on the computer.

Answers

Answer:

It does all of these

Explanation:

The stub is able to do all of what we have in this question. It can locate computer connections, locate ports on a computer, transit message to server etc.

in distributed computing, a stub is a piece of code that does the work of converting parameters that are passed between the client and the server at a time of remote procedure call.

The main objective of an RPC is to allow the client to call procedures remotely on another server.

how do I make my own algorithms ​

Answers

Answer:

Step 1: Determine the goal of the algorithm. ...

Step 2: Access historic and current data. ...

Step 3: Choose the right model(s) ...

Step 4: Fine tuning. ...

Step 5: Visualise your results. ...

Step 6: Running your algorithm continuously.

Get a basic understanding of the algorithm.
Find some different learning sources.
Break the algorithm into chunks.
Start with a simple example.
Validate with a trusted implementation.
Write up your process.

An alternative design for a canary mechanism place the NULL value just below the return address. What is the rationale for this design decision

Answers

Answer:

This is to prevent attacks using the strcpy() and other methods that would return while copying a null character.

Explanation:

Canary is a mechanism used to monitor and prevent buffer overflow. The alternative canary design that places a null value just before the return address is called the terminator canary.

Though the mechanism prevents string attacks, the drawback of the technique is that the value of the canary is known which makes it easy for attackers to overwrite the canary.

What is the advantage of using shortcuts

Answers

Answer: There can be advantages and disadvantages.

for example, if you were in the woods with a pathway, and a clear way that might be faster and a shorter way of getting out. You may take the shortcut leading to where you didn't want to go leading to you getting lost or, it could be the same time but with more challenges.

An example of shortcuts to it's advantage is when you're reading a text and you don't understand the word. It's much easier when you hear it being read out to you when the reader uses tone to kind of give you a hint if the connotation is negative or positive, A good example of this is the word unique let's use this sentence "She was very unique, and that's what made her cool!" We can use the words "cool" to see that unique is a positive connotation! For the word cool can usually mean that something is real nice or it's something/someone you'd typically like to be around. So therefore these are just a few examples of the advantages and disadvantages of shortcuts.

Write a function named average_value_in_file that accepts a file name as a parameter and reads that file, assumed to be full of numbers, and returns the average (mean) of the numbers in that file. The parameter, filename, gives the name of a file that contains a list of numbers, one per line. You may assume that the file exists and follows the proper format. For example, if a file named input.txt contains the following numbers

Answers

def average_value_in_file(filename):

   f = open(filename)

   total = 0

   count = 0

   for x in f.read().splitlines():

       total += int(x)

       count += 1

   return total/count

print(average_value_in_file("input.txt"))

I used an input file that looks like this:

1

1

1

1

Brian gathers data from his classmates about the computers they own such as the type of operating system, the amount of memory, and the year the computer was purchased. Who/what are the individuals in this data set

Answers

Incomplete question. The Options read;

A. The year purchased

B. Brian's classmates

C. The amount of memory

D. The type of operating system

Answer:

B. Brian's classmates

Explanation:

Remember, the question is concerned about "the individuals" in the data set, so the year they purchased their computer, neither is the amount of memory of the computer and the type of operating system can be classified as individuals in the data set.

Hence, we can correctly say, only Brian's classmates are the individuals in this data set.

Write a code in C++ that can save 100 random numbers in an array that are between 500 and 1000. You have to find the average of the 100 random numbers. To find the average of the numbers, you have to use a functions. You are not allowed to use return, cin or cout statements in the functions.

Hint : you have to use function call by reference.

Answers

Answer:

#include <iostream>

#include <random>

//here we are passing our array and a int by ref

//to our function called calculateAverage

//void is infront because we are not returning anything back

void calculateAverage(int (&ar)[100], int &average){

 int sum = 0;

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

   //adding sum

   sum += ar[i];

 }

 //std:: cout << "\naverage \t\t" << average;

//calculating average here

 average += sum/100;

}

int main() {

 int value = 0;

 int average = 0;//need this to calculate the average

 int ar[100];

 //assign random numbers from 500 to 1000

 //to our array thats called ar

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

   value = rand() % 500 + 500;

   ar[i] = value;

   

 }

 calculateAverage(ar,average);

 // std:: cout << "\naverage should be \t" << average;

 

}

Explanation:

not sure how else this would work without having to pass another variable into the function but I hope this helps!

I commented out the couts because you cant use them according to ur prof but I encourage you to cout to make sure it does indeed calculate the average!

Write a program in python whose input is a string which contains a character and a phrase, and whose output indicates the number of times the character appears in the phrase.

Answers

Answer:

Explanation:

The following is written in Python as requested and performs this task with a function called count_appearances. It first makes the character and the phrase into all lowercase and then loops through each word in the phrase and compares it to the character. If they are the same it adds 1 to the counter. Once the loop is over it returns the counter which is the number of times that the character appeared in the phrase.

def count_appearances(character, phrase):

   count = 0

   character = character.lower()

   phrase = phrase.lower()

   for x in phrase.split():

       if x == character:

           count += 1

   return count

Please go support me I started 3 weeks ago and I get no views
(PLEASE SHARE)

Answers

Answer:

ok ill go check you out!!!

Answer:

i got u!

Explanation:

No problem hon!

Which of the following is NOT provided by the Device
Manager?
List of attached external peripheral devices
List of installed software with versions
List of attached internal peripheral devices
List of installed drivers
Submit

Answers

Answer:

well techincly in windows 10 the only thing that is in the device manager is the services and software it doesn't tell you what devices are connected only what is running and the prefrmance

of your machine

Explanation:

The index used by the OS to manage computer files is called _____.


RAM

API

GUI

FAT

Answers

Answer:

GUI

Explanation:

Answer:

FAT

Explanation:

Hope this helps!!!

1. Discuss the pros and cons of human-computer interaction technology?
2. Discuss the ACID database properties in details ​

Answers

!

gcoo!!Exykgvyukhhytocfplanationufvhyg:

For C++ ONLY please,
Write a for loop to print all NUM_VALS elements of vector courseGrades, following each element with a space (including the last). Print forwards, then backwards. End with a newline. Ex: If courseGrades = {7, 9, 11, 10}, print:
7 9 11 10
10 11 9 7
Hint: Use two for loops. Second loop starts with i-courseGrades.size() - 1 (Notes)
Note: These activities may test code with different test values. This activity will perform two tests, both with a 4-element vector (vector int> courseGrades(4)). See "How to Use zyBooks".
Also note: If the submitted code tries to access an invalid vector element, such as courseGrades at(9) for a 4-element vector, the test may generate strange results. Or the test may crash and report "Program end never reached', in which case the system doesn't print the test case that caused the reported message.
1 #include
2 #include
3 using namespace std; DIIDII
4
5 int maino {
6 const int NUM_VALS - 4;
7 vector int> courseGrades (NUM_VALS);
8 int i;
9
10 for (i = 0; i < courseGrades.size(): ++) {
11 cin >> courseGrades.at(i); /*
12 }
13
14 Your solution goes here */
15
16 return ;
17 }

Answers

Answer:

Replace the comment

/*Your solution goes here */

with

for (i = courseGrades.size()-1; i >=0 ; i--) {

cout<<courseGrades.at(i)<<" ";

}

Explanation:

This line iterates through courseGrade in reverse order

for (i = courseGrades.size()-1; i >=0 ; i--) {

This prints each element of courseGrade in reverse followed by blank space

cout<<courseGrades.at(i)<<" ";

}

I added the full program as an attachment

Answer:

for (i = 0; i < NUM_VALS; i++) {

cout << courseGrades [i] << " ";

}

cout << endl;

for(i = NUM_VALS - 1; i >= 0; --i) {

cout << courseGrades[i] << " ";

}

cout << endl;

Explanation:

Write a print statement that displays a random integer between 5 and 5000. Assume the random library is imported.

Answers

Answer:

Explanation:

The following code is written in Java. It is a very simple three line statement (assuming that the random library was imported) that chooses a random integer value between 5 and 5000 and prints it to the screen using the println statement.

Random rand = new Random();

int randomNum = rand.nextInt((5000 - 5) + 1) + 5;

System.out.println(randomNum);

The random number generator is initialized and given a value between 5 and 5000. Since random number Generator will generate a number between 0 and the given value then subtracting 5 from the initial generated number makes sure that it is not more than 5000 and then adding 1 and 5 after wards makes sure that it is more than 5 always.

Write a class named Octagon whose objects represent regular octagons (eight-sided polygons). Your class should implement the Shape interface defined, including methods for its area and perimeter. An Octagon object is defined by its side length

Answers

Answer:

Answered below

Explanation:

//Code is written using Kotlin programming language.

interface Shape{

var length : Double

fun area(length: Double)

fun perimeter (length: Double)

}

Class Octagon(var length: Double) : Shape{

val side: Int = 8

override var length: Double = length

override fun perimeter ( length: Double):Double{

return side * length

}

override fun area(length: Double): Double {

return 2*side**2(1+\Math.sqrt(2)

}

}

//Test class

Class Main{

fun main(){

val octagon = Octagon(2.5)

val perimeter = octagon.perimeter()

val area = octagon.area

print(perimeter, area)

}

}

How can innovation,including technology, be sustained in schools?

Answers

Answer:

Answered below

Explanation:

Schools can encourage and sustain innovation and innovative ideas in technology through teaching, exposure and awareness of the benefits of using technology in solving our everyday problems.

Students should be invited to participate in tech roundtables and think about problems encountered in their society or environment and figure out how technology can be applied in such situations to providing a solution to those problems.

This encourages new, innovative and creative ideas, enthusiasm and opportunities.

Other Questions
Can someone plz help me Which statement best describes the concern scientists have about the carbon cycle? A. The environment is adding carbon faster than humans are adding carbon. B. The environment is adding carbon slower than humans are adding carbon. C. Humans are adding carbon faster than the environment can take up and store carbon. D. Humans are adding carbon slower than the environment can take up and store carbon. Talent Doctors at St. Mark's hospital noticed that a new batch of pacemakers were not performing up to standard. To which government body shouldSt. Mark's Hospital report the defective devices?A.CDCB.FDAC.OSHAD.NIH HELP ME PLEASE Which is an example of a cash transaction?A): a TV streaming service payment automatically debited from a checking account on the 21st of each monthB): paying for gas at the pump with a credit cardC): taking out a student loanD): financing a new car 2. What were the impacts of Japanese Internment? A family has 4 horses bred from the same set of parents. All of their horses are mares (females). They are planning on having one more horse to complete their herd. A neighbor comments that they are much more likely to end up with a male horse the next time around. Is the neighbors reasoning correct? a. Yes, they are more likely to end up with a male horse in order for the probabilities of male and female to get back to 0.5 b. No, the probability of the new horse being male or female remains 0.5, regardless of what its older siblings are. c. Yes, after having so many female horses in a row, the breeding pair is due to have a male. d. No, these horses must be genetically prone to having female offspring Find the GCF of5p + 10p What is the solution of ?A. B. C. D. How does this account differ from the Christian account? Original Quote:Hundreds of thousands of sea otters once lived in the northern Pacific Ocean. But in the 1700s, people began hunting them for their thick fur.Before people began hunting them for their thick fur, hundreds of thousands of sea otters lived in the northern Pacific Ocean.is it a strong paraphrase or plagiarism? plz solve anyoneplz solve anyoneplease help me quickly give me the correct answer and give me the brainliest answer please help me now Lesson focus:To InfinitiveWriting informal lettersTo - infinitiveLook at these examples of the to-infinitive in the text you have just read: Examples: ... is opening more than 100 new restaurants to convert pizza-lovers to its burgers. This is our way to show we believe ... ... which strives to preserve traditional ... 1 The to-infinitive is found in various sentence constructions. Look at these four common uses: a. To indicate the purpose of something (to has the same meaning as so as to, in order to), for example, She came to see the doctor. b. After some verbs (advise, ask, encourage, invite, order, persuade, remind, tell, warn, expect, intend, would prefer, want, would like) which are followed by a direct object, for example, They would like you to make a speech.c. Following a noun or pronoun, to indicate what something can or will be used for, for example: I'd like a sandwich to take to school. d After certain verbs (ask, decide, explain, forget, know, show, tell, understand) followed by question words, for example, She asked me where to sit. Now decide which of the sentences 1-8 matches each of the four common uses of the to-infinitive. There are two examples for each use. 1. He told me to ask you.2. I can't remember where to put this. 3. I don't have anything to wear. 4. I'm writing to ask you a favour. 5. Tell me how to switch on the machine. 6. Would you like something to drink? 7. They ordered all the students to leave the building. 8. Your sister has gone to finish her homework. Reorder the jumbled words in a-fto make sentences which include the to-infinitive.a. appears she hurt to head her have b. 150 instructions my write are to words c. immediately we to need leave d like eat to would anything you? e. to calling father your lm out find about f. him he with asked come me to not Match the sentence halves (a-g) with (1-7). a. The McDonald's Italian arm plans ... b. The group still has a cultural hurdle ... c. Milan city council forced McDonald's ... d. When the timer goes off, we're ! supposed ... e. If you want... f. That forces us ... g. Look around ..1. to clear in Italy. 2. to close its restaurant in the Galleria.3. to cook you a new batch. 4. to make sure your fries come right out... 5. to see how much rubbish there is. 6. to spend 350 million. 7. to throw out the food. Complete these sentence halves using your own words. You should use a to-infinitive in each one.a. He arrived too late ... b. Your brother has gone ... c. Do you understand where ... ?d. l'd like you e. The students need a library ... Writing: Informal letters 1 You are going to write a letter to a friend about a fast-food restaurant you have recently visited. Before you start writing, think about the following. It might help if you concentrate on restaurants that you already know.a. What is your opinion about fast food taking over from more traditional food? b. What are the advantages and disadvantages of each type of food? c. What about the places where you can buy fast food and traditional food? Is one type of place better than another? Why?Now copy and complete the table below, listing the advantages and disadvantages of fast-food and traditional restaurants. Fast food restaurantsTraditional restaurantsAdvantagesDisadvantagesAdvantagesDisadvantagesQuick serviceMore expensiveLook at the exam-style question below and complete the gaps with explain, describe, write, say Do not write the letter yet.a)b)c)d)Look at the two letters written by two students in response to the question in exam style question. Decide which of the two letters - A or B - is better. Give your reasons. Think about: the language (the vocabulary and structures) the information (the ideas) contained in the letter.Which letter, A or B: a. uses correct opening and closing phrases?b. does not have any paragraph breaks? c. responds to each of the three question prompts? d. contains a lot of spelling mistakes? e. includes information that is not relevant?How would you improve Felipes letter? Write a few points. What did you have to do to turn an atom that is labeled +ion or -ion into a Neutral Atom? I guess you didnt mean what u wrote in that song about meeeYou said forever now I drive past your street For this question you will be designing an investigation Carefully read the information below and respond to the promptDoes the temperature of a liquid affect the amount of sugar it will dissolve? In other words, if you change the temperature of a liquid, is there arelationship between the temperature and how much sugar can dissolve at that specific temperature?Tell how you would test this question, being as scientific as possible (including the different variables, constants, hypothesis, safety considerations, datatables, etc.) when you write about your test. Write down the steps you would take to find out if the temperature of a liquid affects the amount of sugar itcan dissolve Find the midpoint of ABif A(-3, 8) andB(-7,-6). pls answer number 12 You have a coupon for an additional 25% off the price of any sale item at the store. The store has put a robotics kit on sale for 15% off the original price or $40. What is the price of the robotics kit after both discounts? What is a farmer with a small farm called