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) Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
1 3814Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
2 7068Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create
2686i am a 3yr diploma holder(CSE) from bangalore and i got job as php developer.. starting 7.5k... but i dont know what is the future carreer scop for diploma holders(for me)...plz help
2 6337In OverLoading concept,Why they are not consider return value and why they are consider only parameters in method? For ex: public int Add(int a,int b){...} public String Add(int a,int b){...}
1 3427accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
1 3529I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
TCS,
2004
Explain about ruby code blocks?
What is xss and csrf?
Describe linkages and types of linkages?
What is the use of quick draft section in wordpress dashboard?
What is composer in laravel php?
What is a template on a website?
What is the use of ajax in php?
What are different oops concepts?
What is the difference between malloc() and calloc()?
Mention Some keywords which are used by Java and not required in Scala? Why Scala does not require them?
How will you check in a string that all characters are digits?
What is a persistent cookie in php?
How to Get the Windows version in code?
How does ternary operator work in python?
Which ide is better for python?