What involves the layering of hardware and software into a coherent computer experience?

A) PaaS

B) Cloud

C) IaaS

D) Open Systems Interconnect

Answers

Answer 1

Answer:

Answer is D. Open Systems Interconnext

Answer 2

Answer:

D open Systems Interconnect

Explanation:

Got it right on the test.

Complete answers for the test on edge 2021...

#1. a - application performance

#2. c - protocol

#3. b - virtual machines

#4. b - open systems interconnect

#5. b - post office

Got 100% on the test.


Related Questions

• Describe why you may have traveled to the same place many times. Why would this happen in nature?

Answers

I have traveled to the same place many times because I enjoy going there and I am very familiar with it. So in nature many animals will continue to go to the same place because of the same reasons they might know there is a supply of food there or that there is water.

Read this passage from The Phantom Tollbooth. There was once a boy named Milo who didn't know what to do with himself--not just sometimes, but always. When he was in school he longed to be out, and when he was out he longed to be in. On the way he thought about coming home, and coming home he thought about going. Wherever he was he wished he were somewhere else, and when he got there he wondered why he'd bothered. Nothing really interested him--least of all the things that should have. The most likely reason the author begins this fantasy with a realistic element is to make the text more amusing. exciting. believable. interesting.

Answers

Answer:

I think its believable

Explanation:

^^

I think its believable

Documentary photographers strive to produce what type of image?
А.
Edited
B.
True
C.
Colorful
D.
Blurred

Answers

I’m pretty sure that the answer is B

Answer:

B. :)

Explanation:

The manipulation of data files on a computer using a file browser is
.

A
is a computer program that allows a user to manipulate files.

A
is anything that puts computer information at risk.

Errors, flaws, mistakes, failures, or problems in a software program are called
.

Software programs that can spread from one computer to another are called
.

Answers

Answer:

The answers are system management. Next, file manager. After, security threat. Second to last, bugs. Last, system management tools.

Explanation:

I did the edg 2020. mark me as brainiest please.

Answer:

1.) file management

2.) file manager

3.) security threat

4.) bugs

5.) viruses

Explanation:

did it in edge

Challenge #3: Create a network that keeps everyone connected even if one of the lines is cut Insert as many lines as needed

Answers

Answer:

To create a redundant computer network, The star network topology is adopted.

Explanation:

Note that topology is not a type of network but a top view of how the network looks like or is connected.

To make a network redundant, interconnect every computer to one another in the network, so even when a line or an ethernet cable ( the connector) makes, there is no loss of connection.

This form of network is not recommended for large computer networks as it would result in confusion due to excess connection cables running in the network.

~Föllòw gixannaa on tìktòk and then comment done~
(I will give brainliest answer if you tell me your user)

Answers

Answer:

my user is shut.upnow

Explanation:

lol

Answer:

I don't have tik tock sorry if I did I would have followed u

Explanation:

:D

The part of the program where strFirst can be used or changed describes its _____.

need answers now!

Answers

Answer:

def username (strFirst, strLast):

return strFirst[0] + strLast

def username (strFirst, strLast):

return strFirst + strLast[0]

answer = username ('Tech', 'Boss')

print (answer)

Explanation:

Can you rate the answer with Braillies? please.

if you need any further assistance please follow me and stay in touch anytime. ☺️

Answer:

scope

Explanation:

the Edge definition of scope as found in the instructions is: "Scope refers to the part of the program where Python can use and change a variable. "

The question is: "The part of the program where strFirst can be used or changed describes its _____. "

strFirst is a scope because it is the part of the program where..can...use and/or change.

Explain two options you have in order to abide by the move over law??? PLEASE HELP ME ASAP!! ​

Answers

Answer:

you can either move over if on an interstate into a different lane safely. if there is only one lane you must reduce your speed

what is wrong with this python code? The syntax error is on the first line.






public class Box


{

private String myDate;

private String myContents;

private String myLocation;

public class Box(String date, String contents, String location)

{

myDate = date;

myContents = contents;

myLocation = location;

}

}

Box twentyThree = new Box("2016", "medical records", "storage closet");

Box zeroSeven = new Box(“2020”, “flu shot flyers", “receptionist’s office”);

Box twentyOne = new Box(“2018”, “lotion samples”, “waiting room”)

print (Box twentyThree = 1)

print (Box zeroSeven = 2)

print (Box twentyOne = 3)

Answers

class Box:

   def __init__(self, date="", contents="", location=""):

       self.d = date

       self.c = contents

       self.l = location

   def displayBox(self):

       if self.d != "":

           print("The date is " + self.d)

       else:

           print("The date was not supplied")

       if self.c != "":

           print("The contents are " + self.c)

       else:

           print("The contents were not supplied")

       if self.l != "":

           print("The location is " + self.l)

       else:

           print("The location was not supplied")

obj = Box("2016", "medical records")

obj.displayBox()

This is how you would create a class in python. Your code seems to be part python part some other language. I hope this helps!

I am stuck on these 2 questions. Can someone help me please?

6) Write a Python code to save the following dictionary in a CSV file.
dict = {1: "Hello", 2: "Hi", 3:"bye"]

7) Write a Python code to read the CSV file generated in the previous step
(1) to a Python dictionary.​

Answers

Answer:

My answer could not be submitted because of some signs and symbols in my solution.

So, I've added the answer and a comprehensive explanation as an attachment.

Note that the question is answered using Python programming language.

Explanation:

Lines that start with # are used to explain the program

See attachment

Which of the following would be done outside of a control room?


programming a teleprompter

cueing camera operators

switching between multiple cameras

uploading camera footage on location

Answers

Answer:

a

Explanation:

Answer:

a

Explanation:

What is wrong in this python code import turtle bot = turtle.Turtle step = (50) turnAngle = (90) bot.Color("blue") bot.Begin_fill() bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.End_fill()

Answers

Answer:

The "Turtle" is a method and should be declared with parenthesis and every other method in the code (except the Turtle() ) should begin with lowercase letters like right, forward and begin_fill. The python file should not be saved as turtle.py to avoid import error.

Explanation:

The python turtle module is a graphical programming package created to introduce programming to children. It has several classes and methods to manipulate objects on the screen.

import turtle  

bot = turtle.Turtle()  

step =(50)  

turnAngle =90  

bot.color("blue")  

bot.begin_fill()  

bot.forward(step)  

bot.right(turnAngle)  

bot.forward(step)  

bot.right(turnAngle)  

bot.forward(step)  

bot.right(turnAngle)  

bot.forward(step)  

bot.right(turnAngle)  

bot.end_fill()

When a user modifies the fonts in a message and immediately sees the effect of a font change without actually selecting the font, which outlook feature is the user witnessing

Answers

Answer:

Live Preview

Explanation:

With Live Preview mode on in Microsoft Outlook while composing an email content, a user will be able to see effects of the when the mouse cursor is placed format for the text including, the text size, font of the text, the text color, which are immediately applied to the selected text to give a preview of what the effect of the editing function the cursor is hovering over can do.

A computer that provides special services to client computers on demand.

Answers

Answer:

A server?

Explanation:

I feel like this would be the answer but if it is multiple choice, reply with the possible answers. Hope this helps!

Write a function that takes the name of a file with a .csv extension (a comma-separated value file), and writes a new file that is equivalent (same name and same data) but with a .tsv extension (a tab-separated value file: like a CSV but with tabs instead of commas separating the elements of the file). Note: the character used to represent a tab is ‘\t’.

Answers

Answer:

import pandas as pd

def convert_to_tsv( csv_filename ):

   df = pd.read_csv("csv_file")

   df.to_csv("csv_filename.tsv", sep='\t')

Explanation:

The python program uses the pandas' module to read in the csv file in the function "convert_to_tsv". The file is saved as a tsv file with the pandas to_csv method and the " sep= '\t' " attribute.

Justify the following statement: “Some Americans’ sedentary lifestyles contribute to their poor health.”

Answers

It is essential that people are active in their lives to fulfill that basic biological need. This will allow blood flow to increase, which is beneficial for health. In addition, it can release healthy chemicals into the brain, which is beneficial for mood, energy, and well-being.

Answer:

Since the average American will spend 24 hours watching television per week, it is safe to say that they suffer from a lack of movement and exercise. This, in turn, will lead more Americans to be overweight and more likely to suffer from serious health problems! :)

Explanation:

What is the most efficient
form of transportation we
have?

Answers

Answer:

The bicycle is a tremendously efficient means of transportation. In fact cycling is more efficient than any other method of travel--including walking! The one billion bicycles in the world are a testament to its effectiveness

Explanation:

The bicycle is a tremendously efficient means of transportation. In fact cycling is more efficient than any other method of travel--including walking! The one billion bicycles in the world are a testament to its effectiveness.

When and how should resources be invested to close gaps between those who do and don’t use the Internet?

Answers

Answer:

To minimize the technological gap is necessary and not so hard.

Explanation:

The first form of solving it is to minimize the need to use the internet at home, so that users could save the data in some programs which could use afterward if needed, without the internet.

Access to the documents, books, and folders without the need for the internet would be the perfect solution.

The Internet has to be accessible in school so that the students who don’t have it at home could use the most of it in school. Also, the internet connection should be available in the spots around schools, cafes, libraries during the whole day.

Make the internet affordable for everyone.

what is 2D thinking and 3D thinking? i literally don't understand

Answers

Answer:

Two dimensional thinking implies concepts that are flat or only partially representative of the whole. Three dimensional thinking implies the first part of 2d thinking conjoined with intersecting dimensions rendering a deeper field of meaning.

Explanation:

PLEASE HELP WITH THIS "PROJECT"
Your users are young children learning their arithmetic facts. The program will give them a choice of practicing adding or multiplying.

You will use two lists of numbers.

numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]

numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6]

If the user chooses adding, you will ask them to add the first number from each list. Tell them if they are right or wrong. If they are wrong, tell them the correct answer.
Then ask them to add the second number in each list and so on.

If the user chooses multiplying, then do similar steps but with multiplying.

Whichever operation the user chooses, they will answer 12 questions.

Write your program and test it on a sibling, friend, or fellow student.

Errors : Think about the types of errors a user can make. Add at least one kind of error handling to your program.

Answers

numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]

numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6]

operation = input("Are you adding or multiplying? (a/m)")

i = 0

if operation == "a":

   while i < len(numA):

       try:

           answer = int(input("{} + {} = ".format(numA[i], numB[i])))

           if answer == numA[i] + numB[i]:

               print("You're correct!")

           else:

               print("You're wrong! The correct answer is {}".format(numA[i] + numB[i]))

           i+=1

       except ValueError:

           print("Please enter a number!")

if operation == "m":

   while i < len(numB):

       try:

           answer = int(input("{} * {} = ".format(numA[i], numB[i])))

           if answer == numA[i]*numB[i]:

               print("You're correct!")

           else:

               print("You're wrong! The correct answer is {}".format(numA[i]*numB[i]))

           i+=1

       except ValueError:

           print("Please enter a number!")

The type of error handling we perform is ValueError handling. Instead of getting an exception when the user enters a letter when they try to answer a math problem, we tell the user to enter a number.

I hope this helps!

Microsoft Word, Google Chrome, and Windows Media Player are examples of

Answers

Answer:

They are all examples of software.

if you give an actual answer I'll give brainliest​

Answers

Answer:it would be  200 and 470  in that box

Explanation:

The answer will be 200 and 470 in the box
Have a good day stay safe !
Can u mark me as brainlies

Write a program that inputs a filename from the user and prints to the terminal a report of the wages paid to the employees for the given period. The report should be in tabular format with the appropriate header. Each line should contain an employee’s name, the hours worked, and the wages paid for that period.

Answers

Answer:

filename = input("Enter file name: ")

file = open("filename", "r")

while file:

   line = file.readline()

   print(line)

file.close()

   

Explanation:

The python source code prompts the user for a file name (file extension included), opens the file and reads the content of the file to the end, one line at a time, and prints it.

Note that the file is closed at the end of the program to avoid leakage.

The program illustrates the use of file manipulation.

File manipulations are used to read from a file, and also write into it.

The program in Python, where comments are used to explain each line is as follows:

#This gets the file name

fname = input('Enter input file name: ')

#This prints the output header

print('Name\t\tHours\t\tTotal Pay')

#This iterates through each line of the file

for line in open(fname):

   #This gets the text on the current line

   cline = line.strip()

   #If the text is not empty,

   if cline != '':

       #This gets the name, wage and time worked on that line

       (name, wage, time) = cline.split()

       #This converts the time to integer

       time = int(time)

       #This calculates the total pay

       totalpay = float(wage) * time

       #This prints the employee details

       print(name,'\t\t', time,'\t\t' totalpay))

Read more about file manipulations at:

https://brainly.in/question/10211834

match the following
Group A Group B
Hub Connect different types of networks of same protocol
Router Twisted Pair cable
BNC terminator Transmission channel for WLAN
RJ 45 Connecting device within a network
Coaxial cable

Answers

Answer:

i can't understand this question.please repost it by. making it clear.


c) 64 + {40 ÷ (4-7 + 8)} - 10
please solve this ​

Answers

Answer:

62

Explanation:

A battery is connected to a light bulb in a circuit. There is a current of 2 A in the light bulb. The voltage of the battery is 1.5 V. What is the resistance of the light bulb?

Answers

Answer:

The current in a circuit is directly proportional to the electric potential difference impressed across its ends and inversely proportional to the total resistance offered by the external circuit. The greater the battery voltage, the greater the current.

Explanation:

difference between logical errors and syntax errors​

Answers

Since computer programs must follow strict syntax to compile correctly, any aspects of the code that do not conform to the syntax of the programming language will produce a syntax error. A logic error (or logical error) is a 'bug' or mistake in a program's source code that results in incorrect or unexpected behaviour.

4.8 Code Practice: Question 1

Instructions
Write a for loop to print the numbers 5, 10, 15 … 75 on one line.

Expected Output
5 10 15 20 25 30 35 40 45 50 55 60 65 70 75

Answers

Answer:

c = 1 # global variable

    jhjl jh

def add(): c = 1 # global variable

def add():

   print(c)

add()

   c = c + 2 # increment c by 2

   print(c)

add()

Explanation:

Answer:

for x in range(1, 16):

   print(x * 5, end=" ")

Explanation:

Hope this helps!

Which of the following is a good way to find a research topic

A. Personal Experience
B. Getting an idea from an advisor
C. Looking for the next step in the research process
D. All of the above

I need the answer quickly giving brainliest to the first person who answers

Answers

Answer:

Im bored wanna talk?

Explanation:

why make people act meaner online the. in person ​

Answers

Because they are scared to say something in real life. Behind a screen they are protected
Other Questions
What is the value of the expression 2 Superscript 6? In the night sky, the Milky Way (resembles, resemble) spilled milk. ASAPCan someone help me with this pleaseeee What is the major benefit of having membrane- bound organells what does each letter of pe = mgh mean? Write 4,275,000,000 in scientific notation According to the National Institute of Health, atrial fibrillation occurs if rapid, disorganized electrical signals causing the heart's two upper chambers, called the atria, to fibrillate. The term "fibrillate" means to contract very fast and irregularly. In atrial fibrilation, blood pools in the atria. It isn't pumped completely into the heart's two lower chambers, called the ventricles. As a result, the heart's upper and lower chambers don't work together as they should.Based on the passage above, how will atrial fibrillation affect blood pressure? It will lower blood pressure because less blood is pumped per beat. It will increase blood pressure because the heart is contracting faster. It will increase blood pressure because the atria fill fully with blood. It will lower blood pressure because blood volume drops in the atria. Dont know answer help!!! Shauna's Math teacher can grade 12 tests in 3 minutes. How long will it take for Shauna's Math teacher to grade 128 tests?HELP ITS DUE IN 5MINS which equation describes the nth term of the arithmetic sequence 2, -1, -4, -7 How does a balanced chemical equation demonstrate conservation of mass? (1) During the 1800s, many people in the U.S. moved to the West. (2) In the 1840s, people settled in the Oregon Territory. (3) The search for gold and silver attracted miners to California in 1849. (4) Homesteaders flocked to the Great Plains in the 1870s.Which sentence contains a direct object?4312 Which of the following does not show the Commutative Property of Addition or Multiplication? a. xy 9 = xyb. x + y = y + xc. yx = xyd. 3 + y = y + 3 What is the first step an interdisciplinary team should take when establishing a procedure What is an equation of the line that passes through the points (4,1) and (8, 5)? Put your answer in fully reduced form.HELP PLS 1. Balance the reaction: Ag + H2S + O2 Ag2S + H2O based on details provided in the text, which of the following is most likely the setting for the passage ? Atoms can bond together to form ionic compounds and molecule. -2m-6=-6m+8Someone pls help meeee !! How does Clarissa feel about Richard having been invited to lunch with Lady Bruton?