重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁!
查看《购买须知》>>>
找答案首页 > 全部分类 > 外语类考试
搜题
网友您好, 请在下方输入框内输入要搜索的题目:
搜题
题目内容 (请给出正确答案)
[主观题]

听力原文:I found myself facing a dry-cleaning store which has once been one of the best re

听力原文: I found myself facing a dry-cleaning store which has once been one of the best restaurants in New York. On Sundays the old man would take my mother and me for dinner. There had been a balcony where a baker in a tall white hat baked fresh rolls and whenever a customer entered, the baker would look down and put in a fresh batch. I could smell the rolls through the odor of cleaning fluid on Lenox Avenue. I could see the manager who always sat down will4 us while we ate. He had some disease, I suppose, because the right side of his face was swollen out like a balloon, but he always wore a hard wing collar and a white tie, and never seemed sick. A Negro with a moustache was looking through the store window at me. For a moment I had the urge to go and tell him what I remembered, to describe this avenue when no garbage cans were on the street, when the Daimlers and Minervas and Fords had cruised by, and the cop on the corner threw back the ball when it got through the outfield on 114th street. I did not go into the store, nor even toward our house. Any claim I had to anything had lapsed. I went downtown instead and sat in my room, trying to read.

According to the speaker, the dry-cleaning store used to be a ______.

A.hote

B.restaurant

C.bakery

D.garage

查看答案
更多“听力原文:I found myself facing a dry-cleaning store which has once been one of the best re”相关的问题

第1题

下列程序执行后的结果是______。 package ch1; import java.io.*; public class ex22 {static, St

下列程序执行后的结果是______。 package ch1; import java.io.*; public class ex22 { static, String filename = "ch1\kfile22.txt"; public static void main(String[] args) { try { FileWriter fr = new FileWriter(filename); PrintWriter pr = new PrintWriter(fr); String name = "xiaoming"; String phone = "123456"; String age = "12"; pr.println(name + ',' + phone + ',' + age); pr.close(); fr.close(); } catch(IOException ioe) { ioe.printStackTrace() } } }

A.在包ch1 中新建一个文件file22.txt, 并且在其中写入一行字符串“xiaomingl2345612”

B.在包ch1中新建一个文件file22.txt,并且在其中写入一行字符串“xiaoming, 123456,12”

C.在包chi中新建一个文件file22.txt,并且在其中写入一行字符串“xiaoming'’

D.抛出IOException

点击查看答案

第2题

下列程序实现对ZIP文件filel4.zip的检索,在横线处填入正确的语句。package ch1; import java.io.*

下列程序实现对ZIP文件filel4.zip的检索,在横线处填入正确的语句。 package ch1; import java.io.*; import java.util.*; import java.util.zip.*; public class exl4 { publio static void main(String[] args} { try { FileInputStream fis = new FileInputStream("chl/filel4.zip"); ZipInputStream zis = new zipInputStream(fis); ZipEntry en; while((______) ! = null) { en.getName(); zis.clcseEntry(); } zis.close(); } catch(Exception e) { e.printStackTrace(); } } }

A.en = zis.getNexTEnTRY()

B.en = zis.getEntry()

C.en=zis.getNextEntry()

D.zis.getNextEntry()

点击查看答案

第3题

在下列程序的横线处填入正确的语句,实现RandomAccessFile类使用。package ch1;import java. io. *

在下列程序的横线处填入正确的语句,实现RandomAccessFile类使用。 package ch1; import java. io. *; public class ex27 { public static void main(String args[] ) { try { RandomAccessFile in = new in.close (); } catch (Exception e) { e.printStackTrace (); } } }

A.RandomAccessFileC"ch1/file.dat", "read")

B.RandomAccessFile("r", "ch1/file.dat")

C.RandomAccessFile("ch1/file.dat" , "r")

D.RandomAecessFile("read", "ch1/file.dat")

点击查看答案

第4题

下列哪个是Java中引入包的语句?

A.inclue

B.import java.io.*

C.using java.io.*

D.package java.io

点击查看答案

第5题

下列程序的运行结果是【 】。 import java.io.*; public class abc { p
ublic static void main(Stringargs[ ] ) { String s1 = "Hello!"; System.out.println(s1.toUpperCase() ); } }

点击查看答案

第6题

已知文件filel8.txt中的内容是:一共有3行,每行分别是实型的数值1.0,2.1,3.2,则下列程序执行之后,
输出的结果是______。 package ch1; import java.io.*; public class exl8 { static String strName = "ch1\\file18.txt"; public static void main(String[] args) { try { FileReader fr = new FileReader(strName); BufferedReader br = new BufferedReader(fr); String str; while((str = br.readLine()) != null) { float f = Float.parseFloat(str); System.out.println(f); } br.close (); fr.close (); } catch(Exception e) { System.out.print (e.getMessage ()); } } }

A.1.0 2.1 3.2

B.1.0

C.2.1 3.2

D.显示异常信息

点击查看答案

第7题

下列程序实现对ZIP文件file.zip的检索,在横线处填入正确的语句package test;import java.io.*;im

下列程序实现对ZIP文件file.zip的检索,在横线处填入正确的语句 package test; import java.io.*; import java.util.*; import java.util.zip.*; public class Exam { public static void main(String[] args){ try{ FileInputStream fis=new FileInputStream("test/file.zip"); ZipInputStream zis=new ZipInputStream(fis); ZipEntry en; while((______)!=null){ en.getName(); zis.closeEntry(); } zis.close(); } catch(Exception e){ e.printStackTrace(); } } }

A.en=zis.getNextEntry()

B.en==zis.getNextEntry()

C.en=zis.getEntry()

D.zis.getNextEntry()

点击查看答案

第8题

下列程序实现对ZIP文件file.zip的检索,在横线处填入正确的语句package test;import java.io.*:im

下列程序实现对ZIP文件file.zip的检索,在横线处填入正确的语句 package test; import java.io.*: import java.util.*; import java.util.zip.*; public class Exam { public static void main(String[])args){ try{ FileInputStream fis=new FileInputStream("test/file.zip"); ZipInputStreamzis=new ZipInputStream(fis); ZipEntry en; while ((_____)!=null){ en.getName(); zis.closeEntry(); } zis.close(); } catch(Exception e) { e.printStackTrace(); } } }

A.en = zis.getNextEntry()

B.en = zis.getNextEntry()

C.en = zis.getEntry()

D.zis.getNextEntry()

点击查看答案

第9题

下列Java源文件代码片段中,()是不正确的。

A.package t;public class A{}

B.import java.io.*;package t;public class A{}

C.import java.io.*;class A{}public class B{}

D.import java.io.*;import java.awt.*;public class A{}

点击查看答案
下载上学吧APP
客服
TOP
重置密码
账号:
旧密码:
新密码:
确认密码:
确认修改
购买搜题卡查看答案
购买前请仔细阅读《购买须知》
请选择支付方式
微信支付
支付宝支付
选择优惠券
优惠券
请选择
点击支付即表示你同意并接受《服务协议》《购买须知》
立即支付
搜题卡使用说明

1. 搜题次数扣减规则:

功能 扣减规则
基础费
(查看答案)
加收费
(AI功能)
文字搜题、查看答案 1/每题 0/每次
语音搜题、查看答案 1/每题 2/每次
单题拍照识别、查看答案 1/每题 2/每次
整页拍照识别、查看答案 1/每题 5/每次

备注:网站、APP、小程序均支持文字搜题、查看答案;语音搜题、单题拍照识别、整页拍照识别仅APP、小程序支持。

2. 使用语音搜索、拍照搜索等AI功能需安装APP(或打开微信小程序)。

3. 搜题卡过期将作废,不支持退款,请在有效期内使用完毕。

请使用微信扫码支付(元)
订单号:
遇到问题请联系在线客服
请不要关闭本页面,支付完成后请点击【支付完成】按钮
遇到问题请联系在线客服
恭喜您,购买搜题卡成功 系统为您生成的账号密码如下:
重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁。
发送账号到微信 保存账号查看答案
怕账号密码记不住?建议关注微信公众号绑定微信,开通微信扫码登录功能
警告:系统检测到您的账号存在安全风险

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

- 微信扫码关注上学吧 -
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反上学吧购买须知被冻结。您可在“上学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
- 微信扫码关注上学吧 -
请用微信扫码测试
选择优惠券
确认选择
谢谢您的反馈

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

上学吧找答案