class leftshift_operator{public static void main(String args[]){byte x = 64;int i;byte y;i = x 2;y = (byte) (x 2);System.out.print(i + " " + y);}}a) 0 256
import randoma = random.randint(1,10)grade = aprint(a)if (grade = 70 and grade =100):print("Passed!")if (grade = 70 and grade = 100):print(False)if (grade = 70 and grade = 100):print('num 70, num 100')
#include stdio.hint main(){printf("%c", 7[" sooks hmas "]);return 0;}
#include stdio.hWhat is the output of the following code?int main(){char str1[] = { 'H', 'e', 'l', 'l', 'o' };char str2[] = "Hello";printf("%ld,%ld", sizeof(str1), sizeof(str2));return 0;}
#include stdio.hint main(){int n=5;for(; n++ ;);printf("%d", n);}