can any one tel me wt is the question pattern for NIC exam
No Answer is Posted For this Question
Be the First to Post Answer
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
What is the time and space complexities of merge sort and when is it preferred over quick sort?
what is the use of operator ^ in C ? and how it works?
How can you print HELLO WORLD without using "semicolon"?
i have a written test in tomorrow
What is #pragma statements?
What are global variables and explain how do you declare them?
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What is volatile variable in c with example?
Compare interpreters and compilers.
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort