1. Write code to make a paragraph 'YELLOW' in color?

Answers

Answer 1

Answer:

I will assume html.

<!DOCTYPE html>

<html>

<head>

<title>Hello World!</title>

<style>

#p {

color: rgb(255,255,0)

}

</style>

</head>

<body>

<p id="p">YELLOW</p>

</body>

</html>

Explanation:


Related Questions

Specify the correct order of steps necessary to use RDMA over converged Ethernet in Windows Server 2016.

Answers

Answer and Explanation:

RDM has two modes as physical and virtual and depends on the virtualization such as Physical RDM and Virtual DRM Physical RDM expose the SCSI device with the VM and get virtualized as SCSI command go direct the OS. VM takes the lower-level features of the SCSI device. Physical RDM has the following scenarios as Run the management agents Cost-effective to physical clustering Virtual RDM underlying the physical properties and appear as same as Disk file on VMFS volume. The device appears as virtualization and reads and writes the raw LUN. RDM includes the OS file locking and user-friendly names. RDMs with the attacked device and redundant of the independent disk. RDM uses a serial number to identify the SCSI device. SAN has compatibility mode and manages the storage and mirroring operations. Virtualization is a tool that can minimize administrative overhead while increasing scalability and cost. RDM provides the benefits which should be used in every situation. Virtual disk files are preferable to RDMs and provide a user-friendly name for the mapped device.

First Step :

Introduction to deployment guide

Step 2:

Test Basic Connectivity

Step 3 :

Configure VLAN

Step 4:

Configure DCB

Step 5:

RDMA cooenctivity

Step 6

Switch creation and testing

Step 7

Enabling SR IOV for guest RDMA

Adobe Indesign project 4 museum indesign file. The instructions are 70 pages long I cant sit still long enough to read them

Answers

Answer:

? Read on to learn about the possible reasons and resolutions. ... Check whether you have the latest update installed for InDesign. ... InDesign cannot open the file when your system does not have enough memory ... Copy page elements into a new document.

Explanation:

16238)
Which type of device often controls iot
tasks?
Desktop
Laptop
Samart phone
switch

Answers

Answer:

Consumer connected devices include smart TVs, smart speakers, toys, wearables and smart appliances. Smart meters, commercial security systems and smart city technologies -- such as those used to monitor traffic and weather conditions -- are examples of industrial and enterprise IoT devices.

writer an obituary about macbeth​

Answers

Answer:

hi

Explanation:

Joshua always participate in team meetings and comes up with ideas and suggestions. what quality is he demonstrating?
A. Honestly
B. Innovativeness
C. approahability
D. confidence
E. resourcefulness

its plato!! pls help!!​

Answers

Answer:

recoursefulness

Explanation:

because he is being a good recourse and is actively participating

Resourcefulness quality is demonstrated in this particular instance. Thus, option E is correct.

What is quality?

Quality refers to how well the goods adhere to all rules, regulations, and guidelines. the benchmark by which something is evaluated in comparison to other items of a similar nature; the level of brilliance of something.

The skill and ingenuity to deal with challenging circumstances or uncommon difficulties are referred to as resourcefulness. It entails overcoming challenges and limitations to solve problems and complete tasks. Making the most of your assets in order to create someone new or improved is another aspect of being resourceful.

Additionally, they possess the ability to remain resourceful in the midst of difficulty and come up with original solutions to challenges. Therefore, option E is the correct option.

Learn more about quality, here:

https://brainly.com/question/31317502

#SPJ2

Implement in a programming language of your choice the void function swap( a, b ) that exchanges the values of 2 passed actual int parameters a and b. State which language you select. Actual parameters a and b are 2 distinct addressable programming objects (variables).

Answers

Answer:

Javascript.

function swap(a, b) {

a = b;

b = a;

// can you explain more, aka for what to return

}

Explanation:

Part 3 (The stunner)

Answers

Answer:

nice :)

Explanation:

Answer: Once again, levers where we cant see.

i don’t know what subject to put this question in but does anyone know the difference between a quarter grade and "fin" grade on skyward bc my current quarter grade is very different from my grade on fin and i don’t know what it means

Answers

What's skyward? Explain plz and i'll update the answer.

A person wants to buy a house that cost $100,000 but she only has about 20,000 in her savings account she goes to a bank to see if they can help her the bank agrees to lend her enough money to buy the house but she has to pay the money back overtime. This situation best illustrates which function of money?

A. Measure of value
B.Medium of exchange
C.Standard of deferred payment
D.Store of value



Someone please help me ASAP.

Answers

Answer:

B

Explanation:

Since she is exchanging

d. Chipboard
4. Which component of a computer connects the processor to the other hardw
a. Motherboard
b. CPU
c. Punch card
d. Chip
5. Which is referred to the brain of computer?
a. Processor
b. RAM
c. ROM
d Hard drive
6. How many parts are consists in a computer for information processing cycle?
a. Only one part
b. Two parts
Three parts
d Four parts
7. Which among the following if absent, a computer is not complete?
a. Mouse
b. DVD
c. Projector
d. User
8
GET AT​

Answers

Answer:

7

Explanation:

You work part time at a computer repair store. You just upgraded the processor in a customer's computer. The computer starts, but it shuts down shortly after starting Windows. Because you know that the problem is related to the processor, you will check any issues related to the processor installation. In this lab, you task is to diagnose and correct the problem.

Answers

Answer:

Explanation:

If the computer is starting up and getting into windows then this means that the processor itself is not dead. First, check to see if the processor fan is spinning correctly when turning on the computer. If it is, then you will need to remove it, and make sure that the processor is perfectly slotted within the cpu slot and that no pins are bent. If this is the case, then clean the cpu top with an alcohol swab and reapply thermal paste. If it is overheating due to any of these reasons it would cause the pc to power off in order to preserve the processor. If none of these fix the problem then it might be a faulty processor or a problem with another component such as the RAM or power cables.

Q : Write a simple code, which basically takes a integer value from PC terminal and calculates the solutions on Arduino board and replays the answers to the PC terminal.


a. Power of given value.


b. If number is prime number or not.


you should upload your answers with *.c file with necessary comments.

Answers

Answer:

I have uploaded my answers with *.c file with necessary comments.

Explanation:

a. Power of given value.

A

#include <stdio.h>

int main() {

int base, exp;

long long result = 1;

printf("Enter a base number: ");

scanf("%d", &base);

printf("Enter an exponent: ");

scanf("%d", &exp);

while (exp != 0) {

result *= base;

--exp;

}

printf("Answer = %lld", result);

return 0;

}

b. If number is prime number or not.

#include <stdio.h>

int main() {

int n, i, flag = 0;

printf("Enter a positive integer: ");

scanf("%d", &n);

for (i = 2; i <= n / 2; ++i) {

// condition for non-prime

if (n % i == 0) {

flag = 1;

break;

}

}

if (n == 1) {

printf("1 is neither prime nor composite.");

}

else {

if (flag == 0)

printf("%d is a prime number.", n);

else

printf("%d is not a prime number.", n);

}

return 0;

}

Hope this helps!!!

Write multiple if statements. If car_year is 1969 or earlier, print "Few safety features." If 1970 or later, print "Probably has seat belts." If 1990 or later, print "Probably has antilock brakes." If 2000 or later, print "Probably has airbags." End each phrase with a period and a newline.

Sample output for input: 1995
Probably has seat belts.
Probably has antilock brakes.

My code:

car_year = int(input())

if car_year <= 1969:
print('Few safety features.')
elif car_year ==1970:
print('Probably has seat belts.')
elif car_year >= 1990:
print('Probably has seat belts.\nProbably has antilock brakes.')
else:
car_year >= 2000
print('Probably has airbags.')

My output that keeps failing:
Testing with input: 2001
Output differs. See highlights below.
Special character legend
Your output
Probably has seat belts.
Probably has antilock brakes.
Expected output
Probably has seat belts.
Probably has antilock brakes.
Probably has airbags.

Answers

Your problem is that you're using elif and if statements. As soon as one of your statements is true, the other ones don't run. You need to use multiple if statements instead of the elif and else statements. For instance:

car_year = int(input())

if car_year <= 1969:

   print('Few Safety features.')

if car_year >=1970:

   print('Probably has seat belts.')

if car_year >= 1990:

   print('Probably has antilock brakes.')

if car_year >= 2000:

   print('Probably has airbags.')

I wrote my code in python 3.8. I hope this helps.

Answer:

car_year = int(input())

if car_year <= 1969:

  print('Few safety features.')

if car_year >=1970:

  print('Probably has seat belts.')

if car_year >= 1990:

  print('Probably has antilock brakes.')

if car_year >= 2000:

  print('Probably has airbags.')

Explanation:

Just needed to change the capitol S on the previous code to a small s. Works just fine.  in Python.

What are the vitamins used for DNA Synthesis and Repair?​

Answers

Answer:

Vitamins C & E

Vitamin D

Vitamin B3

3. Comparing the Utopian and dystopian views of Technology according to Street (1992) which one in your view is more applicable to your society? Give at least three reasons for your answer.[15marks]

Answers

Answer:

Following are the explanation to the given question:

Explanation:

The impact of a social delay in the debate around this one is serious, real perceptions of technology. It higher employment brings a political use of new information technology to further fragmentation and anomaly amongst their representatives with the ability for the same technology. They explain this dichotomy in utopian or dystopian positions inside the following portion.

Perhaps the most important aspect of the utopia was its implicit idea that solutions to social problems are available technically. The technological effects on the community or populist forms of democratic engagement were defined often that is solutions.

Its claim from the group indicates that perhaps the Internet can promote political participation by enabling citizens to communicate easily across geographic and social frontiers. The claim suggests that this exchange would in turn promote the creation of new consultative spaces or new modes of collective activity. By comparison, the authoritarian model emphasizes the role of technology in transforming citizens' and policy interactions. Ward (1997) states which online referenda and proposals are typically described as mechanisms of change.

Nothing less prevalent today are futuristic internet interpretations. Privacy as well as material on the Internet was a topic of genuine responsibility and formed two of the biggest discussions on the possible negative effects of this technology. Cyber-tumblers' tales and facts about oneself are prevalent across the web. Online entertainment questions confront Web users from all segments of society. Online entertainment questions

I assume that technology's Dystopian perspectives are relevant to society.

Even though people from every side of the issue claim that this technology would have a utopian or dystopian effect on business or community, society will be adapted to cultural underperformers and much more rational interpretations become. The demands for the impact on society were less severe when society had used technology capabilities, such as phones, television, and even phone line.If they regard the web and all its technological trappings as just a panacea for democracy problems or not, that truth about the capabilities of the internet lies between these utopian or dystopian definitions, like most of the truth.To grasp this technology which is practically transforming society, we have to consider its extreme impact as goods that are culturally incomplete between social diffusion of the Web and digital adoption of technology.

A cookie recipe calls for the following ingredients:
• 1.5 cups of sugar
• 1 cup of butter
• 2.75 cups of flour
The recipe produces 48 cookies with this amount of ingredients. Write a program that asks the user how many cookies they want to make and then displays the number of cups of each ingredient needed for the specified number of cookies in the following format:

You need 5 cups of sugar, 3 cups of butter, and 7 cups of flour.

Note: Don’t worry about formatting the numbers in the output.

Answers

def cookie_Recipe(recipe):

   

   sugar=(0.03125*recipe)

   butter=(0.02083333333*recipe)

   flour=(0.05729166666*recipe)

   LF1=round(sugar, 2)

   LF2=round(butter,2)

   LF3=round(flour, 2)

   print("You will need:")

   print(LF1, "cups of sugar")

   print(LF2, "cups of butter")

   print(LF3, "cups of flour")

   print("To make", recipe, 'cookies')

recipe=int(input("How many cookies do you want to make?\n"))

cookie_Recipe(recipe)

The program is a sequential program and does not require loops, iterations, and conditions.

What is python?

Python is a general-purpose programming language.

The Python program that uses comments to clarify each line is as follows:

#This gets the number of cookies

cookies = float(input("Number of cookies: "))

#This calculates the amount of sugar

sugar = (1.5 * cookies) / 48.0

#This calculates the amount of butter

butter = cookies / 48

#This calculates the amount of flour

flour = (2.75 * cookies) / 48

#This prints the amount of sugar, butter and flour needed

print("You need ", format(sugar, '.2f'), " cups of sugar, ", format(butter, '.2f'), " cups of butter and ", format(flour, '.2f'), " cups of flour", sep='')

Therefore, the program is written above.

To learn more about python, refer to the link:

https://brainly.com/question/12867701

#SPJ2

Implement a class that simulates a traffic light. The next function advances the color in the usual way, from green to yellow to red, then again to green. Provide two constructors, of the public interface. Also supply a member function that yields the number of times that this traffic light has been red.

Answers

Answer:

Explanation:

The following is written in Java. It creates the trafficLight class which holds the currentLight string variable and a int count variable for the number of times the light has been red. It also contains two constructors one that takes the currentLight as a parameter and one that does not. Finally, it has the next() method which analyzes the currentLight status and changes it to the next light. Output can be seen in the attached picture below.

class Brainly

{

   public static void main(String[] args)

   {

       trafficLight traffic_light = new trafficLight();

       System.out.println("Current Light: " + traffic_light.currentLight);

       traffic_light.next();

       System.out.println("Current Light after change: " + traffic_light.currentLight);

       

   }

}

class trafficLight {

   String currentLight;

   int count = 0;

   public trafficLight(String currentLight) {

       this.currentLight = currentLight;

   }

   public trafficLight() {

       this.currentLight = "red";

       count++;

   }

   public void next() {

       if (this.currentLight == "green") {

           this.currentLight = "yellow";

       } else if (this.currentLight == "yellow") {

           this.currentLight = "red";

           count++;

       } else {

           this.currentLight = "green";

       }

   }

}

write a flow chart for lcm and its algorithim​

Answers

Answer: flowchart linked as an image

Explanation:

what is MIS when it refers to the dat base

Answers

A management information system (MIS) is a computerized database of financial information organized and programmed in such a way that it produces regular reports on operations for every level of management in a company. It is usually also possible to obtain special reports from the system easily.

Answer: A management information system (MIS) is a computerized database of financial information organized and programmed in such a way that it produces regular reports on operations for every level of management in a company. It is usually also possible to obtain special reports from the system easily.

HOPE THIS HELPS

Write the difference between left-sentential form and
right-sentential form

Answers

Answer:

answer is below

Explanation:

A left-sentential form is a sentential form that occurs in the leftmost derivation of some sentence. A right-sentential form is a sentential form that occurs in the rightmost derivation of some sentence.

Your disaster recovery plan calls for tape backups stored at a different location. The location is a safe deposit box at the local bank. Because of this, the disaster recovery plan specifies that you choose a method that uses the fewest tapes, but also allows you to quickly back up and restore files. Which backup strategy would best meet the disaster recovery plan for tape backups?

Answers

☞ANSWER☜

Store Physical Backup Media Offsite. Like data stored in the cloud, offline data stored on physical media is susceptible to unauthorized access. Offsite media storage helps significantly reduce the possibility of theft and physical damage to your media assets from fires, floods and natural disasters.

An incremental backup is one in which successive copies of the data contain only the portion that has changed since the preceding backup copy was made. ... Incremental backups are often desirable as they reduce storage space usage, and are quicker to perform than differential backups.

Imagine that you decided to film a video in SD because the video will mostly be shared on social mediaand you want it to be able to load quickly. What considerations do you need to take into account in order to make the video successful?

Answers

The considerations do you need to take into account in order to make the video successful are:

Select your video types.Decide on the platform(s) to us in sharing the video.Use prominent faces or celebrities on the video, etc.

How do one make a  video successful?

This can be done by:

Create goals for video marketingPlan content productionKnow the post-production detailsSchedule and also promote the videosKnow  and analyze metrics

Therefore, The considerations do you need to take into account in order to make the video successful are:

Select your video types.Decide on the platform(s) to us in sharing the video.Use prominent faces or celebrities on the video, etc.

Learn more about social media from

https://brainly.com/question/3653791

#SPJ1

Using a loop and indexed addressing, write code that rotates the members of a 32-bit integer array forward one position. The value at the end of the array must wrap around to the ?rst position. For example, the array [10,20,30,40] would be transformed into [40,10,20,30].

Answers

Answer:

//begin class definition

public class Rotator{

    //main method to execute the program

    public static void main(String []args){

       

       //create and initialize an array with hypothetical values

       int [] arr =  {10, 20, 30, 40};

       

       //create a new array that will hold the rotated values

       //it should have the same length as the original array

       int [] new_arr = new int[arr.length];

       

       

       //loop through the original array up until the

       //penultimate value which is given by 'arr.length - 1'

      for(int i = 0; i < arr.length - 1; i++ ){

           //at each cycle, put the element of the

           //original array into the new array

           //one index higher than its index in the

           //original array.

          new_arr[i + 1] = arr[i];

       }

       

       //Now put the last element of the original array

       //into the zeroth index of the new array

       new_arr[0] = arr[arr.length - 1];

       

       

       //print out the new array in a nice format

      System.out.print("[ ");

       for(int j = 0; j < new_arr.length;  j++){

           System.out.print(new_arr[j] + " ");

       }

       System.out.print("]");

       

    }

   

   

}

Sample Output:

[ 40 10 20 30 ]

Explanation:

The code above is written in Java. It contains comments explaining important parts of the code.  A sample output has also been provided.

Consider the following statements. An abstract class is better than an interface when the variables in the abstract class or interface are likely to have changing values. An interface is better than an abstract class when nearly all of the methods in the abstract class or interface are abstract. An abstract class is better than an interface if new methods are likely to be required in the abstract class or interface in the future. An abstract class is better than an interface if a sub class is likely to need to inherit more than one super class. Which of the choices below is correct?

a. I and Il are true
b. I and III are true
c. II and III are true
d. I, II, and III are true
e. I, III, and I are true

Answers

Well the nonchalant question given for 4th grade red named babyface Justin and Jerome

Whatever programming language you use will ultimately need to be translated into binary in order for the computer to understand it.

a. True
b. False

Answers

Answer:

Javascript:

function translate(what) {

if (what) {

return 1;

} else if (!what) {

return 0;

}

}

translate(true);

Explanation:

True is 1;

False is 0;

What is meant by a balanced budget?

A. inflows are greater than outflows

B. inflows are less than outflows

C. inflows are equal to income

D.inflows are greater than or equal to outflows.

Answers

Answer:

D.inflows are greater than or equal to outflows.

Explanation:

A budget is a financial plan used for the estimation of revenue and expenditures of an individual, organization or government for a specified period of time, often one year. Budgets are usually compiled, analyzed and re-evaluated on periodic basis.

A balanced budget is a type of budget in which inflows are greater than or equal to outflows. Thus, when cash inflows (income) is greater than or equal to cash outflows (expenses), a budget is said to be balanced.

The first step of the budgeting process is to prepare a list of each type of income and expense that will be integrated or infused into the budget.

This ultimately implies that, before preparing a budget, it is of utmost importance to know total income (inflows) and expenses (outflows).

The final step to be made by the management of an organization in the financial decision-making process is to make necessary adjustments to the budget.

In conclusion, the benefits of having a budget is that it aids in setting goals, earmarking revenues and resources, measuring outcomes and planning against contingencies. It is typically used by individuals, government, organizations or companies due to the fact that, it's tied directly to the strategy and tactics of a company on an annual basis. Also, it is used to set a budget for marketing efforts while anticipating on informations about the company.

Why is it easier to spot a syntax error than a logical error?​

Answers

Answer:

Even small typos that do not produce syntax errors may cause logic errors. ... The logic error might only be noticed during runtime. Because logic errors are often hidden in the source code, they are typically harder to find and debug than syntax errors.Explanation:

8.
A bank offers the following rate of interest for fixed deposit:
Time (Years)
Rate (%)
9.0
1 to 2
10.0
2 to 3
11.0
> 3
12.0
The amount (A) after n years is calculated by using the formula :
A = P (1 + r/100)
Where P = Principal amount deposited, ,
R = Rate of interest,
n = Number of years
Write a program to accept deposited amount (P), number of years the amount is deposited for (n) and compute
the accrued amount for an investor.​

Answers

Answer:

Simple interest does not add any interest rate on the interest amount ... r = Rate of Interest ... principal amount with the rate of interest and the tenure of the loan or deposit. ... (P x r x t) ÷ (100 x 12) ... Example 1: If you invest Rs.50,000 in a fixed deposit account for a period of 1 year at ... (5,00,000 x 18 x 3) ÷ 100 = Rs.2,70,000.

Explanation:

Unemployment rate is a macroeconomic measure that describes:
O A. the percentage of people who are looking for a job but cannot find
one.
B. the value of the goods produced in a country divided by its
population.
c. the total value of goods and services a country produces in a year.
D. the increase in prices of consumer goods over a period of time.



Someone help me ASAP pleaseeee

Answers

Answer:

c

Explanation:

Multiply the following two Tom's Tiny floating-point format numbers (8-bit: sign bit, 3-bit 2's complement exponent, 4-bit fraction). Make sure to correctly round the result before putting the answer back in the 8-bit format.

A = 10010011
B = 10101000
AxB = _______

Answers

Answer:

A*B =  00111100

Explanation:

Given data :

A = 10010011

B = 10101000

Find A * B

For A = 10010011  express in sign bit , exponent and number

repeat same process for B

attached below is a detailed solution

A*B =  00111100

Other Questions
why did observers declare American conservatism finished in 1964 Which expression is equivalent to 30 (3 + x)? 6, 10, 14, ...Find the 30th term. 4. Though we had heard the news, we refused to believe what part is dependendent clause Dose anyone know how to solve this? withdrawal occurs when alcohol is removed from the system after the brain has ? can someone help please and thank you:) How many moles are in 56.54 liters of CO2?I give Brainliest! If the radius of a circle equals 1.5 cm, find its circumference correct to three decimal places. What about this one to yes ik its 12:36 in the moring i need help lolAll careers in the sports and fitness field require you to earn a Doctorate degree.Question 1 options: True False what are the two solutions to x( 2x - 5) = 0 How do we calculate length without points given? Drag the tiles to the correct boxes to complete the pairs. Not all tiles will be used.Match each series with the equivalent series written in sigma notation. Read this sentence from paragraph 7.A study from Georgetown University showed that a languagecan be learned both in the classroom and through immersion but,in order to speak and think like a native speaker, you need to besurrounded by the language and culture."Which phrase from the sentence helps you understand themeaning of the word immersion? surrounded by the language and culture""like a native speaker" "A study from Georgetown University"in order to speak and think Hi everyone! could anyone of you help me with a project?This is for tomorrowwhat i need is information about this Suggested solution for tax reform in colombia/ Soluciones sugeridas para colombiai will give 22 points Chemical milling is used in an aircraft plant to create pockets in wing sections made of an aluminum alloy. The starting thickness of one workpart of interest is 20 mm. A series of rectangular-shaped pockets 12 mm deep are to be etched with dimensions 200 mm by 400 mm. The corners of each rectangle are radiused to 15 mm. The part is an aluminum alloy and the etchant is NaOH. The penetration rate for this combination is 0.024 mm/min and the etch factor is 1.75. Determine (a) metal removal rate in mm3/min, (b) time required to etch to the specified depth. Which constitutional power helps the President in the conduct of U.S foreign policy? A basket contains 7 apples and 6 peaches (10100)2-(111)2binary subtraction plz show process