What is the output of the following
x = "abcdef"
i = "a"
for i in x:
print(i),
a) no output
b) i i i i i i …
c) a a a a a a …
d) a b c d e f
No Answer is Posted For this Question
Be the First to Post Answer
why we need to take u?
what is jackson structured develepment?? and how is it different from OMT??
What is a dialog based program
is it possible to desable particular parameter of the normal orcle report based on some condition ?????? if yes,wht is the function for desabling a parameter...
Hey this is venkatesh.Please can any body tell me what is SFLNXTCHG?where we use this keyword?what perpuse we use this?Can you tell me in real time senario with example? And in 7 specification(RPG/400)what is the mandatory specification using programs?
Programs in JAVA to get the remainder and quotient of given two numbers without using % and / operators?
what is dot net framework
In Java what is the difference between following two statements ? int a[],b; int []a,b;
how we can connect applet with database?
5. How do you round the addition or subtraction of two numbers in assembler?
how to generate dsnless connectivity in j2ee
Given an array all of whose elements are positive numbers, find the maximum sum of a subsequence with the constraint that no 2 numbers in the sequence should be adjacent in the array. So 3 2 7 10 should return 13 (sum of 3 and 10) or 3 2 5 10 7 should return 15 (sum of 3, 5 and 7)