Low ALT (alanine aminotransferase) levels are generally considered normal and may indicate good liver health. ALT is an enzyme primarily found in the liver, and low levels typically suggest that there is no significant liver damage or disease. However, it’s important to interpret these levels in the context of overall health and other lab results, as very low levels could sometimes indicate conditions like vitamin B6 deficiency. Always consult a healthcare provider for personalized interpretation.
Is c procedural or structural language?
Structural language is a language in which a particular structure is defined. It is used to make execution and understanding easier.
Ex : COBOL
Structural language does not have function calls.
Procedural language is a language in which function calls are allowed.
Ex : C
In this a particular procedure is followed every time.
IMB.
Why should you indent the statement in the body of a loop?
In some programming languages like Python, the indentation of the text indicates how nested it is and is required for a loop to function properly. However, for most languages, indenting the body of the loop is simply for style and readability.
What is the importance of data sturture in a programming language?
According to Wikipedia-"In computer science, a data structure is a particular way of storing and organizing data in a computer so that it can be used efficiently.Data structures are used in almost every program or software system. Data structures provide a means to manage huge amounts of data efficiently, such as large databases and internet indexing services. Some formal design methods and programming languages emphasize data structures, rather than algorithms, as the key organizing factor in software design."
Who was the first computer technician?
It is unknown who the first computer technician. However, it is reported that in the early 1940s, the first technicians were used for Hewlett-Packard and for early military computerized technology.
What are the properties of binary tree?
Flowchart to find the sum of the square of first 30 even numbers?
The flowchart in deriving the sum of the square root of first N even numbers, You may follow the steps provided below:
# Draw the start symbol then a flow line connecting to item #2 # Draw the init box for the syntax: set variable_A=0, variable_Chk=0, variable_Sum=0, variable_Sqrt, then a flow line connecting to item #3 # Draw the input box and write variable_A then a flow line connecting to item #4 # Draw the decision box for 'Is variable_A not numeric?'. if yes, draw a flow line connecting to item#3 else draw a flow line connecting to item#5 # Draw the process box for the syntax: compute variable_Chk=variable_A / 2 then a flow line connecting to item #6 # Draw the decision box for 'Is variable_chk not whole number?. if yes, draw a flow line connecting to item #3 else draw a flow line connecting to item #7 # Draw the process box for the syntax: compute variable_Sum=variable_Sum + variable_A then a flow line connecting to item #8 # Draw the decision box for 'Do you want to add another number?'. if yes, draw a flow line connecting to item#3 else draw a flow line connecting to item #9 # Draw the process box for the syntax: compute variable_Sqrt=SQRT(variable_Sum) then a flow line connecting to item #10 # Draw the output box and write variable_Sum, variable_Sqrt then a flow line connecting to item #11 # Draw the end symbol.
Where:
variable_A contains a given N number, variable_Chk contains the quotient of variable_A / 2, variable_Sum contains the sum of N numbers and variable_Sqrt contains the result.
How do you create your own an animated program?
There are many ways to create animations. If you want to play with making an animated .gif, a cheap (free) and program to try is GIMP (http://www.gimp.org/). If you want to animate a .gif, you can take several drawings and overlay them as layers.
Shell program for finding prime number?
#!/bin/sh
i=2
rem=1
echo -e "Enter a number: \c"
read num
if [ $num -lt 2 ]; then
echo -e "$num is not prime\n"
exit 0
fi
while [ $i -le `expr $num / 2` -a $rem -ne 0 ]; do
rem=`expr $num % $i`
i=`expr $i + 1`
done
if [ $rem -ne 0 ]; then
echo -e "$num is prime\n"
else
echo -e "$num is not prime\n"
fi
Is array made up of number of data items?
Yes, that's the idea of an array.
Yes, that's the idea of an array.
Yes, that's the idea of an array.
Yes, that's the idea of an array.
What is the difference between a batch file and a script?
Scripts are distinct from the core code of the application, which is usually written in a different language, and are often created or at least modified by the end-user. The program has an executable form that the computer can use directly to execute the instructions.
What are the advantages of the third generation programming?
The main advantage of fifth-generation programming language is that it is designed to make the computer solve problems for you. Previously, programmers would need to know algorithms to fix the problems, but fifth-generation handles all of that on its own.
What qualifications does a computer programmer have to have?
A degree in network program administration
SOFTWARE PROGRAMMERA degree in computer or information science, mathematics, engineering, or the physical sciences.What is the difference between ascii and ebcdic?
Due to the advancement of technology and our use of computers, the importance of ASCII and EBCDIC have all but ebbed. Both were important in the process of language encoding, however ASCII used 7 bits to encode characters before being extended where EBCDIC used 8 bits for that same process. ASCII has more characters than its counterpart and its ordering of letters is linear. EBCDIC is not. There are different versions of ASCII and despite this, most are compatible to one another; due to IBMs exclusive monopolization of EBCDIC, this encoding cannot meet the standards of modern day encoding schemes, like Unicode.
What kind of data structure is required to implement the round-robin scheduling?
cicular queue :D
if you want to implement the round robin you need the data structure of circular queue so that when we give the time quantum for the processes then if that process is complete in that time period then its ok but if not then we have to put that process in the queue so that all other processes are also get the time to execute i.e. to remove starvation
Why Low level languages are called Low level?
It's a "low level" language because it works at the machine level, while higher level languages are built on top of it.
How do variables and symbollic names differ?
Variables are storage areas that hold data that can vary during the execution of a program. A symbolic name is the name given to any entity in a program, including variables, constants, functions, procedures and various other stuff.
To trade goods and have a form of currency that is used all over the country.
Why java is considered as a low level language?
java is simple because the developers of java omitted the difficult concepts of pointers which is used in c & c++
and another reason is that the developers wanted to implement this programming language in electronic devices,which have less memory
A string of eight 0s and 1s is called?
Eight binary digits are called a byte.
Four binary digits are a nibble.
In recent years, several very efficient exact optimization algorithms have been developed in the computer science community. Examples are maximum flow algorithms, minimum-cost flow techniques, matching methods, which all are graph theoretical approaches or sophisticated branch-and-cut methods, originating in the field of linear optimization. These algorithms have now been applied to problems from physics like for random magnetic materials (random-field systems, spin glasses), in surface physics (solid-on-solid models) and many other disordered systems. The system sizes which can be treated are now much larger than ten years before, allowing the obtain now more reliable and higher significant data.
Who is the all time greatest hacker?
"Smithy" in the internet world was a computer hacker.
Back in 2006 it is believed that he had over 15,000 infected computers which he used to carry out spam and DDoS attacks. He is also the known programmer of the computer virus "Snoopy" which made an appearance on www.Synmantec.com's malware detections and definitions shortly after it had begun to spread.
Wap for swapping values of two variables using pointers as arguments to functions?
# include<stdio.h>
# include<conio.h>
void main()
{
clrscr();
int a,b;
printf ("Enter the first value:");
scanf ("%d",& a );
printf ("Enter the second value:");
scanf ("%d",& b );
printf ("\n\nBefor swaping the values ");
printf ("\nThe first value is %d",a);
printf ("\nThe second value is %d",b);
printf ("\n\nAfter swaping the values ");
printf ("\nThe first value is %d",b);
printf ("\nThe second value is %d",a);
}