Python Related (3312)
PHP Related (7341)
Scala (340)
R Programming (396)
Kotlin (184)
Apache Groovy (39)
Ruby (245)
Go Programming Language (139)
Objective-C (429)
Programming Languages AllOther (746) What is the difference in size of this two clasees? Class A { int a; char c; float f; } Class B { float f; char c; int a; }
4 6052What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
4285if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
1 35331)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
4 5528main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
6 160894)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
10 127666)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
4 7782
Write a program to play a guessing game using random module?
Explain ruby ranges. What are the ways to define ranges?
Can I learn django without python?
Explain avatar and gravatar in wordpress.
What are the differences between the function prototype and the function defi-nition?
How declare methods in objective c?
Why #include is used?
List out the different types of inheritance available in python?
Is python written in c?
What is class in c++ with example?
Explain the different types of errors in php.
What are the official packages provided by laravel?
Explain pointers in go?
List the essential features you look for a theme?
What are docstrings and comments?