Why must you be careful when handling a hard drive?

Answers

Answer 1
You must be careful while handling a hard drive because If you’re not careful with it the hard drive may corrupt or crash.

Related Questions

What is the advantage of breaking your application’s code into several small procedures?

Answers

Answer: For better code management and modularity

Explanation:

An application consist several lines of code so when we break an entire code into several small procedures it becomes easy to maintain and look for errors while debugging. This process also is part of good code writing and hence easy to manage our code during testing and debugging phases of application development.

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.

True/False: When you make a function call, the order of the arguments you send does not matter as long as the number of arguments matches the number of parameters the function has. True False

Answers

Answer:

False

Explanation:

The order of arguments sent matters because what if you were trying to assign a int parameter as string, moreover there is one to one mapping and thus the results computed by the function will be wrong too. The order may cause a bug in the functionality (when the wrong value is assigned to the wrongly selected parameter due to alteration in order), cause run time errors ( when the data type of parameter and argument does not match due to alteration in order )

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:

What symbol is used for an assignment statement in a flowchart?
Answer
a) processing
b) I/O
c) parallelogram
d) diamond

Answers

Answer:

processing

Explanation:

The flow chart is a diagram that shows the activity of the program, peoples or things.

Flowchart symbol and meaning in the options:

1. Processing: it is a rectangular shape block which is used for variable declaration or assignment.

2. I/0: it is a parallelogram in shape which is used for input or output.

3. Parallelogram: it is used for input or output.

4. diamond: it is used for decisions or conditions.

Therefore, the correct option is a. Processing is the one that is used for the assignment statement.

Final answer:

In a flowchart, the symbol used for an assignment statement is a parallelogram, which is different from symbols used for processes (rectangles) or decisions (diamonds).

Explanation:

The symbol used for an assignment statement in a flowchart is a (c) parallelogram. This shape is typically used to represent input or output operations, which includes assigning values to variables. In a flowchart, various symbols are utilized to represent different types of actions or steps in a process.

For example, a rectangle is often used for process or operation symbols, and a diamond shape is used to denote decision points. However, when it comes to depicting the action of assigning a value to a variable, which is a fundamental step in many algorithms and programs, the parallelogram serves this purpose.

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.

In order to be considered as an e-commerce web site the site must sell some tangible good. (true or false)

Answers

Answer:

False

Explanation:

The site can also exclusively buy items from people. Websites are not limited to selling items for they can also buy from users.

The following statement is false.

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.

When a function simply receives copies of the values of the arguments and must determine where to store these values before it does anything else, this is known as a ____.
A) pass by value
B) pass by reference
C) stub
D) function declarator

Answers

Answer:

pass by value

Explanation:

Function is a group of statement which perform a task when it calls.

syntax:

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

{

 statements;

}

when the value is passed to function and then calling the function. it actually the copy of the value is passed and when the function perform the task and change the value passed it actually make changes i the copy not original value. This is called pass by value.

. 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 .

In _______ view, you're unable to make changes to your report.

Answers

Answer:

In print view, you're unable to make changes to your report.

The answer is - Read Only

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:

Why does a satellite requires two bridges?

Answers

Two bridges are being used in the satellite to avoid the delay in the communication of packets/Frames between the sites.

Explanation:

To avoid the delay in the communication of packets/Frames between the sites two bridges are being used. Two Ethernet connections can be connected using the bridge. NIC’s are not there in the repeaters whereas the bridge has two of them which make the bridge different than the repeater. On one of the side in the bridge process of addressing to the node is being done and other ends take care of communicating the packets.  

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.

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;

List two advantages and disadvantages of having internationalstandards for network protocols?

Answers

Answer:

International standard is the process of standardizing the product and providing the product with same physical quantities and with high international level.

Two advantages and disadvantages of having international standards for network protocols are:

The main advantage of having the international standard for network protocol is that communication become easier as, all the computers are connected together. Easy to maintain and installation by using the same standard. Once a standard adopt worldwide, it is difficult to modify it if there is an issues are identified.Every standard has its limitation so that is why there is less focus on developing new technology.

When a company has international standards for network protocols, this means that the company applies the same rules and regulations to all network protocols, regardless of geographical location. There are several advantages and disadvantages of this method:

Advantages:

This allows the company to have a better control over its products, as it is easier to determine whether a network protocol has deviated from standards.

The international standards for network protocols allows for unity, which enables easier and more efficient communication.

Disadvantages:

It is difficult to implement a new international standard worldwide. Similarly, once successfully implemented, this is difficult to modify.

It is difficult to design the right international standard, as this has to be viable in a great variety of different situations and contexts.

Write the prototype for a function named showValues. It should accept an array of integers and an integer for the array size as arguments. The function should not return a value.

Answers

Answer:

void showValues(int [maximum volume],int);

Answer:

void showValues(int * array, int array_size){

int i;

for(i = 0; i < array_size; i++){

printf("%d\n", array[i]);

}

}

Explanation:

I am going to write the prototype of a function as a c code.

array is the array as an argument, and array_size is the argument for the size of the array.

void showValues(int * array, int array_size){

int i;

for(i = 0; i < array_size; i++){

printf("%d\n", array[i]);

}

}

Why must you be careful not to touch the gold contacts at the bottom of each adapter?

Answers

Answer: You must be careful to not touch the gold contacts at the bottom of the adapter because it might damage the device

Explanation: It is advised not touch the gold contacts of the adapter because that might damage the adapter by the oils present on the fingertips of a person which leads to corrosion at times and also there are chances of damage of the electronic component by the electrostatic discharge and that leads to the failure of the device .

Final answer:

To maintain electrical conductivity and prevent damage, avoid touching the gold contacts on adapters. Safety precautions and cleanliness are vital to protect the contacts from harmful materials. Preserving the integrity of the electrical connection is key to the proper functioning of the adapter.

Explanation:

It is crucial to be careful not to touch the gold contacts at the bottom of each adapter to prevent interference with electrical conductivity and avoid damaging the contacts. Gold is an excellent conductor of electricity, and touching the contacts with bare hands can introduce oils and dirt that may hinder the electrical connection.

Safety precautions such as wearing protective gear and ensuring clean hands are essential to prevent harmful materials from affecting the contacts and maintain the adapter's functionality.

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.

-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).

Provide two examples from everyday life which apply sequential, conditional, and iterative operations.

Answers

Answer:

Explanation:

Great question, in everyday life we have hundreds of tasks that we complete daily which are one of these types of operations or various at the same time, For Example,

In the morning we wake up and make breakfast. The process to make eggs is a specific sequence. First you heat the pan. Then you add the eggs, next you condiment the eggs. Lastly, you place the eggs in a plate. This whole process is a sequential set of tasks.

Later on in the day you go to the car. If the car has gas you take the car to work. Otherwise you take the bus. This is a conditional event that depends of a certain variable to be present.

Yet Both of these events are iterative operations since they are repeated daily.

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

Final answer:

Examples of sequential, conditional, and iterative operations in everyday life include following a recipe (sequential), a thermostat regulating temperature (conditional), and a washing machine going through its cycles (iterative).

Explanation:

Sequential, conditional, and iterative operations are fundamental concepts in computer programming and can be seen in everyday tasks. For instance, a recipe follows a sequential process, where one follows steps in a specific order, such as measuring ingredients, mixing them, and baking at a specific temperature for a set time. Conditional operations are seen in thermostats, which turn on heating or cooling systems if the temperature goes above or below certain points. Iteratively, a washing machine repeats cycles of filling, washing, and spinning until the clothes are clean. These examples reflect the application of programming logic in real-world scenarios and are instances where solving problems necessitates identifying knowns and unknowns, and ensuring answers are reasonable.

What according to you a good software design?

Answers

Answer:  As software design is the part of Software development cycle (SDLC) it requires many factors to be become good and helpful such as:-

As it is a designing process it requires a update in the pattern and design so it should be able to deal with every change or update in the software that is being made.Software design should be able to support any modification in the design whenever it is required.By supporting the modification and updates in the design it makes it easy to save the time as well . So, it is also required that is should be a time saving process.

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.

You can print your report from the _______ tab.

A. Create
B. File
C. Add-ins
D. Arrange

Answers

Answer:

B. File

Explanation:

You can print your report from the file tab.  

The answer is B. File Tab

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.

A batch file is a text file that used to enter a command or series of commands normally typed at the command prompt True False

Answers

Answer:

True

Explanation:

A batch file is a text file which either contains a single command or a series of commands normally typed at the command prompt for a computer operating system. It is known as a batch file because it bundles a set of commands into a single file which could have been presented to the operating system interactively using the keyboard one at a time. A batch file is generally created when a user needs to execute several commands together at a time. We can initiate the sequence of batch commands within the batch file simply by providing the name of the batch file on a command line tool.

The _______ controls the action of the algorithm. a. user b. plain text c. cipher text d. key

Answers

The _______ controls the action of the algorithm.

d. key

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.

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.

. Write a statement that throws an IllgalArgumentException with the error message Argument cannot be negative.

Answers

Answer:

public class PostAccount

{

  public void withdraw(float savings)

  {

     if (savings >=0 )

     {

        IllegalArgumentException exception

              = new IllegalArgumentException("Savings cannot be negative");

        throw exception;

     }

     balance = savings - withdraw;

  }

 }

Explanation:

IllgalArgumentException is a type of NumberFormatException  of runtime exception. Here in the program we have created an object of IllgalArgumentException class and after that we have thrown the error to show the condition if it does not satisfy the if condition.

Other Questions
The shortest side of an isosceles triangle is 26 cm less than twice as long as the other sides. The perimeter of the triangle is 70 cm. Find the lengths of the three sides and list them in ascending order. Ali read 5 pages of her book in 7 minutes. At this rate, how long will it take Ali to read 15 pages of her book? A. 21 minutes. B. 17 minutes. C. 14 minutes. D. 12 minutes. when stress becomes too much to handle on your own which should you consider as your next option The exhaust steam from a power station turbine is condensed in a condenser operating at 0.0738 bar(abs). The surface of the heat transfer surface is held at 20C. What percentage change does the inclusion of the sensible heat correction term make to the estimated heat transfer condensing film coefficient? What is the cause of animals on other farms becoming restless? A boat floats with 25% of its volume under water. a. What is the boats density?b. If the boat was made from 500 kg of metal, what is the volume of the boat? (Assume the air in the boat has negligible mass and density)c. What mass of cargo will cause the boat to float 75% below the water? Which statement best explains whether Y equals 4 x+ 8 is a linear function or nonlinear function? B. A hydraulic jack has a ram of 20 cm diameter and a plunger of 3 cm diameter. It is used for lifting a weight of 3 tons. Find the force required at the plunger.a. 675.2kgfb. 67.52kgfc. 6752.0kgfd. None of the above I need help with number 2, you can use number 1 as an example. Im confused on how to do this one as x and y are still in the equation, so Im not sure how to get x or y alone. TYSM!!!! 20 POINTS!!! What is variable hoisting in JavaScript? Provide examples. You make a simple instrument out of two tubes which looks like a flute and extends like a trombone. One tube is placed within another tube to extend the length of the instrument. There is an insignificantly small hole on the side of the instrument to blow on. Other than this, the instrument behaves as a tube with one end closed and one end open. You lengthen the instrument just enough so it emits a 1975Hz tone when you blow on it, which is the 4th allowed wave for this configuration. The speed of sound in air at STP is 343m/s.The instrument's sound encounters warmer air which doubles its speed. What is the new amplitude of this sound, in m, if the original sound has an amplitude of 0.5m?The instrument's sound encounters warmer air which doubles its speed. What is the new wavelength of this sound in m?The instrument's sound encounters warmer air which doubles its speed. What is the new frequency of this sound in Hz?What length do you have to extend the instrument to for it to make this sound in m?What is the fundamental frequency of the instrument at this length in Hz?Your friend has a similar instrument which plays a tone of 2034.25 Hz right next to yours so they interfere. What will the frequency of the combined tone be in Hz?You play your instrument in a car travelling at 12m/s away from your friend travelling on a bicycle 4m/s away from you. What frequency does your friend hear in Hz? how much is 2 plus 3 Superposition of two wave crests produces ____ interference.ConstructiveDestructive Please help10 minutes!!Find the value of x and the value of y.A. x = 15, y = 10B. x = 20, y = 50C. x = 50, y = 10D. x = 50, y = 20 What is the surface area of the solid that can be formed by this net?plz help fast!!! 3x-2>5x+10 solve for x HELP ASAP Translate 6(4j+5+4j) in to a verbal expression w step by step. WILL MARK BRAINLIEST c) Over a period of 3 years, the company's sales of biscuits increased from 15.6 million packets to20.8 million packets.The sales increased exponentially by the same percentage each year.Calculate the percentage increase each year. A disc-shaped grindstone with mass 50 kg and diameter 0.52m rotates on frictionless bearings at 850 rev/min. An ax is pushed against the rim (to sharpen it) with a normal force of 160 N. The grindstone subsequently comes to rest in 7.5 seconds. What is the co-efficient of friction between ax and stone? A certain triangle has two 45 angles. What type of triangle is it?A. Acute TriangleB. Right triangle.C. Right isosceles D. Acute isosceles