题目内容 (请给出正确答案)
[多选题]

根据我国导游人员管理条例的规定,导游人员要热情、友好为旅游者服务。但在 ()情况时,导游人员可以婉拒。

A.要求亲友随团活动

B.无特殊原因要求延长签证

C.要求转递食品

D.要求转递信件给外国驻华使(领)馆人员

E.要求代购商品

查看答案
如搜索结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能会需要:
您的账号:
发送账号密码至手机
发送
更多“根据我国导游人员管理条例的规定,导游人员要热情、友好为旅游者…”相关的问题

第1题

请阅读下面程序 public class ThreadTest{public static void main(String args[]) (Thread t1=n

请阅读下面程序 public class ThreadTest{ public static void main(String args[]) (Thread t1=new Thread(new Hello()); Thread t2=new Thread(new Hello()); t1.start(); t2.start(); } } class Hello implements Runnable { int i; public void run() { while(true) { System.out.prinfin("Hello"+i++); if(i=5) break; } } } 该程序创建线程使用的方法是

A.继承Thread类

B.实现Runnable接口

C.t1.start()

D.t2.start()

点击查看答案

第2题

请阅读下面程序 public class ThreadTest{public static void main(String args[]) (Thread t1=n

请阅读下面程序 public class ThreadTest{ public static void main(String args[]) (Thread t1=new Thread(new Hello()); Thread t2=new Thread(new Hello()); t1.start(); t2.start(); } } class Hello implements Runnable { int i; public void run() { while(true) { System.out.prinfin("Hello"+i++); if(i=5) break; } } } 该程序创建线程使用的方法是

A.继承Thread类

B.实现Runnable接口

C.t1.start()

D.t2.start()

点击查看答案

第3题

请阅读下面程序 public class ThreadTest {public static void main(String args[]) throws Exce

请阅读下面程序 public class ThreadTest { public static void main(String args[]) throws Exception{ int i=0; Hello t=new Hello(); while(true) { System.out.println("Good Moming"+i++); if (i==2 && t.isAlive()) { System. out.println("Main waiting for Hello!"); t.join(); //等待t运行结束 } if(i==5) break;} } } class Hello extends Thread { int i; public void run() { while(true){ System.out.println("Hello"+i++); if (i==5) break;}}} 为使该程序正确执行,下划线处的语句应是

A.t.sleep()

B.t.yield()

C.t.interrupt()

D.t.start()

点击查看答案

第4题

请阅读下面程序 public class ThreadTest{ public static void main(String args[])throws Ex

请阅读下面程序 public class ThreadTest{ public static void main(String args[])throws Ex- ception{ int i=0; Hello t=new Hello; ; while(true){ System.Out.println("Good Morning"+i++): if(i= =2t.isAlive){ System.out.println("Main waiting for Hel- lo!"); join;//等待t运行结束 } if(i= =5)break;} } } class Hello extends Thread{ int l; public void run{ while(true)(System.Out.println("Hell0"+i++); if(i= =5)break;)))

A.t.sleep

B.t.yield

C.t.interrupt

D.t.start

点击查看答案

第5题

(24 )请阅读下面程序public class ThreadTest {public static void main (String args[ ]){Thr

(24 )请阅读下面程序

public class ThreadTest {

public static void main (String args[ ]){

Thread t1 = new Thread (new Hello ()):

Thread t2 = new Thread (new Hello ()):

t l .start ():

t2.start ();

class Hello implements Runnable {

int i ;

public void run (){

while (true ) {

System.out.println ("Hello"+i++ ) ;

if (i=5 ) break :

}

该程序创建线程使用的方法是()

A )继承 Thread 类

B )实现 Runnable 接口

C ) t l.start ()

D ) t2.start ()

点击查看答案

第6题

下面程序创建了一个线程并运行,请填空,使程序完整。public class ThreadTest {public static void

下面程序创建了一个线程并运行,请填空,使程序完整。

public class ThreadTest {

public static void main (String[] args) {

Hello h=Hew Hello ();

【 】

t.start ();

}

}

class Hello implements Runnable {

int i;

public void run () {

while(true) {

System.out.println("Hello" +i++);

if(i==5) break;

}

}

}

点击查看答案

第7题

请阅读下面程序 public class ThreadTest{ public static void main(String args[])throws Ex

请阅读下面程序 public class ThreadTest{ public static void main(String args[])throws Ex- ception{ int i=0; Hello t=new Hello; ; while(true){ System.Out.println("Good Morning"+i++): if(i= =2t.isAlive){ System.out.println("Main waiting for Hel- lo!"); join;//等待t运行结束 } if(i= =5)break;} } } class Hello extends Thread{ int l; public void run{ while(true)(System.Out.println("Hell0"+i++); if(i= =5)break;)))

A.t.sleep

B.t.yield

C.t.interrupt

D.t.start

点击查看答案

第8题

阅读下面程序:public class ThreadTest { public static void main(String args[]) throws Excep

阅读下面程序: public class ThreadTest { public static void main(String args[]) throws Exception { int i=0; Hello t=new Hello(); ______; While(true) } System.out.println("Good Morning"+i++); if(i==2&&t.isAlive()) { System.out.println("Main waiting for Hello!"); t.join(); //等待t运行结束 } If(i==5)break:} } } class Hello extends Thread } int i; public void run() while(true) { System.out.println("Hello"+i++): If(i==5)break; } } } 为使该程序正确执行,下画线处的语句应是

A.t.sleep()

B.t.yield()

C.t.interrupt()

D.t.start()

点击查看答案

第9题

(28 )请阅读下面程序public class ThreadTest {public static void main (String args[ ]) thr

(28 )请阅读下面程序

public class ThreadTest {

public static void main (String args[ ]) throws Exception {

int i=0;

Hello t = new Hello ();

___________;

whlle (true ){

System.out.println ("Good Morning"+i++ ) ;

if (i=2 && t.isAlive ()){

System.out.println ("Main waiting for Hello ! ” );

tjoin () ; // 等待 t 运行结束

if (i==5 ) break :}

}

class Hello extends Thread {

int i ;

public void run ()笼

while (true ){

System.out.println ("Hello"+i++ ) ;

if (i=5 ) break ;}}}

为使该程序正确执行,下划线处的语句应是

A ) t.sleep ()

B ) t.yieldn ()

C ) t.interrupt ()

D ) t.start ()

点击查看答案

第10题

阅读下面程序public cmass ThreadTest { public static void main(String args[]) { Thread t1=

阅读下面程序 public cmass ThreadTest { public static void main(String args[]) { Thread t1=new Thread(new Hello()); Thread t2=new Thread(new Hello()); t1.start(); t2.start(); } } class Hello implements Runnable { int i; public void run() { while(true) { System.out.println("Hello"+i++); it(i==5) break; } } } 此程序创建线程所使用的方法是

A.继承Thread类

B.实现Runnable接口

C.t1.start()

D.t2.start()

点击查看答案
热门考试 全部 >
相关试卷 全部 >
账号:
你好,尊敬的上学吧用户
发送账号至手机
密码将被重置
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改
谢谢您的反馈

您认为本题答案有误,我们将认真、仔细核查,
如果您知道正确答案,欢迎您来纠错

警告:系统检测到您的账号存在安全风险

为了保护您的账号安全,请在“上学吧”公众号进行验证,点击“官网服务”-“账号验证”后输入验证码“”完成验证,验证成功后方可继续查看答案!

微信搜一搜
上学吧
点击打开微信
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反上学吧购买须知被冻结。您可在“上学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
微信搜一搜
上学吧
点击打开微信