how much memory will be occupied by black and white image​

Answers

Answer 1

Answer:

37 percent

hope it helps u

Answer 2
Answer is 37 percent I hope that help you

Related Questions

Define the missing member function. Use "this" to distinguish the local member from the parameter name.
#include
using namespace std;
class CablePlan{
public:
void SetNumDays(int numDays);
int GetNumDays() const;
private:
int numDays;
};
// FIXME: Define SetNumDays() member function, using "this" implicit parameter.
void CablePlan::SetNumDays(int numDays) {
/* Your solution goes here */
return;
}
int CablePlan::GetNumDays() const {
return numDays;
}
int main() {
CablePlan house1Plan;
house1Plan.SetNumDays(30);
cout << house1Plan.GetNumDays() << endl;
return 0;
}

Answers

Answer:

Here is the complete member function:

void CablePlan::SetNumDays(int numDays) {   //member function of class CablePlan which take numDays as parameter

this->numDays = numDays;   // refers to the fields numDays of CablePlan  class using this keyword

return;  }

Explanation:

The complete program is:  

#include <iostream>  //to use input output functions

using namespace std; //to identify objects like cin cout

class CablePlan{  //class

public:  //public methods of class

void SetNumDays(int numDays); //method of class CablePlan that takes numDays as parameter to set the days

int GetNumDays() const;  // method of class CablePlan to get no of days

private:  //private data member of class CablePlan

int numDays;  //private data member of class CablePlan that holds no of days

};

// FIXME: Define SetNumDays() member function, using "this" implicit parameter.

void CablePlan::SetNumDays(int numDays) { /

this->numDays = numDays;     // used to refer to numDays variable of CablePlan class using this keyword

return;}  

int CablePlan::GetNumDays() const {  //define member function GetNumDays

return numDays;}  

int main() {  //start of main function

CablePlan house1Plan;  //creates object of CablePlan class

house1Plan.SetNumDays(30);  //uses object to call member function of  CablePlan passing value 30 to it in order to set no of days

cout << house1Plan.GetNumDays() << endl;  //uses object to call member function of  CablePlan to get the no of days (numDays)

return 0;}

Here this keyword is used to refer to the field i.e. numDays of CablePlan class. This distinguishes local member numDays  from parameter numDays using this with -> symbol.  

'this' pointer retrieves the object's numDays  which is hidden by the local variable numDays . The output of this program is:

30

Answer:

this.numDays = numDays;

Explanation:

You just need one line of code.  "this." to access the class member, and the "." is the member access operator.

Write a recursive function that accepts an integer argument, n. The function should display n lines of text on the screen, with the first line showing n spaces followed by an asterisk, the second line displaying n-1 spaces followed by an asterisk, to the nth line which shows 1 space and 1 asterisk.

Answers

I’m sorry Idk this I will try my best

You have been hired to upgrade a network of 50 computers currently connected to 10 Mbps hubs. This long-overdue upgrade is necessary because of poor network response time caused by a lot of collisions occurring during long file transfers between clients and servers. How do you recommend upgrading this network?

Answers

Answer:

Following are the answer to this question:

Explanation:

A network adapter and network switches were also recommended because only 50 computer systems are accessible users could choose a router as well as two 24-port network cables. It could connect directly to a server or one computer with your router.  

It can attach some other machines to a switch.  If it is connected with the wireless router to the router so, it implies the ethernet port if you've had a landline installed two wireless networks throughout the location which can be easily accessed because the wired network will link all computers to all of it.

Switches could be managed or unmanaged unless circuits were also taken into account. It provides more implement strategies and remotely the controlled device can already be controlled as well as configured by the manager. In the CISCO and Dell controlled port devices, it also available for sustainabilty, that is used by the 24-port switches and for household or smaller networks, that's why we can upgrade it  

The area of a parallelogram is 18 square units.one side of the parallelogram is 24 units long.The other side is 6 unit long. which could b the parallelograms height select all apply

Answers

Answer:

[tex]Height = \frac{3}{4}\ unit[/tex]

[tex]Height = 3\ units[/tex]

Explanation:

Given

Shape: Parallelogram

[tex]Area = 18 unit^2[/tex]

[tex]Side\ 1 = 24 units[/tex]

[tex]Side\ 2 = 6 units[/tex]

Required

Determine possible heights of the parallelogram

Area of parallelogram is:

[tex]Area = Base * Height[/tex]

Make Height the subject of formula

[tex]Height = \frac{Area}{Base}[/tex]

When Base = 24 units;

[tex]Height = \frac{18}{24}[/tex]

[tex]Height = \frac{3}{4}\ unit[/tex]

When Base = 6 units;

[tex]Height = \frac{18}{6}[/tex]

[tex]Height = 3\ units[/tex]

When Base = 24 units

When Base = 6 units

Height: 3

Modern car odometers can record up to a million miles driven. What happens to the odometer reading when a car drives beyond its maximum reading?

Answers

Answer:

It would go to 1000000. Explanation:

  Unlike old vehicle odometers that will reach 999999 and stay there(though it is very unlikely to reach that figure) new vehicle odometers have the seventh digit reading and when it passes 999999 it would clock to 1000000.

     But in reality it is less likely for vehicles to reach the 999999 mark and most vehicle owners do not get to see their vehicles reach this mark as the vehicle will either be scrapped or abandoned before it gets to that million mile

Further, the ideal behind this million miles is due to the act of bad guys who tend to spin vehicle odometers to falsify their readings making it seem as though it has not gone a long mile.

The odometer reading of a modern vehicle resets to Zero, once it's maximum odometer reading is reached.

The odometer is a recording instrument in a car which is used to measure and keep a record of the total distance a car or wheeled machine such as bicycles has covered since their manufacture. The odometer is different from a speedometer which shows the current speed at which a car is moving. The odometer keeps track of distance, such that it takes the Cummulative sum of the distance covered usually in miles. The odometer resets to 0 once it's maximum value is exceeded.

Learn more : https://brainly.com/question/21087757?referrer=searchResults

At the Network layer, what type of address is used to identify the receiving host?

Answers

Answer:

IP Address

Explanation:

At the Network layer, the IP address is used to identify the receiving host. It identifies the senders and receivers of data in a network.

IP Address is used to assign every node in a network which is used to identify them. Its two main purposes are 1. Address location 2. Identification of network interface.

In which of the following situations would you want to use GOMS/KLM as an evaluation tool?
A. Shopping mall movie rental kiosk assuming the user rarely ever rents movies
B. Amazon's create an account process
C. A teacher evaluation form that a student fills out once
D. None of the above
E. All of the above

Answers

Answer:

B. Amazon's create an account process

Explanation:

The Keystroke-Level Model (KLM) is a cognitive modeling tool which can be used in predicting the performances carried out by human on interface designs. It's the most "practical" of the GOMS methodologies.

This model tends to predict how long it will take for the completion of a routine task by an expert user. There should be no errors.

So, Option B is correct because GOMS/KLM is an evaluation tool which fits in the evaluation of Amazon's create an account process.

different uses of quick access toolbar

Answers

“The Quick Access Toolbar provides access to frequently used commands, and the option to customize the toolbar with the commands that you use most often. By default, the New, Open, Save, Quick Print, Run, Cut, Copy, Paste, Undo, and Redo buttons appear on the Quick Access Toolbar” -Information Builders

A mobile base station (BS) in an urban environment has a power measurement of 15 µW at 175 m. If the propagation follows an inverse cube-power law (Section 3.2.2), what is a reasonable power value, in µW, to assume at a distance 0.7 km from the BS?

Answers

Answer:

The reasonable power will be "0.234 μW".

Explanation:

The given values are:

P = 15 μW

d = 175 m

As we know,

Propagation follows inverse cube power law, then

∴  [tex]Power \ \alpha \ \frac{1}{d^3}[/tex]

⇒ [tex]Power=\frac{K}{d^3}[/tex]

On substituting the estimated values, we get

⇒  [tex]15\times 10^{-6}=\frac{K}{(173)^3}[/tex]

⇒  [tex]K=15\times (175)^3\times 10^{-6}[/tex]

Now,

"P" at 0.7 km or 700 m from BS will be:

⇒  [tex]P=\frac{K}{d^3}[/tex]

⇒  [tex]P=\frac{15\times (175)^3\times 10^{-6}}{(700)^3}[/tex]

⇒  [tex]P=0.234 \ \mu W[/tex]

being a java developer what do you think, "would multi-threading play a vital role in maintaining concurrency for efficient and fast transactions of atm or will slow down the atm services by making it more complicated?”.

Answers

Answer:

I would state that performance is not the main challenge of an atm, nor is multi-threading. Robustness and provable correctness is of greater importance, and those are much easier to achieve using a single-threaded solution.

what is difference between ssd and hdd

Answers

Answer:

HDD is old-school storage device that uses mechanical platters and a moving read/write head to access data.SSD is a newer, faster type of device that stores data on instantly-accessible memory chips..SSD is little expensive than HDD and gives better performance

Answer:

Differed performance level's

When you collaborate or meet with a person or group online, it is called

Answers

Answer:

Web Conferencing

Explanation:

When you collaborate or meet with people online, it is called a virtual meeting or collaboration.

What are virtual meetings?

They are meetings or collaborations done without the participants having to meet physically.

Instead, the participants meet via one or a combination of platforms specifically designed for such a purpose. These platforms include Discord,  Slack,  and so on.

More on virtual meetings can be found here: https://brainly.com/question/15293394

#SPJ2

A company's computers monitor assembly lines and equipment using ________ communications.

Answers

Answer:

Machine to machine communications

Explanation:

Machine to machine communication is a type of communication that exists among the technical devices. The communication is linked either with the help of wire or through wireless. The information is communicated and transmitted with this form of communication. Human involvement or intervention is not required during the transfer of data.

Other Questions
Why does democracy not work in other countries OMG! This dress looks so pretty on you? Is that informal or formal A study of bone density on 5 random women at a hospital produced the following results.Age 37 41 57 65 73Bone Density 355 345 340 315 310Step 1: Calculate the correlation coefficient, r. Round your answer to six decimal places.Step 2: Determine if r is statistically significant at the 0.01 level.Step 3: Calculate the coefficient of determination, r2. Round your answer to three decimal places. Anna said that the product of 7/8 1 1/2 =7/2. How can you tell that her answer is wrong/ Jacques determines the remainder of 17x53+12x95x211x+1, using the remainder theorem. How does he proceed to the correct answer? A- Jacques evaluates the numerator of the expression when x=1. He finds the remainder of the division to be 11. B- Jacques evaluates the numerator of the expression when x = 1. He finds the remainder of the division to be 21. C- Jacques evaluates the numerator of the expression when x = 1. He finds the remainder of the division to be 11. D- Jacques evaluates the numerator of the expression when x=1. He finds the remainder of the division to be 21. Find the total monthly cost of owning and maintaining a car given the information shown. Monthly car payment Monthly insurance cost Average cost of gasoline per month Average maintenance cost per month $274.96 $ 77.00 $ 89.20 $ 16.38 An economist estimated that the price elasticity of demand for new cars to be 0.87 if the price of cars declines by 40%. One would expect the quantity of new cars to:______ Certain viruses contain RNA as their genetic material. One of the ways these RNA viruses replicate themselves is to: You notice that a woman has fallen down on the street but you fail to help her because you see lots of other people around. What does this exemplify? Apply the distributive property to simplify the expression. 8(3x 6) 422000 scientific notation form: Is singing a natural talent or its a skill?? Recall the definition of a parsec. Solve the equation. x/8=0.625 1. Which sentence best supports the inference that the ruins of Pompeii are so popular because of the way in which the ancient city was destroyed?"In addition to natural causes, people were also largely to blame for the current state of the ruins.""That is because, for a variety of reasons, the site had been neglected to the point where it had slowly but steadily fallen apart.""Continuous excavation exposed roughly three-quarters of Pompeii's homes, temples, and streets to the elements--rain, most notably.""It was a tragic event that left in ites wake a preserved snapshot of life as it existed exactly at the moment of destruction." Water is a polar molecule because it has an equal number of On a coordinate plane, a piecewise function has 2 lines. The first line has an open circle at (0, negative 2) and continues up through (negative 5, 3) with an arrow instead of an endpoint. The second line has a closed circle at (0, 0) and continues down with a negative slope through (4, negative 2) with an arrow instead of an endpoint. Which defines the piecewise function shown? Solve the equation. 7b -0.5 = 8b Which statement made by a pregnant client to a nurse indicates that the client does not understand the teaching regarding fetal growth and development? "A primary dealer buys Treasury Securities in a competitive bid at the weekly Treasury Auction. Settlement between the dealer and the Treasury occurs:"