Busy waiting is a method whereas a taskwaits for a given
event by continiously checking for an event to occur. What
is the main problem with this approach
No Answer is Posted For this Question
Be the First to Post Answer
What do you meant by Runtime Polymorphism?
WAP to print all prime nos between 1 to 100 without using user input...pls reply within few hours...
SAS question: I have 50 fils a1,a2,...,a50. the primary key is upc. then if i want to merge all 50 files, the code is as follows, data test; merge a1 ... a50; by upc; run; we know that writing all 50 files name is time consuming, is there any standard format of this code?
the systematic access of small computers in a distributed data processing system is referred as?
Can any one give an example (Source Code) on virtual function implemetation in Java?
Explain three modes in which files can be accessed from python program
One boy has to climb steps. He can climb 1 or 2 steps at a time. Write a function that will returns number of way a boy can climb the steps. Int WaytoSteps(int n) (eg:- suppose number of steps is n=4 ,the function will return 5 (one-one-one-one ,one-one-two, one-two-one-,two-one-one, two-two)
is try block possible without catch block?
How to call a C++ function which is compiled with C++ compiler in C code?
Even if all fields are initialized also in a program, I am getting COBOL/400 decimal data error .why is it coming?
Given an array all of whose elements are positive numbers, find the maximum sum of a subsequence with the constraint that no 2 numbers in the sequence should be adjacent in the array. So 3 2 7 10 should return 13 (sum of 3 and 10) or 3 2 5 10 7 should return 15 (sum of 3, 5 and 7)
How to convert numeric value into words in c#????plz suggest me the coding of this question???