网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
在个人geodatabase中,下列哪种字段类型是有效的?()
- A、boolean、string、blob、single
- B、string、text、guid、longraw
- C、data、blob、raster、float
- D、double、boolean、binary、number
参考答案
更多 “在个人geodatabase中,下列哪种字段类型是有效的?()A、boolean、string、blob、singleB、string、text、guid、longrawC、data、blob、raster、floatD、double、boolean、binary、number” 相关考题
考题
下面声明和赋值语句中,错误的是( )。A.float z=6.56;B.double d=3.1415;C.boolean truth=true;D.String str="bye";
考题
下列选项中( )方法可以判断线程是否处于活动状态。A.boolean is Alive()B.Thread currentThread()C.String getName()D.static boolean interrupted()
考题
下列声明和赋值语句错误的是( )。A.double w=3.1415;B.String strl="bye":C.float z=6.74567;D.boolean true=true:
考题
Java代码查错1.abstract class Name {private String name;public abstract boolean isStupidName(String name) {}}大侠们,这有何错误?
考题
阅读以下说明和Java 码,将应填入(n)处的字名写在的对应栏内。[说明] 编写一个学生类Student,要求:(1) 学生类Student 属性有:id: long 型,代表学号name: String类对象,代表姓名age: int 型,代表年龄sex: boolen 型,代表性别(其中:true 表示男,false 表示女)phone: String 类对象,代表联系电话(2) 学生类Student 的方法有:Student (long i,String n,int a,boolean s,String p):有参构造函数,形参表中的参数分别初始化学号、姓名、年龄、性别和联系电话。int getAge ():获取年龄作为方法的返回值。boolean getSex ():获取性别作为方法的返回值。String getPhone ():获取联系电话作为方法的返回值。public String to String ():以姓名:性别:学号:联系电话的形式作为方法的返import java. applet. Applet;import java. awt.* ;public class Student extends Applet {long id;String name, phone;int age;boolean sex;Student(long i, String n, int a, boolean s, String p){id=i;name = n;age = a;sex= s;phone = p;{public void paint( Graphics g){Student x= new Student (5000," xiaoliu" , 89, true, " 8989898" );(1);(2)g. drawstring( x. getPhone( ), 140,140);}int getAge( ){ return age; }boolean getsex ( ){ return sex; }String getPhone( ){ return phone; }String ToString( ){(3)}}
考题
下列代码的编译或执行结果是( )。 public class Myval{ public static void main(string args[]){ MyVal m=new MyVal; aMethod; } public void aMethod{ boolean b[]=new Boolean[5]; System.OUt.println(b[0]); } }A.1B.nullC.0D.编译错误
考题
下列关于boolean类型的叙述中,正确的是( )。A.可以将boolean类型的数值转换为int类型的数值SX
下列关于boolean类型的叙述中,正确的是( )。A.可以将boolean类型的数值转换为int类型的数值B.可以将boolean类型的数值转换为字符串C.可以将boolean类型的数值转换为char类型的数值D.不能将boolean类型的数值转换为其他基本数据类型
考题
下列选项中哪个方法可以判断线程是否处于活动状态? ( )A.blooean is Alive()B.Thread currentThread()C.String getName()D.static boolean interrupted()
考题
PL/SQL中,关于 Boolean类型说法错误的是()
A.用于存储逻辑值true或fa1se4B.只允许对 Boolean变量执行逻辑操作C.可以将此类型作为表中字段的数据类型D.不能将字段中的数据提取到 Boolean类型的变量中
考题
以下哪个是Java应用程序main方法的有效定义?
A. public static void main();B. public static void main( String args );C. public static void main( String args[] );D. public static void main( Graphics g );E. public static boolean main( String a[] );
考题
类Account中字段声明正确的是?() A、class Account{ name; amount; }B、class Account{ String name; double amount; }C、class Account{ String name=1.0; double amount=”Mike”; }D、class Account{ String name=”Mike”,double amount=1000.0; }
考题
下面说法不正确的是:()。A、PHP有4种标量类型:布尔型(boolean)、整型(integer)、浮点型(float)、字符串(string)B、浮点型(float)与双精度型(double)是同一种类型C、复合类型包括:数组(array)、对象(object)、资源(resource)D、伪类型:混合型(mixed)、数字型(number)、回调(callback)
考题
在标准String类的方法中,能实现测试两个字符串的某对应区域是否相等,且返回一个boolean类型值的方法是()。A、equals()B、equalsIgnoreCase()C、regionMatches()D、compareTo()
考题
在程序中将变量Inta、Bl、St、D分别定义为Integer类型、Boolean类型、String类型和Date类型,下列赋值语句中,正确的是()A、Bl=#True#B、D=#10/05/01#C、Inta="333"+"22"D、St=5+"abc"
考题
在Hibernate中,关于映射Oracle中的BLOB和CLOB类型的方法,说法正确的是()。A、CLOB类型只能映射为java.lang.StringB、BLOB类型可以映射为java.sql.BlobC、BLOB类型可以映射为byte[]D、CLOB类型可以映射为java.lang.String或java.sql.Clob
考题
public class X { public static void main (String[]args) { String s1 = new String (“true”); Boolean b1 = new Boolean (true); if (s2.equals(b1)) { System.out.printIn(“Equal”); } } } What is the result?() A、 The program runs and prints nothing.B、 The program runs and prints “Equal”C、 An error at line 5 causes compilation to fail.D、 The program runs but aborts with an exception.
考题
单选题public class X { public static void main (String[]args) { String s1 = new String (“true”); Boolean b1 = new Boolean (true); if (s2.equals(b1)) { System.out.printIn(“Equal”); } } } What is the result?()A
The program runs and prints nothing.B
The program runs and prints “Equal”C
An error at line 5 causes compilation to fail.D
The program runs but aborts with an exception.
考题
单选题下面说法不正确的是:()。A
PHP有4种标量类型:布尔型(boolean)、整型(integer)、浮点型(float)、字符串(string)B
浮点型(float)与双精度型(double)是同一种类型C
复合类型包括:数组(array)、对象(object)、资源(resource)D
伪类型:混合型(mixed)、数字型(number)、回调(callback)
考题
(难度:中等)JavaScript基本数据类型有null、undefined、string、number、boolean
热门标签
最新试卷