表达式isinstance(4j,(int,float,complex))的值为()。
第1题:
表达式type(3+4j)in(int,float,complex)的值为____________。
第2题:
设有如下变量定义: double a=3.500000;float b=2.5; int m=2,n=3; 则表达式“(float)(m+n)/2+(int)a%(int)b”的值是( )
A.2.5
B.3.5
C.4.5
D.表达式不正确
第3题:
若有定义:int a=4, b=5;float x=3.4,y=2.1;,则下列表达式的值为( )。 (float) (a+b)/2+(int)x%(int)y
A.5.5
B.55
C.5.5
D.55
第4题:
类Test定义如下,将下列哪个方法插入③行处是不合法的( )?
① public class Test{
② public float Method(float a,float B) { }
③ ______
④ }
A.public float Method(float a,float b,float C) { }
B.public float Method(float c,float d){ }
C.public int Method(int a,int B) { }private float Method(int a,int b,int C) { }
D.private float Method(int a,int b,int C) { }
第5题:
下列重载函数中,正确的是( )。
A.void fun(int a,float b);void fun(int C,float d)
B.void fun(int a,float b);void fun(float a,int b)
C.float fun(int a,float b);int fun(int b,float a)
D.int fun(int a,int b);float fun(int a,int b)
第6题:
表达式isinstance(’abc’,int)的值为()。
第7题:
变量x、f、d分别为int,float,double类型的,除了f和d不能等于无穷大和NAN以外值可以任意选取,下面表达式为真的是()
第8题:
下面的方法重载,正确的是()。
第9题:
void fun(int a,float b);void fun(int C,float d)
void fun(int a,float b);void fun(float a,int b)
float fun(int a,float b);int fun(int b,float a)
int fun(int a,int b);float fun(int a,int b)
第10题:
第11题:
x==(int)(float)x
d==(double)(float)d
f==(float)(double)f
(f+d)-f==d
第12题:
Private void setVar (int a, float c, int b) {}
Protected void setVar (int a, int b, float c) {}
Public int setVar (int a, float c, int b) (return a;)
Public int setVar (int a, int b, float c) (return a;)
Protected float setVar (int a, int b, float c) (return c;)
第13题:
表达式float(25)/4 int(14.4)%5的值分别为【 】和【 】。
第14题:
若有定义:int x=1,y=2;float a=3.7,b=2.1;则(x+y)%2+(int)a/(int)b表达式的值为( )。
第15题:
设变量a是int型,f是float型,i是double型,则表达式10+′a′+i*f值的数据类型为A.int B.float C.double D.不确定
第16题:
若有以下定义:
char a;int b;
float c;double d;
则表达式a*b+d-c值的类型为( )。
A.A. float
B.int
C.char
D.double
第17题:
switch(表达式)语句中的“表达式”,允许的类型是()。
第18题:
public class MethodOver { public void setVar (int a, int b, float c) { } } Which two overload the setVar method?()
第19题:
假定变量x,f和d的类型分别为int 、float和double。下面表达式的值总是为1的是()
第20题:
表达式isinstance(’4’,(int,float,complex))的值为()。
第21题:
第22题:
第23题:
x==(int)(double)x
x==(int)(float)x
d==(double)(float)d
(f+d)-f==d
第24题:
int fun(int a, float b) { } float fun(int a, float b) { }
float fun(int a, float b) { } float fun(int x, float y) { }
float fun(float a) { } float fun(float a, float b) { }
float fun1(int a, float b) { } float fun2(int a, float b) { }