In doing a load of clothes, a clothes drier uses 18 A of current at 240 V for 59 min. A personal computer, in contrast, uses 3.0 A of current at 120 V. With the energy used by the clothes drier, how long (in hours) could you use this computer to "surf" the Internet?

Answers

Answer 1

Answer:

11.76 hours or 11 hours 45 minutes

Explanation:

Given

[tex]Current\ for\ drier = I_d = 18A\\Voltage\ for\ drier=V_d=240V\\Time\ for\ drier=t_d=59\ min[/tex]

We have to convert minutes into hours

So,

[tex]t=\frac{59}{60} = 0.98\ hours[/tex]

[tex]Current\ for\ Computer=I_c=3.0A\\Voltage\ for\ computer=V_c=120V[/tex]

As we are given that we have to find the time the computer will sustain using the same energy as the drier. So,

[tex]I_d*V_d*t_d=I_c*V_c*t_c\\18*240*0.98=3*120*t_c\\t_c*360=4233.6\\t_c=\frac{4233.6}{360}\\ t_c=11.76\ hours[/tex]

Converting into minutes will give us: 11 hours 45 minutes

Therefore, with the same energy used by the drier, the computer can be used 11.76 hours to surf the internet ..


Related Questions

What does the following function return? double compute speed(double distance); A. a double B. distance C. an integer D. nothing

Answers

Answer:

A. a double

Explanation:

The syntax of the function is:

type name( argument_1, argument_1,...... )

{  

    statement;

}

In the above syntax "type" define the return type of the function.

for example:

int count( int n);

so, it return the integer. Because the return type is 'int'.

In the question,

double compute speed(double distance);

Here, the return type is double. So, it return double.

The MOVZX instruction can be used only with_____________ integers.

Answers

Answer: The MOVZX instruction can be used only with unsigned integers.

Explanation:

The MOVZX instruction allows to move a value from a smaller source to larger source ,by the method of padding it focuses on the most significant bits of the targets with zeroes . The destination for MOVZX should be a register only.  MOVZX cannot be used with any other type of integer such as signed integer etc except for that it can be used with unsigned integers only.

What is the comment marker in Python? ("character marker" means the sequence of characters that indicates the beginning of a comment.)

Answers

Answer:

The # marker is used to mark a line comment in python.

Explanation:

The line that starts with # is a comment.Python will ignore the lines that starts with #.These comments can be used to add extra information in the python code.

For example:-

Following is the python code with comments.

names=['sam','optimus','bumblebee'] #names is the list of transformers characters.

for i in names:

     print(i)  #printing the names.

There are 2 comments in the python code written above.These are ignored by python.

The true or false questions.

If find is run with no -exec option, then find will not take any action on the found files and there is no output to screen.

Answers

Answer:

false

Explanation:

-exec option is not mandatory for the find command.

find will still list out the identified files even in the absence of -exec option.

For example:

find . -name test -print

will print out files with the name 'test' in the current directory. Note that there is no exec option in this example.

Same holds true for find with no additional options at all.

For example:

find .

will list out all files in the current directory.

What is the binary system?

Answers

Answer:

In mathematics and digital electronics, a binary number is a number expressed in the base-2 numeral system or binary numeral system, which uses only two symbols: typically "0" and "1". The base-2 numeral system is a positional notation with a radix of 2. Each digit is referred to as a bit.

Answer:

The binary number system is an alternative to the decimal (10-base) number system that we use every day. Binary numbers are important because using them instead of the decimal system simplifies the design of computers and related technologies. ... But if the second digit is 1, then it represents the number 2.

Explanation:

How to write a Cprogram to print all the prime numbers between 1and n where n is the value supplied by the users.

Answers

Answer:

#include <stdio.h>

int main()

{

   int i, j, n, prime;

   printf("Enter till where we want to find prime number: ");

   scanf("%d", &n);

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

   {

       prime = 1;  

       for(j=2; j<=i/2; j++)

       {

         

           if(i%j==0)

           {

               prime = 0;

               break;

           }

       }

       if(prime==1)

       {

           printf("%d, ", i);

       }

   }

   return 0;

Explanation:

A number  which is divisible by 1 and itself is called prime number. Here in the program we start by taking number from 1 to n , where n is the last number till which we are required to find prime numbers. Then we start the loop by taking two for loops one for running the numbers from 1 to n and the inner for loop to check whether the number is divisible other than 1 and itself. We take the current number as prime =1. If the number is still not divisible by number other than 1 and itself we consider that number to be prime and print it.

Which of the following is the correctsyntax for commenting in Java?# Enter CommentsHere/* EnterComments Here*/** Enter CommentsHere **

Answers

Answer:

/* EnterComments Here*/

Explanation:

/* EnterComments Here*/   is the right syntax for comments in java.

we can use double farword slash (//)  for single line comment and for mutliple line we can use /* comments here */ and for documentation comment we use below syntax-

/**

*

*

*/

Write a program that takes two ints as input from the keyboard, representing the number of hits and the number of at bats for a batter. Then calculate the batter’s hitting percentage and check if the hitting percentage is above .300. If it is, output that the player is eligible for the All Stars Game; otherwise, output that the player is not eligible. Maintain floating point precision when calculating the hitting percentage.

Answers

Answer:

Hi!

// First you have to initialize the variables.

int hits = 0;

int atbats = 0;

float percentaje = 0;

function eligible() {

    hits = inputHits(); //  Function that input the hits.

    atbats = inputAtBats(); //  Function that input the at bats.

    percentaje = hits/atbats; //  Now, you can calculate the percentaje.

    if( percentaje > 0.300) { //If percentaje if greater than .300 will print Eligible for the All Stars Game.

         print('Eligible for the All Stars Game.');

          } else { //Otherwise will print Not elegible.

             print('Not elegible.');

         }

     }

}

Explanation:

-Give a definition of the critical section problem and explain the purpose of the entry and exit code blocks

Answers

Answer: In operating system a code segment which accesses  some shared variables or resources one at a time atomically such other no other code or process is accessing that resource or variable at the same time.

Entry section code block allows the access to the shared resource or variable and exit section code signals the termination from access to the shared resource or variable.

Explanation:

Entry and exit section codes needs to check certain properties before allowing the access and removal of access to a particular code segment.

These conditions are:

1. Bounded waiting.

2. Mutual exclusion.

3. checking thread execution status to allows other threads to enter the critical section (CS).

The height of building A is 210 m and the height of building B is 350 m. The two are 240 m away from each other. How long should a ladder be for a person to go from the top of A to the top of B.

Answers

Answer:

The length of the ladder should be 277.85 meters long

Explanation:

Great question, it is always good to ask away and get rid of any doubts that you may be having.

I have created an illustration and attached it as a photo below to better help you understand the situation. As seen on the illustration the difference in height of Building B from Building A is,

[tex]350m-210m = 140m[/tex]

Now that we have the difference we need to find the length of the ladder which is the hypotenuse between the two buildings. We can calculate this by using the Pythagorean theorem which is the following

[tex]h^{2} = a^{2} +b^{2}[/tex]

Now we can plug in the values and solve for the hypotenuse (h)

[tex]h^{2} = 240^{2} +140^{2}[/tex]

[tex]h^{2} = 57,600 +19,600[/tex]

[tex]h^{2} = 77,200[/tex] ... square root of 77,200

[tex]h = 277.85m[/tex] .... rounded up

Therefore, the length of the ladder should be 277.85 meters long

I hope this answered your question. If you have any more questions feel free to ask away at Brainly.

Data Analysis The Iris Plants Database contains 3 classes of 50 instances each, where each class refers to a type of Iris plant. Five attributes/features were collected for each plant instance. 1. Implement an algorithm to read in the Iris dataset.

Answers

Answer:

35

Explanation:

An abstract method ____.

is any method inthe abstract class
cannot beinherited
has nobody
is found in asubclass and overrides methods in a superclass using the reservedword abstract

Answers

Answer:

has no body.

Explanation:

An abstract method is a method which has no body.

It is contained in a class which is marked as abstract.

The implementation of such method is specified in a subclass.

For example:

//abstract class

abstract class myClass{

  /* Abstract method */  

  public abstract void mymethod(int a, int b);

}

//Concrete class extending abstract class

class Concrete extends myClass{

  public void mymethod(int a, int b){

return a+b;

  }

}

. Consider a logical-address space of eight pages of 1024words each, mapped onto a physical memory of 32 frames.
a. How many bits are in the logical address?
b. How many bits are in the physical address?

Answers

Answer:

a)13 bits

b)15 bits

Explanation:

a)

It takes 10 bits to address within a 1024-word page because 1024= 2^10.

Since the logical address space is 8 = 2^3 pages,

We will add 10 bits for 1024 words

10 + 3 = 13 bits must be the logical addresses.

b)

There are 32 = 2^5 physical pages.

We will add 10 bits for 1024 words

Similarly, physical addresses are 5 + 10 = 15 bits long .

Write the sum of products, the canonical product of sums, theminterm shorthand and the maxterm shorthand for the following:

F(A,B,C) = A'B'+ AB'C + A'B'C'

Answers

Answer:

SOP=AB'+B'C

POS=B'(A'+C)

Shorthand Minterms=m₀+m₁+m₅

Shorthand Maxterms=M₃+M₂+M₄+M₆+M₇

Explanation:

For the full explanation of this question refer to the image attached which is of the k-Map of F.As we can see in the k-map that there are only 3 ones.by making 2 pairs of 1 we get the SOP expression.

Rest of them are zero from there we will get the POS expression.

The one's in the k-map represent the Minterms and 0's represent Maxterms and the number written in the box is their respective minterm and maxterm number.Minterms are represented by m and maxterms are represented by M.

A ____ is a text document written in HTML.
Answer
Web browser
Web page
Web server
Web site

Answers

Answer:

Web page

Explanation:

A Web page represents content formatted in HyperText Markup Language ( HTML). Web Browsers like internet explorer,firefox or google chrome can interpret this content and display the page as specified in the markup. If we access any webpage on the browser and view its source we can see the HTML content underlying the webpage.

Create a Java static method named getAverageOfFours that takes an array of integers as a parameter and returns the average of the values in the array that are evenly divisible by 4. Your method must work for an int array of any size. Example: If the array contains [10, 48, 16, 99, 84, 85], the method would return 49.33333.

Answers

Answer:

public class average{

   

   public static float getAverageOfFours(int[] arr){

       

       int n = arr.length;

       float sum = 0;

       int count=0;

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

           if(arr[i]%4==0){

               sum = sum+arr[i];

               count++;

           }

       }

       float avg = sum/count;

       return avg;

       

   }

    public static void main(String []args){

       

        int[] array = {10, 48, 16, 99, 84, 85};

       

        float result = getAverageOfFours(array);

        System.out.println("The average is "+result);

    }

}

Explanation:

Create the function with one parameter and return type is float.

Declare the variable and store the size of array. Take a for loop for traversing in the array and and check the element is divisible by 4 or not by using if statement. If condition true take the sum and increment the count.

This process continue until the condition is true.

finally take the average and return it.

Create the main function for calling the function with pass the array as argument and also define the array.

After that print the result return by the function.

Why we called COBOL as a professional language and not ataught language.(

Answers

Answer:

COBOL(Common Business-Oriented Language)

COBOL was designed in industries such as finance and human resources for business computer programs. COBOL uses English syntax which make it easier for ordinary business users to understand computer programming languages.

COBOL is used to develop applications for businesses. We can say it is not a taught language because we don't learn it as teaching tool ,we use it in practical applications.

The collection of all component frequencies iscalled _____________

a. Frequency Spectrum

b. Bandwidth

c. Throughput

d. None of the given

Answers

Answer:

The answer is Frequency Spectrum.

Explanation:

The frequency spectrum is range of all component frequencies.It contains all the waves which are as following:-

Gamma Rays

X-Rays

Ultraviolet

Visible light.

Infrared

Micro wave

Radio wave

These all waves have their range of frequencies.The waves that are visible to us is only the visible light.

Convert the following do-while loop to a while loop: char sure; do { cout << "Are you sure you want to quit? "; cin >> sure; }while (sure != 'Y' && sure != 'N');

Answers

Answer:

char sure;

   cout << "Are you sure you want to quit? ";

   cin >> sure;

   while (sure != 'Y' && sure != 'N'){

       cout << "Are you sure you want to quit? ";

       cin >> sure;

   }

Explanation:

The loop is used in the programming for executing the part of code or statement again and again until the condition is not false.

do-while is the loop statement but it has a special property, it prints the statement first then checks the condition.

So, the loop executes the statement once, if the condition is false in the starting.

In the other loops, condition checks first and then execute the statement accordingly.

To change the do-while to while, we write the statement once outside of the loop in the starting then execute the loop and put the same statement inside the loop and it runs again until the condition true.

After the above change, while loop works the same as do-while.

How to find IPaddress for DSL modem

Answers

Explanation:

The DSL modem has it's own IP address. We can use the windows command prompt tool to find the IP address for the DSL modem.

Below are the steps to find IP address for DSL modem:-

1. At first we need to hit the Windows Start button

2. Then type "cmd" in the Search box and press the Enter key to open the command prompt.

3. At the command prompt, type "ipconfig /all" and press the Enter key to run the command.

4. Focus on the Default Gateway value. The IP address mentioned for the Default Gateway is actually  the IP address for the DSL modem.

The statement ____ declares intList to be a vector and the component type to be int

A.
vector intList;

B.
int.vector intList;

C.
int.vector intList;

Answers

Answer: vector<int> intList

Explanation:

Using the above declaration we can declare intList to be a vector and the component type to be int.

example:

int main()

{

vector<int> intList

   intList.push_back(1);                          

   intList.push_back(2);                          

   intList.push_back(3);                        

   printList(intList);  // printing the list

}

What are 2 main differences betweenarrays andstructs?

Answers

Answer:

The two main differences between arrays and structures are as following according to me :-

1. Array is collection of data elements of same data type while a structure is collection of variables of different data types.

2.Array is a primitive data type while structure is a user defined data type.

There are other differences also which are as following:-

1. The size of array is fixed while the size of structure is not fixed as structure can contain different variables of different data types.

2.array is declared as following :-

int array [100];

where 100 is the size of the array means it can store up to 100 integer values.

struct class{

int roll_number;

char *name;

int admission_no;

};

3.Traversing and searching in an array is easy and fast while it is difficult and slow in structures.

When a function accepts multiple arguments, does it matter in what order the arguments

are passed?

Answers

Answer:

yes, it matter in what order the arguments  are passed.

Explanation:

when we define the function in the programming, you have to call the function as well.

In the calling function, we passed the arguments.

In the define function, parameters in declare for taking a copy of the arguments.

for example:

int print(int value, double price, char a){

    statement;

}

//calling

print(5, 7.8, 'a');

So, in the calling function the order of the argument changed, it gives the compile error.

because 5 is the integer, so you have to store in the int parameter.

print(7.8, 5, 'a'): if we try to do that, 7.8 which is double store in the wrong integer parameter, it gives the wrong output.

similarly, if we define the array in the parameter and pass the integer in the argument on the same location. it gives the compile error.

Therefore, the location must be the same.

x=10 ;
y= 15;
mystery (x,y);
void Mystery (int one , int two )
{
int temp;
temp = one;
one = one ;
two = temp;
}
3 What are the values ofx and y after thestatements above execute? (Assume that variables are properlydeclared.)
a.

x = 10; y = 10

c.

x = 15; y = 10

b.

x = 10; y = 15

d.

x = 15; y = 15

Answers

Answer:

The answer is x=10; y=15;

There is no change in the values of the variables x and y.

Explanation:

The integer variables x and y are initialized to 10 and 15 respectively as given.

x=10 ;

y=15 ;

The values of variables x and y are passed as parameters to another method, as shown.

mystery (x, y);

The mystery method given in the question is used to assign the same value to both the variables. The value of both the variables hold the value of x, i.e., both the variables hold the value of 10.

void Mystery ( int one , int two )  

{  

// temporary

int temp;  

// temp initialized to value of variable one which contains the value of variable x

// temp = x or temp = 10

temp = one;

// one is initialized to the value of itself or value of x

// one = x or one = 10

one = one ;

// temp is assigned value of variable x through variable one

// temp = 10

// y is also assigned value of temp variable

// y = 10

two = temp;  

}

As shown in the above steps, the mystery method is used to assign same values to variables one and two.

The values of original variables x and y are not affected since x and y are not utilized or called inside the mystery method.

This type of passing of parameters to a method can be described as passing a copy of the values of the parameters to the method.

Value of variable x is passed into variable one while value of variable y is passed into variable two.

Hence, values of variables one and two can be changed and modified without affecting the values of original variables x and y.

In half-duplex communication between two hosts, both hosts can transmit, and both hosts can receive, but hosts cannot transmit and receive simultaneously.

a) True b) False

Answers

Answer:

True: In half Duplex communication both of the hosts can transmit and receive. But can not do both job simultaneously.

when one host is sending other one can receive but can not transmit. And the receiving host waits for the transmitting host to finish transmitting, before it starts transmitting from it's end.

When one host is receiving other one can transmit.

For example- The communication system of army people. when one person talks the person in the other end has to wait till he finishes. They can not talk simultaneously.

Explanation:

Where in full duplex the both hosts can transmit and receive simultaneously, in half duplex system that's not possible.

Do mouse cable connect to a PS/2 or USB port?

Answers

Answer:

USB port

Explanation:

A  mouse cable connects to a USB port.

You are able to remove it from your computer if needed and put it into a different computer or device.

Using static arrays, depending on the number of servers specified by the user, a list of servers is created during program execution.

True

False

Answers

Answer:

False

Explanation:

Static arrays are stored on the stack , having fixed size and scope within functions.

Example-

               int arr[10];

Static arrays can't update the values given by the user at the time of execution, they are initialized with some default values.So,we can't create list of servers at the time of program execution.  

But we can create list of servers using Dynamic arrays, because size is not fixed as it stores in heap and update at the time of execution.  

Example-  

              int* arr = new int[10];

              delete[] arr;

Briefly explain the key points(including benefits/drawbacks) about the Water Fall life-cycle
model.

Answers

Answer:

The water fall life cycle model is explained as:

The waterfall life cycle model is defined as a sequential designed process in which progress are flowing steadily downwards through the process of analysis, design, testing and maintenance. It is the process of managing the development when something is complex.

Benefits:

It is a top down approach which breaks the tasks into a series of necessary goals that can important in the development process.Easy to maintain and use this approach. It can be easy to manage each phase has specific outputs and review process.

Drawbacks:

It takes a lot of time to properly document a system.The requirements cannot be changed in any phase.Risk and uncertainty are higher in this case.

How would a static local variable be useful?

Answers

Answer: Static local variable is a variable that is initialized as static only one time inside a function and whenever it is called in that function it will be accessible.

Explanation: Static local variables are very useful variables which are declared as static in a particular function. Static local variable is initialized only one time in a function and whenever the function in which it has been declared ,the value of the variable will be accessible by as many times it has been called in the function in which it is declared.

Which would be the best user error message?

A) Invalid Parameter
B) You must type a user name to continue.
C) You enter a user name to continue.
D) Gotcha! Type in a your user name.
E) Point the cursor on the user name and type one, please.

Answers

Answer: B. You must type a username to continue.

Explanation: "you must type a username to continue" is the most suitable error message of all the options given because it is the appropriate way and user-friendly approach to the user for correcting the error as compared to other options which consist of inappropriate words ,slang language or lengthy message which is not easily understood by the user.

Other Questions
A frog jumps for 4.0 seconds at a maximum horizontal distance of 0.8m. what is its velocity along the road? Which polynomial function can be represented by the graph belowLast option: f(x)=2x^3+2x^2+12x The displacement (in centimeters) of a particle moving back and forth along a straight line is given by the equation of motion s = 4 sin(t) + 3 cos(t),where t is measured in seconds. (Round your answers to two decimal places.)A. Find the average velocity during each time period.(i) [1, 2] (ii) [1, 1.1] (iii) [1, 1.01] (iv) [1, 1.001] B. Estimate the instantaneous velocity of the particle when t = 1. Determine whether the system of linear equations has one and only one solution, infinitely many solutions, or no solution. 5/4x-2/3y=8 and 1/4x+5/3y=7 Translate to an algebraic expression n1 increased by 110% A company is considering replacing an old piece of machinery, which cost $600,000 and has $350,000 of accumulated depreciation to date, with a new machine that has a purchase price of $545,000. The old machine could be sold for $231,000. The annual variable production costs associated with the old machine are estimated to be $61,000 per year for eight years. The annual variable production costs for the new machine are estimated to be $19,000 per year for eight years.Required:A. Prepare a differential analysis dated September 13 to determine whether to continue with (Alternative 1) or replace (Alternative 2) the old machine. Refer to the lists of Labels and Amount Descriptions for the exact wording of the answer choices for text entries. For those boxes in which you must enter subtracted or negative numbers use a minus sign. If there is no amount or an amount is zero, enter "0". A colon (:) will automatically appear if required.B. Determine whether the company should continue with (Alternative 1) or replace (Alternative 2) the old machine.C. What is the sunk cost in this situation? Listed following are three possible models for the long-term expansion (and possible contraction) of the universe in the absence of dark energy. Rank each model from left to right based on the ratio of its actual mass density to the critical density, from smallest ratio (mass density much smaller than critical density) to largest ratio (mass density much greater than critical density).(A) coasting universe (B) critical universe (C) recollapsing universe identify the type of synthetic material used in each object. is it alloy, ceramic, polymer?tuba - paper - Pot - Carnitine ________. is a dietary essential, especially for athletes shuttles fatty acids from the cytosol into the mitochondria shuttles oxaloacetate from the mitochondria to the cytosol Question 2A circular picture is 8 inches in diameter.Part AWhat is the area of the picture in square inchOA. 4TT square inchesOB. 8 square inchesOC. 16Tf square inchesOD. 32 square inchesPart BA frame that is 2 inches wide surrounds the picture. What is the total area of thepicture and the frame in square inches?OA. 4TT square inchesOB. 12 TT square inchesOC. 36TT square inchesOD. 401 square inchesSave 1. Bill Jones is an employee of Soccer Supply Company. Find Jones net pay for the first week of November.A. $749.03B. $230.97C. $792.03D. $905.032. Bill Jones is an employee of Soccer Supply Company. Find Jones total deductions for the first week of November.A. $230.97B. $187.97C. $74.97D. $134.97Use the picture for both questions if some can answer both in one shot. I thank everyone in advance. Suppose that the growth rate of children looks like a straight line if the height of a child is observed at the ages of 24 months, 28 months, 32 months, and 36 months. If you use the regression obtained from these ages and predict the height of the child at 21 years, you might find that the predicted height is 20 feet. What is wrong with the prediction and the process used? An insulated container that measures temperature change is a _______. It is used to calculate change in _________ (which is DH.)the D is a triangle Dave receives a salary of $200 a week plus a commission of 10% of his weekly sales. An equation y = mx + b representsDave's weekly earnings. The y-intercept is Dave's base salary. The slope of the line is his commission.Write an equation representing Dave's weekly earnings.a. y=-0.1x-200b. y = 0.1% - 200C. y=-0.1x+ 200d. y = 0.1x+ 200Please select the best answer from the choices provided A triangle has sides of the square root of 2 and 3. Which could not be the length of the third side if it is a right triangle? About how much moisture can air hold at 20? Find the LCM of 30 and 22 Which of the relations given by the following sets of ordered pairs is not a function?Select one:a. {(5,2),(4,2),(3,2),(2,2),(1,2)}{(5,2),(4,2),(3,2),(2,2),(1,2)} b. {(4,2),(1,1),(3,2),(3,5),(7,10)}{(4,2),(1,1),(3,2),(3,5),(7,10)} c. {(8,3),(6,5),(4,2),(2,7),(1,4)}{(8,3),(6,5),(4,2),(2,7),(1,4)} d. {(6,4),(3,1),(0,5),(1,1),(2,3)} The price of milk _______ this month. Select one: a. raised b. has rose c. has risen d. have risen Jim has hired a real estate broker to help facilitate the sale of his home. If the broker requires a commission of 6%, how much will Jim clear from the sale (after the commission has been paid) if he is able to sell his house for $478,723? (Assume that Jim has already paid off his mortgage.)