Jazmine just finished setting up an operating system that's designed to work between a VM guest OS and computer hardware. What is the name of the operating system Jazmine is setting up?

Client
Host
Hybrid
Network

Answers

Answer 1

The name of the operating system Jazmine is setting up is option A: Client  operating system.

What  is the operating system running in virtual machines?

A guest or client operating system is known to be the operating system that one can installed on a virtual machine (VM) or on any kind of partitioned disk.

Hence, the name of the operating system Jazmine is setting up is option A: Client  operating system.

Learn more about operating system from

https://brainly.com/question/22811693

#SPJ1

Answer 2

Answer:

Host

Explanation:

I got it right on the test.


Related Questions

Careers and information technology deal with

Answers

Answer:

computers and telecommunications

Explanation:

Based on this simulator screenshot and the corresponding code block, what
is the player doing?

O A. Pressing only the "A" button
O B. Pressing both the "A" and "Menu" buttons
O C. Not pressing the "A" button
O D. Pressing both the "A" and "B" buttons

Answers

Based on this simulator screenshot and the corresponding code block, The  player is Not pressing the "A" button.

What is a Simulation?

A simulation is known to be the start of the operation of any kind of real-world process or system in course of time.

Note that in the case above, Based on this simulator screenshot and the corresponding code block, The  player is Not pressing the "A" button.

Learn more about simulator from

https://brainly.com/question/15892457

#SPJ1

Answer:

not pressing the a button

trust me i just did it

2.3.2

Explanation:

class Main {

static void printPowers(int howMany, int nrRows) {

int n=1;

while(n<=nrRows) {

int power = 1;

while(power <= howMany) {

System.out.printf("%d ", (int) Math.pow(n,power));

power++;

}

System.out.println();

n++;

}

}



public static void main(String[] args) {

printPowers(3,5);

}

}
1. Rewrite your method printPowers from 7B to use a for loop instead of a while loop.

2. Rewrite your method printPowers from 7B to use a do-while loop instead of a while loop.

Answers

Answer:

class Main {

 static void printPowers(int howMany, int nrRows) {

   for(int n=1; n<=nrRows; n++) {

     for(int power = 1; power<=howMany; power++) {

       System.out.printf("%d ", (int) Math.pow(n, power));

     }

     System.out.println();

   }

 }

 public static void main(String[] args) {

   printPowers(3, 5);

 }

}

class Main {

 static void printPowers(int howMany, int nrRows) {

   int n = 1;

   do {

     int power = 1;

     do {

       System.out.printf("%d ", (int) Math.pow(n, power));

       power++;

     } while (power <= howMany);

     System.out.println();

     n++;

   } while (n <= nrRows);

 }

 public static void main(String[] args) {

   printPowers(3, 5);

 }

}

Explanation:

The for loop gives the cleanest, shortest code.

Every problem has a solution, Now
what is the solution of this?

Answers

A. I put my solution in the comments

Discuss the key benefits organisations like Amazon gain after adopting Cloud Computing.

Answers

Answer:

larger access to storage and the ability to send and receive information at improved speeds

3.12.1: LAB: Instrument information (derived classes)

class Instrument:
def __init__(self, name, manufacturer, year_built, cost):
self.name = name
self.manufacturer = manufacturer
self.year_built = year_built
self.cost = cost

def print_info(self):
print('Instrument Information:')
print(' Name:', self.name)
print(' Manufacturer:', self.manufacturer)
print(' Year built:', self.year_built)
print(' Cost:', self.cost)


class StringInstrument(Instrument):
# TODO: Define constructor with attributes:
# name, manufacturer, year_built, cost, num_strings, num_frets


if __name__ == "__main__":
instrument_name = input()
manufacturer_name = input()
year_built = int(input())
cost = int(input())
string_instrument_name = input()
string_manufacturer = input()
string_year_built = int(input())
string_cost = int(input())
num_strings = int(input())
num_frets = int(input())

my_instrument = Instrument(instrument_name, manufacturer_name, year_built, cost)
my_string_instrument = StringInstrument(string_instrument_name, string_manufacturer, string_year_built, string_cost, num_strings, num_frets)

my_instrument.print_info()
my_string_instrument.print_info()

print(' Number of strings:', my_string_instrument.num_strings)
print(' Number of frets:', my_string_instrument.num_frets)

** I REALLY NEED HELP**

Answers

definitiva year vuelta const

Why did NFL equip its players with RDIF tags?

Answers

NFL equip its players with RDIF tags so as aid or support them to take a lot of statistical information about the players e.g. their position, speed, acceleration and others. The data taken is often used in making a lot of analysis and coaching decisions linked to the players.

Why did NFL equip it's players with RFID tags?

This is known to be often done so that it can aid location tracking, a lot of NFL equips each player with a minimum of two RFID tags.

Hence,  NFL equip its players with RDIF tags so as aid or support them to take a lot of statistical information about the players e.g. their position, speed, acceleration and others. The data taken is often used in making a lot of analysis and coaching decisions linked to the players.

Learn more about NFL from

https://brainly.com/question/15262528

#SPJ1

What does it mean when someone says your voice doesn’t match how u look

Answers

Explanation:

it means that your voice it doesn't match with your personality like 2 characteristics by voice and by personality

Olivia is an amputee who wears a prosthetic right hand. Which technology would most help her operate a computer?

Answers

nerve interface is technology that allows amputees to use thoughts to move prosthetics

Which of the following is an example of how cookies are used? To create a stronger password To customize advertisements based on your history To open a program on your computer To scan your hard drive

Answers

The one among the options that is an example of how cookies are used to customize advertisements based on your history.

What do cookies do?

A cookie is known to be a kind of a small text file that is said to be often saved on your computer if a person do visit any kind of websites.

Note also that  a cookie is often used to get one to often remember settings that they have their last visit to any website.

For example Amazon is known to often cookies to help to know if or when a person revisit the site.

Hence, The one among the options that is an example of how cookies are used to customize advertisements based on your history.

Learn more about cookies from

https://brainly.com/question/14102192

#SPJ1

Answer:

To customize advertisements based on your history

Explanation:

From coding with experience i know cookies are for history browsing

Pretend you work with a lot of different documents in an internship with a software development company. What kinds of actions can you take to keep your files, folder names, folder structure, and yourself organized? Be thorough in your answer.

Answers

In the case above, I will categories my files and also my folders using as names and structures. The file name will help me to know identify the file in  fast time.

What is file structure?

A file structure is known to be the ways or combination of depiction for data in files.

Hence, In the case above, I will categories my files and also my folders using as names and structures. The file name will help me to know identify the file in  fast time.

Learn more about files from

https://brainly.com/question/1178560

#SPJ1

What is referential integrity

Answers

The association between tables is referred to as referential integrity. A primary key is required for each table in a database and can appear in other tables as a result of its connection to the data in those other tables. Foreign keys are used when a primary key from one table appears in another table.

Why should you make sure the paper being used in a printer is dry and not damp?

Answers

Answer:

because the printer ink is liquid

Explanation:

you need a dry paper to let the ink sit in place and print out the exact same thing that u needed to print if you're printing on a damp paper there is a chance it will affect the output of whatever your printing

Using damp paper in a printer can lead to ink smudging, paper jams, reduced print quality, and potential damage to the printer.

We have,

Using dry paper in a printer is important because damp or wet paper can cause several issues:

- Ink Absorption and Smudging: Damp paper can absorb ink unevenly, leading to smudging, bleeding, and blurred printouts. The ink may not dry properly on damp paper, affecting the print quality.

- Paper Jam: Wet or damp paper can stick together or to printer rollers, increasing the likelihood of paper jams. This can damage the printer and disrupt the printing process.

- Curling and Wrinkling: Moisture can cause paper to curl, warp, or wrinkle, making it difficult to feed through the printer's mechanisms properly. This can result in misaligned printing and paper feeding issues.

- Print Quality: Wet or damp paper can affect the color saturation and clarity of the printouts, resulting in poor print quality and reduced legibility.

- Drying Time: If the paper is wet, it will need time to dry before it can be used in the printer. Printing on wet paper can result in a smeared or faded appearance due to the ink's interaction with moisture.

- Overall Printer Health: Consistently using damp paper can lead to printer damage over time, affecting various components like rollers, cartridges, and print heads.

Thus,

Using damp paper in a printer can lead to ink smudging, paper jams, reduced print quality, and potential damage to the printer.

Learn more about printers here:

https://brainly.com/question/5039703

#SPJ3

Explain download as used in computing environment.

Answers

Explanation:

Downloading is the transmission of a file or data from one computer to another over a network, usually from a larger server to a user device. Download can refer to the general transfer of data or to transferring a specific file. It can also be called to download, DL or D/L.

please mark be brainliest

List at least three kinds of harm a company could experience from electronic espionage or unauthorized viewing of confidential company materials.

Answers

The  three kinds of harm a company could experience from electronic espionage or unauthorized viewing of confidential company materials are:

Embarrassment and also the loss of customers as a result of data loss.The loss of what we call a proprietary information.The loss of what we call the sensitive business strategy information (such as  planned acquisitions, and other.).

What is E-espionage?

This  term e-Espionage is known to be a form of an unauthorized and it is often seen as a criminal access to a lot of confidential systems and information and it is one whose purpose is that they have or gain a lot of commercial or political advantage.

Hence, the types of espionage are:

Clandestine cell system.Counterintelligence, etc.

Therefore, The  three kinds of harm a company could experience from electronic espionage or unauthorized viewing of confidential company materials are:

Embarrassment and also the loss of customers as a result of data loss.The loss of what we call a proprietary information.The loss of what we call the sensitive business strategy information (such as  planned acquisitions, and other.).

Learn more about electronic espionage from

https://brainly.com/question/312313

#SPJ1

The unit MIPS is used to measure the speed of a___.
A) Disk drive
B) Tape drive
C) Printer
D) Processor

Answers

Answer:

D) Processor

Explanation:

MIPS refers millions instruction per sec and is used to measure the speed of Processor.

Give an example of SaaS (Software as a service) and explain why this can impact organisational security posture

Answers

In the case above, An  example of SaaS (Software as a service) are DropBox, UserGuiding and Salesforce.

How does SaaS (Software as a service) impact organizational security posture?

Software-as-a-Service (SaaS) security posture management (SSPM) is known to  be a kind of a group that is made up of an automated security tools that is used for tracking security threats in regards to SaaS applications.

What is organization level security in Salesforce?

The organizational level is known to be one that gives room for a person to decide if and from where a given users can be able to access the system.

Note that SaaS platforms is made up of software that is said to be available via third-party and they include BigCommerce, Salesforce and others.

Learn more about SaaS from

https://brainly.com/question/24852211

#SPJ1

In this lab, you complete a prewritten Python program for a carpenter who creates personalized house signs. The program is supposed to compute the price of any sign a customer orders, based on the following facts:

The charge for all signs is a minimum of $35.00.
The first five letters or numbers are included in the minimum charge; there is a $4 charge for each additional character.
If the sign is make of oak, add $20.00. No charge is added for pine.
Black or white characters are included in the minimum charge; there is an additional $15 charge for gold-leaf lettering.

Instructions
Make sure the file HouseSign.py is selected and open.
You need to assign variables for the following:
A variable for the cost of the sign assigned to 0.00 (charge).
A variable for the number of characters assigned to 8 (numChars).
A variable for the color of the characters assigned to "gold" (color).
A variable for the wood type assigned to "oak" (woodType).
Write the rest of the program using assignment statements and if statements as appropriate. The output statements are written for you.
Execute the program by clicking the Run button at the bottom of the screen. Your output should be: The charge for this sign is $82.0.

Answers

Using the computer language in python to write a function code that personalized house signs

Writting the code in python:

#Assign varibles

charge = 0.00

numChars = 8

color = "gold"

woodType = "oak"

#Checking for number of characters

if numChars > 5:

charge = 35 + (numChars-5)*4

elif numChars > 0:

charge = 35

#Checking wood type

if woodType == "oak":

charge += 20

#Checking for color

if color == "gold":

charge += 15

#Print output

print("The charge for this sign is $"+str(charge)+".")

See more about python at brainly.com/question/13437928

#SPJ1

printer runs out of paper during the printing job. A signal is sent back to the computer to stop temporarily its current task. Name this type of signal

Answers

The signal is sent back to the computer to stop temporarily its current task is known as interrupt signal.

What is  interrupt signal?

An interrupt is known to be a form of a signal emitted by any kind of device such as printer that is said to be attached to a computer or from a program that is seen in the computer.

Hence, The signal is sent back to the computer to stop temporarily its current task is known as interrupt signal.

Learn more about printer from

https://brainly.com/question/145385

#SPJ1

In cell I5, enter a formula without using a function that divides the General Medicine total in cell H5 by the annual total in cell H9 to display the department’s percentage of total revenue. Use an absolute reference for cell H9, and then enter the same formula without formatting from cell I5 to the range I6:I9.

Answers

The formula to enter in cell I5 is  = $H$5/H9

How to enter the formula?

The given parameters are:

Cell H5 = Medicine TotalCell H9 = Annual Total

To divide H5 by H9, we have

H5/H9

Cell H5 is to be referenced by absolute reference

So, we have:

$H$5/H9

To enter the formula in cell I5, we use the following:

= $H$5/H9

When the same formula is entered in I6 to I9, we have:

= $H$5/H10

= $H$5/H11

= $H$5/H12

= $H$5/H13

Read more about Excel formulas at:

https://brainly.com/question/14299634

#SPJ1

Why is it difficult to attribute a single driving motivation to a group like Anonymous (in a way that’s not true for, say, Wal-Mart, Amazon, or Apple)?

Answers

It is difficult to attribute a single driving motivation to a group like Anonymous  because the fact is that Anonymous is said to be way different based on their philosophy that do not really put or place itself onto one kind of central or main idea.

What is a driver motivation?

The term of a driving motivation to a group is known to be based on the  Theory of Needs that was given by David McClelland.

It states that are three key drivers for motivation and they are:

A  need for achievementThe  need for affiliation The need for power.

Hence, It is difficult to attribute a single driving motivation to a group like Anonymous  because the fact is that Anonymous is said to be way different based on their philosophy that do not really put or place itself onto one kind of central or main idea.

Learn more about motivation from

https://brainly.com/question/11871721

#SPJ1

can the charger of my laptop get infected with viruses also when it was connected to it?​

Answers

Answer:

Technically… yes. Because if the charging port is the same as a USB/etc connector port, then it can travel over that.

Explanation:

Type the correct answer in the box. Spell all words correctly.
Which professional American organization for designers has set up many standards and guidelines that its members have to follow?

Answers

The professional American organization for designers has set up many standards and guidelines that its members have to follow is known as ANSI.

What mean ANSI?

The American National Standards Institute (ANSI) is known to be a kind of private, non-profit organization that gives or coordinates the U.S. voluntary standards and the conformity in terms of assessment system.

Hence, The professional American organization for designers has set up many standards and guidelines that its members have to follow is known as ANSI.

Learn more about American organization from

https://brainly.com/question/19334871

#SPJ1

Answer: Institute of Graphic Arts

Explanation:

The American Institute of Graphic Arts (AIGA) is a professional membership organization for designers. 

AIGA has set up many standards and guidelines that its members have to follow. 

These standards may be ethical, professional, or even legal.

(Plato)

Pretend you work with a lot of different documents in an internship with a software development company. What kinds of actions can you take to keep your files, folder names, folder structure, and yourself organized? Be thorough in your answer

Answers

The kinds of actions that i will take to keep your files, folder names, folder structure, and yourself organized are:

I will make use of the Default Installation Folders.I will create one Place to place all Documents. I will make Folders using  Logical Hierarchy. I will also Nest Folders inside Folders.I will use the File Naming Conventions, etc.

How do I keep my folders organized?

For any kind of file arrangement it entails the act of keeping files in an organized manner that one can easily trace back if one is in need of that file.

There it is good to Sort your files every time such as once a week and as such:

The kinds of actions that i will take to keep your files, folder names, folder structure, and yourself organized are:

I will make use of the Default Installation Folders.I will create one Place to place all Documents. I will make Folders using  Logical Hierarchy. I will also Nest Folders inside Folders.I will use the File Naming Conventions, etc.

Learn more about files from

https://brainly.com/question/1012126

#SPJ1

List at least four items that security policy should include

Answers

Answer:

Purpose.

Audience.

Information security objectives.

Authority and access control policy.

Data classification.

Data support and operations.

Security awareness and behavior.

Encryption policy.

Draw the flow chart to find roots of Quadratic equation ax+bx+c=0

Answers

Using the knowledge in computational language in C++ it is possible to write a code that draw the flow chart to find roots of Quadratic equation.

Writting the code in C++:

#include <math.h>

#include <stdio.h>

int main() {

double a, b, c, discriminant, root1, root2, realPart, imagPart;

printf("Enter coefficients a, b and c: ");

scanf("%lf %lf %lf", &a, &b, &c);

discriminant = b * b - 4 * a * c;

// condition for real and different roots

if (discriminant > 0) {

root1 = (-b + sqrt(discriminant)) / (2 * a);

root2 = (-b - sqrt(discriminant)) / (2 * a);

printf("root1 = %.2lf and root2 = %.2lf", root1, root2);

}

// condition for real and equal roots

else if (discriminant == 0) {

root1 = root2 = -b / (2 * a);

printf("root1 = root2 = %.2lf;", root1);

}

// if roots are not real

else {

realPart = -b / (2 * a);

imagPart = sqrt(-discriminant) / (2 * a);

printf("root1 = %.2lf+%.2lfi and root2 = %.2f-%.2fi", realPart, imagPart, realPart, imagPart);

}

return 0;

}

See more about C++ code at brainly.com/question/19705654

#SPJ1

Which of the following tasks are suitable for creating an algorithm? Choose all that apply

Answers

A tasks are suitable for creating an algorithm are:

giving directions to a location.solving a math problem.tracking money in a bank account.tracking the number of items in inventory.

What is algorithm?

An algorithm is known to be a form of a procedure that is often employed in the act of solving a problem or carrying out a computation.

Note that in the case above, A tasks are suitable for creating an algorithm are:

giving directions to a location.solving a math problem.tracking money in a bank account.tracking the number of items in inventory.

See options below

giving directions to a location

saving time writing a computer program

solving a math problem

tracking money in a bank account

tracking the number of items in inventory

Learn more about algorithm from

https://brainly.com/question/24953880

#SPJ1

the word "computer" originally refer to as what

Answers

The term "computer", in use from the early 17th century (the first known written reference dates from 1613), meant "one who computes": a person performing mathematical calculations, before electronic computers became commercially available.

Explain three ways for the attacker to avoid raising alarms from intrusion detection systems.

Answers

IDS or Intrusion detection system is very powerful but clever attack can make it reckless

#1

Use Insertion attack

It generally denotes to sending dummy intruders in multiple amount the IDS gets confused and attacker can go

#2

Using codewords or doing encoding and decoding(Obfuscating)

Its very useful technique

#3

Using shell codes

IDS will be failed if you successfully implement it

The three ways for the attacker to avoid raising alarms from intrusion detection systems are

Explanation:

Session splicing and fragmentation - involve breaking, slicing, and splitting packets into multiple pieces such that no single packet causes the IDS to trigger an alert.

Invalid packets - Sending invalid TCP packets is another way of evading an IDS.

Polymorphic shellcodes -Most IDS systems have a standard default set of intrusion signatures. Attackers can modify the attack payload so that it doesn’t match the default IDS signature and gets through it.

Hope it helps, any confusion you may ask!

User enters menu items by name or an assigned item number.

Answers

Using the knowledge in computational language in python it is possible to write a code that uses enters menu items by name or an assigned item number.

Writting the code in python:

#Here, file1 is created as object for menu.txt and file2 as object for bill.txt

#It is done using the open() function.

#No module is required to be imported for this function.

#Here, r represents that this file will be used to read data

#and w represents "write"

file1 = open("menu.txt","r")

file2 = open("bill.txt","w")

#this is the welcome statement

print ("Welcome to the Delicious Restaurent:")

print("""Enter "I'm done" or "Exit" or "No" to stop the orders.\n""")

print("The menu is as follows:\nPlease enter the item no. to order.\n")

#readlines(): reads all the lines and return them as each line a string element in a list.

a=file1.readlines()

#we will iterate though each element and print it to the customer

for i in range(len(a)):

   print("{}) {}".format(i+1,a[i]))

   

#variable to store the total bill amount

total=0

#initialize the order variable with 1

order=1

#taking the input

order=int(input("\nEnter order: "))

#This loop will continue untill the customer will enter "exit" or "I'm done"

while(order not in ["i'm done", "I'm done" ,"Exit", "exit","No","no"]):

   

   #if customer enters "i'm done" or "exit", he will break out of loop

   if order in ["i'm done", "I'm done" ,"Exit", "exit","no","No"]:

       break

   

   #if customer enters any number between 1 to 12, that item will be added to his bill

   if order in range(1,13):

       

       print("Your order number {} is added.\n".format(order))

       

       #we will get that item by its order number

       item=a[order-1]

       

       #Here i am using string slicing to get the price(it is after the $ sign)

       #We will get the index of $ sign and use the number after that

       # for eg. "Egg burger $34.12"

       # indexi= 11 (Here $ is at 11th position)

       indexi=item.index('$')

       

       #prici will have the price

       prici=(item[indexi+1:])

       

       #add the price of that item to total value

       total+=float(prici)

       

       #write the item and its price to the output file

       file2.write(item)

       

   #For any other inputs, it will print ("Wrong choice")

   else:

       print("Wrong choice")

       

   #It will ask the user, if he/she needs more orders

   print("Do you want to add more")

   order=(input("Enter order: "))

   

   #it will convert the user input into an integer, if possible

   #because he may enter "exit" also.

   try:

       order=int(order)

   except:

       continue

#This is the case outside of the while loop.

#Here, Total amount is printed in the bill.

file2.write("----------------------\n")

file2.write("Your Total amount is $"+str(total))

#We need to close those files as well

#close() function closes the file and frees the memory space acquired by that file.

file1.close()

file2.close()

See more about python at brainly.com/question/18502436

#SPJ1

Other Questions
The nurse is caring for a client who has been treated with long-term antipsychotic medication. The nurse plans to monitor for tardive dyskinesia. Which signs would the nurse observe with tardive dyskinesia Rhetorical questions are great choices for introductions, but they should not be used in conclusions. Can someone help me What is the domain and range of each function?FIRST PERSON TO ANSWER GETS BRAINLIEST OR 5 STARS :DA) f(x) = 2xDomain:Range:g(x) = x2 + 5Domain:Range: A technological innovation in the production of electronic goods causes the supply for electronic goods to increase. write 5 consecutive odd integers preceding -31 Please help me with this ! the table to the right gives the per unit cost data for shirt manufacturer in a competitive industry. if the market price is $4.95 The discarded theory of blending inheritance most closely resembles what inheritance Which country and style of filmmaking influenced the german film industry prior to world war i? group of answer choices america/realism france/modernism sweden/symbolist not a, b or c. How many watts of power are needed to exert a force of 30 n over a distance of 100 m for 1 minute? Two boys, John and Peter, are running a 100-meter race. In the first race that they run John beats Peter by 5 meters. To make things fair, the next time they race John stands 5 meters behind the starting line. If they run at the same speed as the first race, who will win the second race PLEASE HELP IM SUPER STUCK In the context of gazing behavior, our pupils dilate when we are looking at something tha? Directions: read the passage, and answer the question that follows. did the cow do it? on october 8, 1871, a fire raged through chicago, illinois. the fire started at around 9 p m near the home of catherine and patrick o leary. within hours, the fire was completely out of control. mills, factories, office buildings, and homes quickly burned. thankfully, the fire began to subside on the morning of october 10, and fears that it might start again ended when the skies opened up and steady, soaking rains began to fall. however, the fire had destroyed an extensive area. about 300 people were killed. nearly 100,000 people were made homeless, and there was more than 200 million dollars in property damage. how did the fire begin? according to legend, a cow in the o leary barn kicked over a kerosene lantern, and the hay on the floor caught fire. however, many people are skeptical about the story because there is almost no proof of what actually happened. in late 1871, the board of police and fire commissioners investigated the fire, and more than 1,100 pages of written testimony were taken. however, the cause of the fire was never determined. even so, the legend of the o leary cow lives on. write a summary of the passage. remember, a summary should be much shorter than the passage. try to write between 2-3 sentences. Make w subject of formulaC=(4+w)/(w+3) ___ once ruled over one-fourth of the world. a. sweden b. scotland c. the united kingdom d. france For the graph y = 1 find the slope of a line that is perpendicular to it and the slope of a line parallel to it. Explain your answer with two or more sentences. H 3 C C H 2 C H 2 N H C H 2 C H 3 Spell out the full name of the compound. Which of the followine was not true regarding the reaty or Versailles?A. It was not agreed to by the United States B. It forced Germany to pay massive reparations to the AlliesC. It placed sole blame for the war on GermanyD. It allowed for self determination for all colonize people