Three major criteria of scheduling.
Answer / vishnu
Co-operative------> thread will execute with co-operation
pre emptive-------> high priority thread will execute first
round robin------->has time slice
| Is This Answer Correct ? | 0 Yes | 0 No |
which operator is known as dummy operator in c?
Explain what are the different file extensions involved when programming in c?
What are the uses of a pointer?
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
What is indirection?
How many parameters should a function have?
Explain bit masking in c?
Is r written in c?
What is the role of this pointer?