what is the diffirence between deviation and change control? at what situations we can raise the deviation and change control
31 169172How do we fix the sample concentaryion in hplc method development. what is the basis?Thanks in advance
4 20958Post New DRL Interview Questions
What is anti - noise?
What is the purpose of starting air?
How can we apply themes to an asp.net application?
where does 22kv line starts
Mention a few benefits of using css sprites.
What is capacity in vector in c++?
Explain the tasks performed by <> tags?
why you want to be a quality analysts
IF Statements BLOCK 1 . IF a >= b THEN do_this …..; ELSE do_that….; END IF BLOCK 2 . IF a < b THEN do_that …..; ELSE do_this….; END IF; • Given any pair of non-NULL values for “a” and”b”, will Block 1 and Block 2 do the same thing? • What if either “a” or”b” (or both) is NULL?
Explain the concept of experiential learning in Mathematics.
What is 'fixed deposit account'?
What is netting and forecast consumption? Explain backward and forward consumption.
could u please also write an example of a code that involves instances from an abstract class just as u did for interfaces because u said it could also work which i really doubt. thanks
Is c++ a dying language?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash