Consider a system having buddy system with physical address space 128 KB. Calculate the size of partition for 18 KB process

Answers

Answer 1

Answer:

size of partition for 18 KB process is 32 KILOBYTES. It divides by 2, till possible to get minimum block to fit 18 KB.


Related Questions

if person is male their username is the last 3 letters of their surname and the first 2 letters of their first name if a person is female their username is the first 3 letters of their first name and the last 2 letters of their last name. write an algorithm to output a username (Could you answer in Python pls)​

Answers

gender = input("What's your gender? (`male` or `female`): ")

firstname = input("What's your firstname?: ")

surname = input("What's your surname?: ")

username = ""

if gender == "male":

   username += surname[-3:]

   username += firstname[0:2]

elif gender == "female":

   username += firstname[0:3]

   username += surname[-2:]

print(f'Your username is {username}')

what is DMTS. Explain it​

Answers

Answer:

DMT — or N, N-dimethyltryptamine in medical talk — is a hallucinogenic tryptamine drug. Sometimes referred to as Dimitri, this drug produces effects similar to those of psychedelics, like LSD and magic mushrooms. Other names for it include: fantasia.

Explanation:

Answer:

DMT, abbreviation of Dimethyltryptamine, powerful, naturally occurring hallucinogenic compound structurally related to the drug LSD (lysergic acid diethylamide). DMT blocks the action of serotonin (a transmitter of nerve impulses) in brain tissue. It is inactive when taken by mouth and produces effects only when injected, sniffed, or smoked. The hallucinatory action

Explanation:

Major plant genera containing DMT include Phalaris, Delosperma, Acacia, Desmodium, Mimosa, Virola, and Psychotria, but DMT has been found even in apparently innocuous sources, such as leaves of citrus plants (Servillo et al., 2012), and in the leaves, seeds, and inner bark of mimosa tenuiflora

Write a program to find the largest and smallest numbers in a list.

Answers

Answer:

const arr = [14, 58, 20, 77, 66, 82, 42, 67, 42, 4];

const min = Math.min(...arr);

const max = Math.max(...arr);

Explanation:

This is javascript.

Math.min takes a variable number of arguments, so you use the spread operator (...) to turn the array into a list of arguments.

cual es el procedimientos para asistir en el transporte publico a personas discapacitadas

Answers

Answer:

Una discapacidad física o motora en una o más partes del cuerpo obstaculiza las acciones y / o movimientos de la persona con discapacidad. La discapacidad puede surgir porque las partes del cuerpo no han crecido completamente o están dañadas (anomalías físicas) o porque las funciones físicas están alteradas (anomalías funcionales).

En la mayoría de los casos, se proporciona una ayuda a las personas con discapacidades físicas graves para que puedan desenvolverse más fácilmente en la sociedad. Alguien con una discapacidad motora severa en las piernas a menudo usa una silla de ruedas. Las personas con una discapacidad motora de las manos (pérdida de la motricidad fina) o de los brazos pueden compensar esto con un manipulador o ayudas especializadas en tareas, como un dispositivo para comer o un dispositivo para girar las hojas.

Así, todos estos elementos deben ser posibles de ser insertados en los medios de transporte público como forma de ayudar a estas personas a trasladarse por estos medios, es decir, los autobuses, trenes, etc., deben estar adaptados para poder recibir allí a pasajeros en sillas de ruedas o con necesidades motoras especiales.

Online retailers can and should encourage every customer to sign up for regular emails from the retailer. To avoid spam filters, retailers should Group of answer choices automatically send regular emails to all customers send emails to all customers except those who request to be taken off the email list provide a check box that is checked by default during the checkout process for customers to sign up for emails provide a check box that is unchecked by default during the checkout process for customers to sign up for emails ANS:DPTS:1

Answers

Answer:

Provide a check box that is checked by default during the checkout process for customers to sign up for emails

Explanation:

I've seen this used the most so I would go with this answer.

The way online retailers get you is by showing you a prechecked email subscription with an unchecked TOS agreement. Your attention is then focused on the TOS agreement and not the agreement for promotions sent to you via email.

A is a distinctive characteristic of a virus or virus family.

Answers

Answer:

Assuming your talking about a computer virus(because your under the Computers and Technology section)

Also assuming you meant "What is a distinctive characteristic of a virus or virus family."

A computer virus is a software that was created with the intent of damaging a computer. Computer viruses can replicate them selves by modifying other software on the computer. Viruses such as file infectors can override the machine code of another application and inject its own malicious machine code to perform malicious acts. This is especially dangerous for the OS as the virus can override essential files.

Explanation:

Write an algorithm to convert lengh of your house from cm to meter​

Answers

Answer:

cm = 1000;

 

meter = cm / 100.0;

kilometer = cm / 100000.0;

 

print("Length in meter = " ,

              meter , "m");

print("Length in Kilometer = ",

            kilometer , "km");

Explanation:

This is in Python, hope you enjoy!

Write a method named isNumericPalindrome that accepts an integer parameter named num. If num is a palindrome the method must return true. Otherwise the method must return false. You can assume as a precondition that num has exactly 5 digits (i.e. it is between 10000 and 99999.) For example, 12321 is a palindrome while 12231 isn't because it's the same number if reversed. public boolean isNumericPalindrome(int num)

Answers

Answer:

Explanation:

The following code is written in Java. It is a method that reverses the number that is passed as an argument and compares it to its original version. Then it finally returns the results of the comparison as a boolean (either True or False). Two test cases have been created and can be seen in the attached image below.

   public static boolean isNumericPalindrome(int num) {

       String numString = Integer.toString(num);

       String reversed = "";

       for (int i = numString.length()-1; i >= 0; i--) {

           reversed += numString.charAt(i);

       }

       return numString.equals(reversed);

   }

A company has enlisted the help of TDojo Consulting Co. to assist them in designing an AWS disaster recovery solution for their on-premises bare metal servers and SQL databases. The implementation has to be robust, fast, and simple to use. It should also prevent any type of data loss from occurring. The company would like to keep track of the status of the migration. Which tool should the team adopt for the DR solution

Answers

Answer: CloudEndure Disaster Recovery

Explanation:

The tool that the team should adopt for the DR solution is the CloudEndure Disaster Recovery.

CloudEndure Disaster Recovery is the tool that helps in minimizing downtime and data loss through the provision of a fast and a reliable recovery of the servers into the AWS Cloud.

It also allows the user recover the environment from an unexpected infrastructure, data corruption, or malicious attacks.

You need to view the contents of /var/log/auth.log to get information about the users that have been logging on to the system. The auth.log file is a plain text, file so you decide to use the cat command to review the file. However, the display fills with text for several pages, and you can't see the entire file. What commands can you use to view the content of the auth.log file page by page? (Select TWO).

Answers

Answer:

more /var/log/auth.log

less /var/log/auth.log

Explanation:

The commands that can be used to view the content of the auth.log file page by page are:

more /var/log/auth.log

less /var/log/auth.log

Someone knows a good compiler for iPad? It has to be an app

Answers

Jedona is a good one

A specified group of banks get together and agree to use a blockchain for wholesale settlement of interbank transfers. This is most likely an example of a ........................ blockchain. Group of answer choices Permissionless Permissioned

Answers

Answer:

Permissioned

Explanation:

In this scenario, specified group of banks got together and joined forces by agreeing to use a blockchain for wholesale settlement of all interbank transfers. Thus, this is most likely an example of a permissioned blockchain.

Create a program that uses a separate module to calculate sales tax and total after tax.

Create a c++ program using console.h and console.cpp files that uses a separate module to calculate sales tax and total after tax.

Console

Sales Tax Calculator

ENTER ITEMS (ENTER 0 TO END)

Cost of item: 35.99

Cost of item: 27.50

Cost of item: 19.59

Cost of item: 0

Total: 83.08

Sales tax: 4.98

Total after tax: 88.06

Again? (y/n): y

ENTER ITEMS (ENTER 0 TO END)

Cost of item: 152.50

Cost of item: 59.80

Cost of item: 0

Total: 212.30

Sales tax: 12.74

Total after tax: 225.04

Again? (y/n): n

Answers

Answer:

I nor know this one oo abeg sorry

Select three physical forms of storage. USB drive Primary cache Magnetic storage Secondary cache Dynamic RAM Optical drive

Answers

Answer:USB drive

Magnetic storage

Optical drive

Explanation:

hope this helps

What is binary number system? Why is it used in computer system?

Answers

Answer:

Computers depend mainly on binary because it’s more time efficient for them to so.

Explanation:

It’s easier to identify 0 as “off” and 1 as “on”. As you may know, transistors are the fundamental blocks of microprocessors and ICs. The reasons this is the case is that these transistors form logic gates which can carry out basic logic operations. These logic gates are a huge step into making microprocessors/ICs/etc. And what do these logic gates depend on? They depend on binary.

Whoa whoa, wait a minute. Let’s first take a step back to know a thing or two about logic gates.

These logic gate can be constructed from transistors. They carry basic logic operations. You have one or more inputs “entering” the logic gate ——-> A certain operation is performed on them ——-> you get your output. The input is a voltage. This voltage it can be interpreted as an “on” or “off” according to the gate. Once again these offs and ons are 0s and 1s. For example the Inverter/NOT gate is a gate that simply takes an input and gives its inverse. For example:-

A low voltage/an “off” signal/ a “0” “enters” the NOT gate. ——-> A high voltage/an “on” signal/ a “1” is the result of the operation performed

(In the above example low voltage = “off” signal = 0, high voltage = “on” signal = 1)

As you can see, a 0 enters the NOT gate and a 1 comes out or vice versa. Now, if you were a logic gate, you’d prefer working with just 0s and 1s right? I would. This would be much easier to work with than a lot of different values.

It’s a herculean task to work with these though as a human. And fortunately, programming languages exist for giving the computer instructions to do in a “language” other than its own.

I nut bun is how binary liks bavlls

You've just deployed a new Cisco router that connects several network segments in your organization. The router is physically located in a server room that requires an ID card to gain access. You've backed up the router configuration to a remote location in an encrypted file. You access the router configuration interface from your notebook computer by connecting it to the console port on the router. You've configured the management interface with a username of admin and a password of password. What should you do to increase the security of this device

Answers

Answer:

Change the default administrative user name and password.Use an SSH client to access the router configuration.

Explanation:

Remember, we are told the default username and password were simply, "admin" and "password". From a security perspective, both the password and username are weak choices. Hence, to increase the security of the notebook computer where the router configuration management interface is found, it is best you change the password.

Next, by using a Secure Shell Protocol (SSH) client to access the router configuration, the security is enhanced considering the fact the new Cisco router would connect several network segments in the organization.

A driver that approaches a controlled intersection with a signal that is not working must:

Answers

You must stop at the intersection and proceed when you are aware that other turning or approaching vehicles,bicycles or pedestrians have stopped.

what is the difference between b and br tag​

Answers

Answer:

<b> tag is used to make the text bold. <br> tag is used to insert a line break into a text font.

Explanation:

The <b> tag in HTML is used to indicate the importance of the text. The text is written within <b> tag display in bold size. You can do that by using CSS also there is a similar tag <strong> tag that has a similar effect on content.

The <br> tag inserts a single line break. The <br> tag is useful for writing addresses or poems. The <br> tag is an empty tag which means that it has no end tag.

A local area network (LAN) is best described as a(n): Multiple Choice computer system that connects computers of all sizes, workstations, terminals, and other devices within a limited proximity. electronic library containing millions of items of data that can be reviewed, retrieved, and analyzed. method to offer specialized software, hardware, and data-handling techniques that improve effectiveness and reduce costs. system that allows computer users to meet and share ideas and information.

Answers

Answer:

computer system that connects computers of all sizes, workstations, terminals, and other devices within a limited proximity.

Explanation:

A local area network (LAN) refers to a group of personal computers (PCs) or terminals that are located within the same general area and connected by a common network cable (communication circuit), so that they can exchange information from one node of the network to another. A local area network (LAN) is typically used in small or limited areas such as a set of rooms, a single building, school, hospital, or a set of well-connected buildings. Some of the network devices or equipments used in a local area network (LAN) includes an access point, personal computers, a switch, a router, printer, etc.

Typically, a local area network (LAN) is best described as a computer system that connects computers of all sizes, workstations, terminals, and other devices such as switches, routers and access points (APs) within a limited proximity.

Why is it important for a photographer to understand the relationship between color and light?

Answers

Answer: Different light can cast a different impact on the picture. If a photographer knows how the light will change the picture, he or she can click the picture he wants.

can you give me some hints

What is the name of the the world cell of the internet?​

Answers

Mobile Web

How you even don't know the basic information

it's disgusting.

BIOS has two jobs. One is to boot up, or start, the computer. What is the other? Maintain the computer’s software firewall. Ensure the fastest possible Internet speed. Provide the basic interface for the hardware. Perform regularly scheduled memory backups.

Answers

Answer:

Provide the basic interface for the hardware.

Explanation:

30points!!!! Plz answer quickly
Select the correct answer.
What should be the ideal position of the image in a video if it is the main feature of the video?
A. bottom
B. right
C. left
D. center

Answers

Answer:

center

Explanation:

that is the focal point

Answer:

D

Explanation:

since it's the main feature of the video it would be best to put it on the center so that all focus is on it because if you put it in the corner or another position it won't be the main feature and definitely not the center of attraction.

I hope you understand.and sorry if it's wrong

explain the tearms alink and vlink​

Answers

Answer:

The alink (active link) color appears while the mouse is clicking the link. The vlink (visited link) is the color of the link after the user has already visited it.

Suppose you are given a sequence that is described by a formula, starting at index n=0. If you need to change the starting index to n=1, then you just need to replace n in the formula by n+...?

Answers

Answer:

[tex]n+1[/tex]

Explanation:

Given

[tex]n = 0[/tex] --- starting index

Required

Change the starting index to [tex]n = 1[/tex]

We have:

[tex]n = 0[/tex]

To change the starting index to k, we simply rewrite as:

[tex]n+k[/tex]

In this case; k=1; so, the starting index will be: [tex]n+1[/tex]

What is the name of the the world cell of the internet?​

Answers

Answer:

mobile web is the the world cell of internet

Audience centered public speakers are inherently sensitive to the

Answers

diversity of their audiences

Answer:

the diversity of their audiences

Explanation:

The HTML tag for the smallest heading is​ what​

Answers

Answer:

The HTML <h1> to <h6> tag is used to define headings in an HTML document. <h1> defines largest heading and <h6> defines smallest heading.

Explanation:

Hoda needs to create a chart that is associated with an Excel spreadsheet. She needs to ensure that if the data in the spreadsheet changes, the chart in her presentation will be updated. Which option must she choose?

Embed the chart.
Link the chart.
Insert the chart as a picture.
This cannot be done.

Answers

Answer:

the awnser is B

Explanation:

Answer:

B, Link the chart.

Explanation:

How are computers used in medical sector? Any 3 meaningful points.

Answers

Answer:

Computers such as the Cathode Ray Oscilloscopes are used to measure the blood pressure en heart beats in BPM.

Computers such small locomotive surgical cameras which provide surgeon's sight in the inner body of the victim during surgery.

Medical Imaging and Equipment
Medical PCs are often used to control medical devices that perform CT Scans, ultrasounds, MRIs, or blood tests. They can even be integrated into the equipment itself, saving space. Additionally, doctors and nurses are able to show patients their X-Rays and other images or videos to explain their condition and treatment.

Patient Monitoring
In hospitals, lives can be saved by machine monitoring. Computers now can control lab equipment, blood pressure monitors, heart rate monitors, and other important medical equipment, as well as notify staff if something is not right. In some cases, computers can aid doctors in procedures, making situations more safe and convenient for both the patient and the personnel. While computerized equipment is monitoring a patient, it is also collecting the data constantly so it can be accessed in the future if needed.

Research
Computers in the healthcare field have vastly increased the amount of knowledge that medical staff can access. Doctors can consult medical databases to learn more about a specific disease or treatment plan. Computers can run simulations to try and find causes and cures for diseases and work with other machines to increase the chance of success.
Other Questions
Determine the difference. 3/4 5/16 =? Find the coordinates of point X that lies along the directed line segment from Y(-8, 8) to T(-15, -13) and partitions the segment in the ratio of 5:2.A. (-11.5, -2.5)B. (-13, -7)C. (-5, -15)D. (-23, -5) What are ways using coordinate geometry, that I could determine that this is a trapezoid? Consider Line 1 with the equation: x = 17 Give the equation of the line parallel to Line 1 which passes through ( 3 , 8 ) : Juan is in a management development program with Cisco, a worldwide leader in information technology, networking, and cyber security solutions. Cisco is a manufacturer known for its routers, switches, and wireless units, but it has seen an increase in revenues related to services such as cloud computing. It's no surprise that services account for _______ percent of the economic output of the United States. which website is the most credible a website updated last weeka website updated a year ago a website updated five years ago a website updated ten years ago As a child diagnosed with Tourette's syndrome, Asperger's syndrome, and obsessive compulsive disorder, Jaylen Arnold has experienced bullying.When he was 8 he decided to take a stand. wat iz dis bul crupi made the hardest math problem, lets see if you can figure it outp.s. ingore the line right aside from the 7. so if i were to make a user fill in a story with HTML coding prompts (i need at least 4) can someone show me what i need to do i dont get it To make a position-time graph, you plot position relative to the starting point on the y-axis against the corresponding_______on the x-axis Ayuda doy coronita por favor reciprocal of. 07/11 what mean by expansion effect of heat Please help me with this Use the properties of logarithms to prove log, 1000 = log2 10. A rectangular swimming pool. Measures 16m by 20m. A path of uniform width is built around the pool. If the area of path is 100m^2, find the width of the path, giving your answer correct to 2 decimal places. which graph shows the solutions for the linear inequality According to the rational root theorem what are all potential rational roots of F(x)=9x^4-2x^2-3x+4 Standing your ground is primarily about protecting an individual from criminal charges true or False How do consumers obtain the carbon that they need for their life processes?They breathe it in from the surrounding air.They break down the plants and animals they eat.They absorb it from the surrounding soil.They absorb it from water through their pores.