How do you draw a flowchart to find maximum and minimum of given 3 input numbers?
You draw a flowchart to find maximum and minimum of given 3 input numbers by using all three numbers. You take the low, high and input the middle number between them. You can see the rise, or decline of the chart that way.
What step is data either written to the file or read from the file?
Insertion is the process of writing data to a file. Extraction is the process of reading data from a file. More generally we use the terms output and inputrespectively. However, the output of one process can often be used as the input for another. Therefore the terms must be applied within the context of the objects being read from or written to.
Pair B (6.231 and 6.233) will both round to 6.23.
What is statement of ownership?
Statement of ownership is a sworn statement made by a person affirming the legal ownership of real property. It is a legal document where a person swears that they do own something.
What are the various types of nutrients and their purpose?
Nutrient Function Sources Carbohydrates energy Potatoes, pasta, whole grains Minerals Regulate vital processes, necessary for formation of healthy bones and teeth Dairy, grains, vegetables Vitamins Help regulate digestion, absorption and metabolism of other nutrients Fruits, dairy, grains, nuts, meat Protein Growth, maintenance and repair of the body's cells, energy Fish, meat, eggs, milk, some soybean products Fats Regulate body temperature, supply energy, transport vitamins A, D, E, K in the blood, source of linoleic acid Fish, dairy, olive/canola/ soybean/cottonseed/corn oil Water Transports nutrients, carries waste from cells, vital to every body function Water, milk, juice, some fruits and vegetables
The algorithm check if the number is a palindrome number or not?
step 1 : input n
step 2 : s = 0, a=n
step 3 : while(n>0)
begin
rem=n%10
s=s*10+rem
n=n/10
end
step 4 : if(s==a)
print 'it is a palindrome'
else
print 'it is not a palindrome'
step 5 : stop
Advantages of Jackson structured programming?
The main reason modular (or structured) programming is important is that it avoids the increased possibility of data corruption. Of course modular elements still have that risk but that is usually down to the user (passing by Ref instead of by Val etc.). However by using non-modular programming you can easily corrupt data without even knowing it.
Non-Modular code is normally referred to as spaghetti code. Spaghetti code is typically code that uses lots of "GOTO" which although supported by VB should be avoided.
One bad point of GOTO statements other than the fact they jump around unpredictably is their reliance on line numbers. If u add a line in the wrong place it can literally destroy your code.
This is because the GOTO command is basically a one way link so somewhere else in the code. At the end of that code will be a GOTO to get back, this is considered very messy as it leaves a virtual "trail" that can not only make it hard for other programmers to understand but also jeopardise the reliability of data via unknown lines of code changing/interacting with the stored data.
It also means the programmer needs to make sure the GOTO's are in the right place which adds a greater chance of user related mistakes.
"Structured Programming" is a idea that Modularity is closely associated with. It is the idea that structuring the program makes it easier for us to understand and therefore easier for teams of developers to work simultaneously on the same program. One advantage of structured programming is reduced complexity. Modularity allows the programmer to tackle problems in a logical fashion. Also, using logical structures ensures that the flow is clear. It is also a time saver, without modularity, code that is used multiple times needs to be written every time it is used whereas all you have to do is call a function with that code in to get the same result in a structured program.
Explain any two advantages using Single linked list over Doubly linked list and vice-versa?
Advantages of single linked list:
# Decrease in storage space per linked list node # Simpler implementation Advantages of double linked list
# Decrease in work when accessing a random node
# Decrease in work when inserting or deleting a node
Why is interrupt driven IO better then polling?
Polling checks constantly the status of de I/O device, wasting CPU cycles. However with Interrupt driven I/O the device sends a request to the CPU to indicate that it needs attention.
So, in some cases, Interrupt driven I/O will be better than polling, because doesn't waste CPU cycles checking when the device needs attention.
Direct:
int foo ()
{ ... foo (); ... }
Indirect:
int foo ()
{ ... bar (); ... }
int bar ()
{ ... foo (); ... }
KLM are K= The Number channel of VC4
L= The Number channel of TUG-3
M=The Number channel of TUG-2
The mapping must be reference with G.707 and G.709 standand.
If you has question let's be contact to me.
Mail: Thammarak98@hotmail.com form Thailand Transmission Engineer.
Are the mean and standard deviation equal in a poisson distribution?
The mean and variance are equal in the Poisson distribution. The mean and std deviation would be equal only for the case of mean = 1. See related link.
How are data and functions organized in an object oriented program?
see in object oriented programming, data and function are packed inside one module in which data is only accessible by the function of it's own module and the function is the only way data can interact with other modules.In practical use even the private, public and protected things also came up.
What Debug command dumps data at the beginning of the memory address space?
In my debugger it is
%D V'0'
your debugger may use other commands.
What are the different pencil pointers?
the different pencil pointers are albert Einstein. Archimedes and some other jinjurikis
What are the advantages of data structure?
The tree structure is useful because it easily accommodates the creation and deletion of folders and files.
one that has been registered at the local county level. Meaning an individual has paid for the use of the name registered - good for 5 years in most counties.
Method 1:
Sort the array in descending order, compare 1st and 2nd if not same , return 2nd if same return -1
Method 2:
Find the largest number in the array, initialize another array with dimension 1 less than of original. Copy the array elements from the original array minus the largest element. not select largest from the second array and compare with the previous one if not same return the second largest if same return -1
What are the characteristics of a good algorithm?
Every algorithm should have the following five characteristics: 1. Input
2. Output
3. Definiteness
4. Effectiveness
5. Termination
Write an algorithm to check whether the given number is odd or even?
Type your answer here... i think we should first enter 1 number then check it