Program for twin prime numbers between 1 and 100?
There is 8: (3,5) (5,7) (11,13) (17,19) (29,31) (41,43) (59,61) (71,73)
What is the purpose of a queue system?
The purpose of a queue system is quite simple - it allows and maintains order in any situation where there is more than one person waiting for a service.
Why can't you use a equals equals sign for a for statement?
This answer applies to programming languages in general. The equals sign is used for assignment. For example, the code "$variable = 1" assigns the value of 1 to the variable $variable. If you want to test whether values are the same (equality) the double equals sign is used. For example, when you want to verify that $variable has been assigned the value of 1 you would use: $variable == 1
A Symbolic Address is a name invented by the programmer to identify a location. Without this idea the programmer would have to use absolute addresses, which are in binary.
Jump to: navigation, search
Look up function in Wiktionary, the free dictionary.
Function may refer to: * Function (biology), explaining why a feature survived selection * Function (mathematics), an abstract entity that associates an input to a corresponding output according to some rule * Function (engineering), related to the utility/goal of a property * Function (computer science), or subroutine, a portion of code within a larger program, performs a specific task * Function object, or functor or functionoid, a concept of object-oriented programming * Diatonic function describes a music term * A formal event such as a party or meeting
What is the minimum number of bits that would be required to encode only alphabetic data?
A bit of memory holds a single character. Therefore the minimum number of bits would be one, but you would need one for each character of data.
telnet
What is development approach followed by prototype model?
The development approack followed is "quick and dirty",the focus is on quicker development rather than on the quality.
Ranjeet khune(dd) Banglore
Statements.
What is the lowest value 6 bit number you can have in binary?
000000 is the lowest number in a 6 bit unsigned binary number (meaning the high order bit is not the sign bit). If it is a signed number then the lowest number would be represented by 100000 which is equivalent to -32 in decimal.
Highest unsigned number in 6 bits is decimal 63.
Highest signed number in 6 bits is decimal 31.
Is there an English version of phpwind?
No, but according to Wikipedia there's an English site which is comparable to it called Discuz.
its a simple system of material coding the items are numbered one after another like pages of a book .Each additional product is given the next available code.
When a function is used as an argument in another function?
It is called callback function. For an example see the qsort function.
What is meant by array loud speaker?
Array speakers, You can see it in the theaters, it is simply a large number of speakers hanging or placed vertically in the wall and it produce a uniform sound. It is used to reach the voice to each and every individual person in that theater.
By regards
udayan AR
Describe the differences between local and module-level variables?
local Variable
A Local variable is a variable whose scope is limited to the Block of the Subroutine
defining it.
Private Sub Command1_Click
Dim a as integer
End Sub
Module Level Variable
A Module Level variable is a variable whose scope is limited to the Form Module
defining it.
Public Sub Command1_Click
Dim a as integer
End Sub
Global Level Variable
A Global Level variable is a variable whose scope can be limited to the entire project
defining it.
Private Sub Classjnitialize ()
Dim a As Integer
End Sub
When should a class be declared abstract?
In two situations:
How do you hide local variables in c and give precedence to global variables inside the function?
Hi, I would like to answr the question.So, if you want the to give more precedence to global variables with respect to a local one.Just add a pair of curly braces in the local variable and by doing so u can access global variable.
What is looping statement in c language in Punjabi language?
ANSWER in PUNJAbi
22ji e ta bahut sokha hai..
looping statement di help naal asi program de kise v hisse nu vaar vaar chla sakde ha. man lo tussi apna naam 200 vaar print krana hai , ta "printf" command 200 var likhni peni hai, but looping di help naal asi e kam sirf ik vaar "Printf" likh k kar sakde haa. for(i=0; i<200; i++) { printf("gurpreet singh 3184/w"); }
int i=0;
while(i<200)
{
printf("gurpreetsingh3184/w");
i++;
}
ATRRS