Wood, cork, cotton, rubber, glass etc. are
What is the output of this program?class Modulus {public static void main(String args[]) { double a = 25.64;int b = 25;a = a % 10;b = b % 10;System.out.println(a + " " + b);} }
What is the output of this program?class mainclass {public static void main(String args[]) {char a = 'A';a++;System.out.print((int)a);} }
What is the output of the following code ?example = "snow world"example[3] = 's'print example
What is the output of below program?def f(x, y, z): return x + y + zf(2, 30, 400)
Women's boxing is yet to be recognized as an Olympic support,----. If that happens the dream of most of the tough girls may come true.(A) The International Boxing Association has been campaigning to include it as an event in the 2008 Beijing Olympics.(B) Though boxing is a very tough sport many women are seen willing to take up professional boxing now a days.(c) Even some state governments are now willing to employ the women pugilists
What is the output of the following snippet of code?total={}def insert(items): if items in total: total[items] += 1 else: total[items] = 1insert('Apple')insert('Ball')insert('Apple')print (len(total))
What will be the output of the following Python code?
print('ab'.isalpha())
The keyword βbreakβ cannot be simply used within
What does the following piece of code do?for (int i = 0; i < arr.length-1; i++){ for (int j = i+1; j < arr.length; j++) { if( (arr[i].equals(arr[j])) && (i != j) ) { System.out.println(arr[i]); } }}
What is the output when following code is executed ?print r"\nhello"The output is
What is the output of the following?print("Hello {1} and {0}".format('bin', 'foo'))
What is the output of the code shown below s=set([1, 2, 3])s.union([4, 5])s|([4, 5])
What is the output of the following?print('The sum of {0} and {1} is {2}'.format(2, 10, 12))