Who secured the first hat trick in the 20 - 20 match ?
a) symond b)balaji c) muthaiya muralidharan
Answers were Sorted based on User's Feedback
1. what is the opportunity in hardware & networking in future? 2.how many courses r in networking that fulfill market requrment? 3.who is better for career MCSE or CCNA ,UNIX ?
mt gre score is 272 and ielts score is 5.5, will i get admission in any of the universities in usa..will i get visa for this score??
which is the proper pipe for salt water line
What is the key element of Defect Report and Test case format?
wat is the usual number of bits transmitted simultaneously in parallel data transmission used by microcomputers?
out of fgets() and gets()which function is safe to use and why in c language?
explain in detail about life cycle of thread
assemblies in .net
A character set has 1 and 2 byte characters. One byte characters have 0 as the first bit. You just keep accumulating the characters in a buffer. Suppose at some point the user types a backspace, how can you remove the character efficiently. (Note: You cant store the last character typed because the user can type in arbitrarily many backspaces)
What are mixers used for?
compair and contrast procedrual and object oriented programming language
#include<stdio.h> int fn(int v); main() { printf("%d\n",fn(7)); } int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; }