The question could only be answered if I knew what I was supposed to demonstrate. But since you have not bothered to provide that crucial bit of information, I cannot provide a more useful answer.
1 answer
F
f
F
FF
Ff
f
Ff
ff
F= blue skin
f= purple skin
1 answer
how government use the elasticity concept to genrate revenue
1 answer
maturity value=
1 answer
neurons
1 answer
Why am I doing your homework for you?
1 answer
#include<iostream>
int main()
{
for (int i=0; i<100; ++i)
std::cout<<i<<std::endl;
}
1 answer
If you are demonstrating flexibility in the workplace, you need to make sure that you are open to performing jobs hat may not necessarily be your responsibility. Prove to your boss that you can handle anything.
1 answer
Types of Cubic Curves are:
1.Bezier Curves
2.B-Splines
3.NURBS (Non-uniform Rational B-splines)
1 answer
WikiAnswers will not do your homework for you. Nor will we write critiques, essays, discussion papers, reports or summaries. This is considered cheating.
We will, however, assist you should your questions be specific.
1 answer
struct base1
{
// ...
};
struct base2
{
// ...
};
struct derived1 : public base1 // single inheritance
{
// ...
};
struct derived2 : public base1, public base2 // multiple inheritance
{
// ...
};
1 answer
Task processes focus on activities that help complete a certain task, like producing a widget. Process functions are broader and include task functions.
1 answer
The existence of both nervous factor and humoral factor in stimulating the gastric secretion can be demonstrated by the Vagal stimulation of the exocrine pancreas.
1 answer
One way to maintain confidentiality in every day communication is to simply not repeat anything you have heard. Your discretion will be appreciated and you will gain a positive reputation for your ability to exercise conversational caution.
1 answer
The fetch-execute cycle of a typical microprocessor involves fetching an instruction from memory, determining what actions the instruction requires it to do, and performing those actions. It is also simply called the Instruction Cycle.
1 answer
People and companies can use technology to reduce production of waste and reduce the use of resources by dumping the waste and crushing it up.
1 answer
Flexion ( is a typical of hinge joint ) bending the knee or elbow
2 answers
This is a behavioral type interview question, or open-ended.
They want you to answer with a specifc example that tells the interviewer exactly how you dealt with this in the past.
The key is to provide a STAR answer, which highlights the Situation, Task, Action and Result that you took. Its like telling a replay of the event.
2 answers
Write down 1 and 110. Divide by two. Write down 55 and 2. Divide by five. Write down 11 and 10. Divide by two. Write down 5 and 22. Stop. Arrange them in ascending order. 1, 2, 5, 10, 11, 22, 55, 110
1 answer
Biaxial joints allow movement in two planes. An example is the wrist joint, which enables flexion and extension (bending and straightening) as well as radial and ulnar deviation (side-to-side movement). Another example is the metacarpophalangeal joints (the knuckles), which allow for flexion/extension of the fingers and abduction/adduction (movement away from or towards the midline).
1 answer
Air movement can result in lift through the generation of pressure differences. When air moves faster over the curved upper surface of a wing compared to the slower-moving air beneath the wing, it creates lower pressure above and higher pressure below the wing. This pressure difference generates lift, causing the wing and the object it's attached to (like an airplane) to rise.
1 answer
#include<iostream>
#include<time.h>
#include<string.h>
#include<sys/timeb.h>
int main()
{
char buff[2][128];
_tzset();
while (true)
{
_strtime_s (buff[0], 128);
std::cout << "\rOS time: " << buff[0];
do {
_strtime_s (buff[1], 128);
} while (strcmp (buff[0], buff[1]) == 0);
}
}
1 answer
Water molecule has a structure like this:
H-O-H
Here, one oxygen atom forms a covalent bond with each of the hydrogen atoms.
However, oxygen being more electronegative, it has a tendency to pull the bond pair of electrons towards itself developing a partial negative charge on oxygen atom and a partial positive charge on each of the hydrogen atoms.
Thus, it can be said that water molecule is polar in nature.
1 answer
Irritability in physiology refers to a cell's ability to respond to a stimulus by changing its membrane potential, leading to an action potential. Conductivity refers to the ability of a cell to transmit this action potential along its membrane and to neighboring cells through gap junctions or synapses. Together, these processes allow for communication and coordination within the body's systems.
2 answers
If the train is going at a constant speed, it will make no difference whether she runs forward or backward. There will only be a difference if it is accelerating or slowing down. If it is accelerating you tend to be thrown backward, so it is easier to run back than forward. If it is braking you are thrown forward so it is easier to run forward than backward. The force on the body is the product of the acceleration or retardation and the mass of the body: F (Newtons) = mass (kg) x acceleration (meters/sec2)
1 answer
Southern whites were forced to accept the new status of recently freed slaves. After the Emancipation Proclamation, all slaves and indentured servants were free within the U.S. and the former C.S.A. This, however, meant that whites would now have to live, work, and pray alongside African Americans. While whites were being repatriated back into the U.S., the policy of reconstruction was brutal for them. Not only had they lost the war, they also lost their dignity and their Southern identities. To rebel against the new regimes, groups like the Ku Klux Klan were formed to keep blacks and the Federal government in fear.
1 answer
This is an interesting question. I would suspect that the person asking such a question would already know a lot about the bible. The Incarnation is the act of God becoming a human being. It is the teaching that Jesus the second person of the Godhead became a human being. He was a real person but without sin. The 5th commandment instructs us to honor our parents. He was born into a family and had to learn obedience from his mom and dad, Joseph and Mary. He showed us what it means to obey parents and gave us an example of we must do today. Implied but not directly taught is that we need to honor our parents in their old age and take care of them.
1 answer
Muddy water and salt solution contains, quite obviously, water, salt and mud. Due to the fact that the salt molecule is polar, it dissolves in water. [Note: The higher the temperature of the water, the more salt can be dissolved in it]. So we essentially have salt dissolved in water and mud suspended (and/or floating/sinking) in a beaker. Stir up the solution to make the mud/water mix homogenous (also for complete separation). Pour the mix through a filter+funnel set up. Notice how the water flows straight through, but the mud is retained in the fileter paper. Now you have a salt water solution. Heat the mixture until the water is boiling. This causes the water molecule to evapourate, thus leaving the salt behind.
1 answer
The verb form of demonstration is demonstrate.
Other verbs are demonstrates, demonstrating and demonstrated.
"We will demonstrate the steps to you".
"They have demonstrated this before".
3 answers
I/you/we/they demonstrate. He/she/it demonstrates. The present participle is demonstrating.
2 answers
Functions have several purposes. Every program must have at least one global function named main. Although it is possible to write entire programs using this one function, this is only practical with extremely trivial applications, such as the "Hello World" application:
int main()
{
cout << "Hello world!";
}
As programs become more and more complex, however, we need to break the program down into much simpler problems, such that our main function actually does very little work. Typically, the main function does nothing more than call a function to process the command line arguments (and act upon them), wrapping that call in a catch-all exception handler.
The command line processing function itself will invoke an appropriate function according to the command line arguments, and thus becomes an elaborate switch statement.
Complex functions are difficult to read and maintain, but can be simplified by separating the code into a series of function calls, such that each function's name essentially describes what it does. Thus programs become self-documenting.
In C++, classes would be useless without functions (or methods as they are known).
1 answer
Semaphore waiting lists are often implemented as FIFO queues. Could they be implemented as stacks? What problems would this implementation cause?
As discussed in class, a monitor is the result of a fusion between shared data and the functions (methods) that operate on this data. The code below makes the assumption that a monitor can declared just like a class in C++. This is a hypothetical situation.
Consider the following solution to the dining philosopher's problem: monitor Chopsticks { private: // variable declarations go here public: void pickup( int philosopherNumber ); void putdown( int philosopherNumber ); }; Chopsticks::pickup( int philosopherNumber ) { // function body goes here } Chopsticks::putdown( int philosopherNumber ) { // function body goes here } //-------------------------------------------- Chopsticks chopsticks; void philosopher( int n ) { while ( true ) { think(); chopsticks.pickup( n ); eat(); chopsticks.putdown( n ); } }
Write declarations for the shared variables needed by the monitor and the pseudo-code for the bodies of the two monitor functions. Be sure that your solution is deadlock and starvation free.
Write a solution of the dining philosophers problem that uses message passing and a central coordinating process the the philosophers communicate with when they want to start or stop eating.
Do problem 6.9 in the text: Demonstrate that monitors, conditional critical regions, and semaphores are all equivalent, insofar as the same types of synchronization problems can be implemented with them.
Hint: Show that if one of the mechanisms is available then another can be implemented. Then show that if that mechanism is available then the third can be implemented. Finally, show that if the third is available then the first can be implemented. That is: if each of the mechanisms is represented by one of the letters A, B or C, show thatA => B => C => A
which shows that these mechanisms are all logically equivalent.
Suppose that an operating system supported message passing, but did not directly support semaphores. Show how you could implement semaphores by the use of suitable library routines. (Hint: Use a semaphore manager process that receives wait() and signal() messages from other processes).
(Optional for extra credit) Your answers to the last two problems show that message passing is at least as powerful as the other three process coordination primitives that rely on shared memory. (Given message passing, you could implement semaphores, etc.) Show how you could implement the message passing primitives send() and receive() on a shared memory system using any of the other three schemes (your choice).
1 answer
Demonstrate is a verb - to establish by argument or reasoning
1 answer
The base word for "demonstration" is "demonstrate."
2 answers
1
Use both hands to carry the skis. You should stand them straight up and grasp the skis one hand over another. This technique is the hardest and may require you to wear your ski gloves for cushion.
2
Lift the skis once you have a good grip on them (and be sure they are locked together) and place them over your shoulder, with the flat side down. You should be able to balance the skis evenly over your shoulder while only using one arm to keep them steady. This is one of the best ways to carry skis for a longer distance, just be sure you are conscience of how close people and objects are to the front or the back of your skis.
3
Hold the skis at your waist, using your hip for support if you do not want to carry them on your shoulder. This technique can also be done using only one arm for balance. The skis will get heavy if you are carrying them for any significant distance, luckily you can switch sides easily and have your other arm do some work.
4
Purchase a carry case. Most ski area retail stores will sell carry cases for skis and poles as well as for ski boots. The carry cases for skis and poles offer you an enclosed area for storage and a shoulder strap.
5
Purchase a ski rack for your car. This is the best way to travel with multiple pairs of skis. You can attach a special rack directly on the roof of your car and snap in up to five pairs of skis.
1 answer
The dance instructor will demonstrate a new routine for her class.
The chef will demonstrate how to roll out a pizza crust.
If you want to get a drivers license, you need to demonstrate to me that you can parallel park without difficulty.
1 answer
The first people to demonstrate soccer was the Mexicans republicans.
1 answer
The word demonstrate is a verb. The past tense is demonstrated.
1 answer
To Demonstrate How Spiders Fly was created in 1909.
1 answer
To troubleshoot connecting another computer on the network, a bottom's up approach is best, starting at layer 1...
1. Check the physical layer. If you are hard connected, the lights on the RJ-45 connector should be blinking. If you are WiFi connected, make sure you are properly authenticating to your WiFi access point. Make sure the driver for the adapter is properly installed and that Device Manager is not reporting it as in trouble or disabled.
2. Check IP assignment. Run ipconfig /all (from a command prompt) and verify that an address is set. There should also be a default gateway, a subnet mask, and at least one DNS server. It also helps to have a DNS suffix (domain). If the computer is statically assigned, instead of dynamic with DHCP, ensure that these items are set correctly per your network administrator.
3. Check ICMP routing. Do a ping locahost, ping your IP address, ping your default gateway, ping your DNS server, and ping some pingable server, such as www.yahoo.com (69.147.76.15). Note that not every gateway responds to ICMP, so you might not get responses from various hosts. Sometimes you can use tracert (or traceroute on unix) to do the same thing, which will show you the ICMP responses of each hop along the way.
4. Check DNS resolution. Do an nslookup on various sites, such as www.yahoo.com or some server within your organization. Note that nslookup does not do domain substitution, so you must be fully qualified, such as myserver.mydomain.com instead of just myserver.
5. If a site supports it, try to access it with a high level protocol such as FTP or SMTP/POP3. You can do an ftp ftp.microsoft.com, or telnet somepop3server.com 25 (or 110) to check eMail connection. Getting a response is enough - just terminate the connection.
6. If the above does not work, you need to troubleshoot deeper. If you don't know what to do, you will need to get a professional.
1 answer
One possible suffix for "demonstrate" is "-able," forming the word "demonstratable."
1 answer
The noun forms of the verb to demonstrate are demonstrator, demonstration, and the gerund, demonstrating.
1 answer
to demonstrate America's concerns about events in Asia
8 answers