can anyone please tell me wat is backlogs... i was looking
for the job openings where i read this.. eligibility
criteria minimum 70% in degree without backlogs. is that
arrear.. if so is it standing arrear or history of
arrears... please help me...
Answers were Sorted based on User's Feedback
Answer / tushar
backlog means passing subjects in first attempt. Without any
subjects pending
| Is This Answer Correct ? | 12 Yes | 86 No |
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
How do you define structure?
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??
Which is the best sort method for library management?
I heard that you have to include stdio.h before calling printf. Why?
What is the output of printf("%d", printf("Hello"));?
List a few unconditional control statement in c.
What is variable and explain rules to declare variable in c?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
write a program to check whether a number is Peterson or not.
Explain the binary height balanced tree?