搜题
网友您好,请在下方输入框内输入要搜索的题目:
搜题
题目内容 (请给出正确答案)
提问人:网友anonymity 发布时间:2022-01-06
[主观题]

The object of a dated on board notation stating the name of the ocean vessel and the port of loading

is to indicate:

(1)( ) on board the vessel or on the other means of conveyance from the place of receipt to the port of loading.

(2)( ) on board the vessel departed from the port of loading.

简答题官方参考答案 (由简答题聘请的专业题库老师提供的解答)
查看官方参考答案
更多“The object of a dated on board notation stating the name of the ocean vessel and the port of loading”相关的问题
第1题
: to have a romantic relationship with sb.

A.attend

B.object

C.declare

D.date

点击查看答案
第2题
: to be present at (meeting, university, church services), etc.

A.declare

B.object

C.attend

D.date

点击查看答案
第3题
以下可以将实例赋值给 Object[ ] 类型的变量的是()

A、new int[ 50 ]

B、new String[ 50 ]

C、new Object[ 50 ]

D、new Date[50]

点击查看答案
第4题
下面程序的目的是在屏幕上显示当前目录下的文件信息。文件信息通过表格JTable的实例显示。请改正程
序中的错误(有下划线的语句),使程序能输出正确的结果。

注意:不改动程序的结构,不得增行或删行。

import java.awt.*;

import javax.swing.*;

import java.util. Date;

import javax.swing.table.*;

import java.applet.*;

import java.io.*;

public class Example3_10 extends JApplet, JFrame

{

public void init()

{

FileModel fm = new FileModel();

JTable jt = new JTable();

jt.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);

jt.setColumnSelectionAllowed(true);

JScrollPane jsp = new JScrollPane(jt);

getContentPane().add(jsp, BorderLayout.CENTER);

}

public static void main(String args[])

{

Example3_10 ft = new Example3_10();

ft.init();

JFrame. f = new JFrame();

f.setDefaultCloseOperation(JFrame.EXIT ON CLOSE);

f.getContentPane() .add(ft.getContentPane());

f.setSize (300, 400);

f.show();

}

}

class FileModel extends AbstractTableModel

{

String[] columnName = new String[] {

"文件名", "大小", "最后修改时间"

}

Object[] [] data;

public FileModel() { this("."); }

public FileModel(String dir)

{

File file = new File(dir);

String files[] = file.list();

data = new Object [files.length] [columnName.length];

for (int i=0; i < files.length; i++)

{

File tmp = new File (files[i]);

data[i] [0] = tmp.getName();

data[i] [1] = new Long(tmp.length());

data[i] [2] = new Date(tmp.lastModified() );

}

}

public int getColumnNumber()

{

return columnName.length;

}

public int getRowCount()

{

return data. length;

}

public String getColumnName(int col)

{

return columnName[col];

}

public Object getValueAt(int row, int col)

{

return data[row] [col];

}

public Class getColumnClass(int c)

{

return getValueAt (0, c) .getClass();

}

}

点击查看答案
第5题
According to people who saw it, a large, bright object "exploded" over a. Siberian forest
in 1908, making a very loud noise and causing a spectacular "cloud of fire." Surprisingly, scientists did not visit the area until 1927. If anything, they were expecting to find a large hole and fragments(碎片)of rock that would indicate the impact of a meteor(流星). Instead, they found an area with fallen trees radiating(辐射)out from a central point, and largely destroyed by fire. Recent studies concluded that an object exploded about three miles above the ground. If this destruction was not caused by a meteor, then what did cause it? This is a tantalizing question. Some scientists think that a small comet(彗星)exploded just before colliding(碰撞) with the earth and ignited the forest. Recently, a few scientists have noticed that the area looks as if an atomic explosion took place, but they have no explanations of how or why. There is even a theory that a spaceship from another planet exploded while trying to land on the earth. To date, the evidence for all these theories is very mainly for educated guess.

It was surprising that ______.

A.the "explosion" caused a loud sound and a big fire

B.the "explosion" caused much damage to the forest

C.scientists didn't explore that area right after the explosion

D.people can't make out the cause of the explosion

点击查看答案
第6题
Assignment 6 - Outlier mining You are required to ...

Assignment 6 - Outlier mining You are required to use outlier mining methods to detect the outliers with given data sets. In a section of a city road, several cameras are set to collect the plate of vehicles from 2017-06-09 to 2017-06-12, as well as the date and time when passing the start point and the finish point. Travel time is calculated later. Time serial is another form of transformation from start time. So each instance contains 8 attributes, including serial number, license plate number, date and time passing start/end point, time serial and travel time. There are totally 4977 instances. You need to finish the following tasks. Task: (1) Use statistic-based approach to detect the outliers of travel time. Calculate the mean value and the variance of travel time. Write out the confidence interval. Take time serial as X-axis and the travel time as Y-axis. Plot the scatter diagram and mark the outliers you have recognized. (2) Use distance-based approach to detect the outliers of travel time. An object o in data set D is defined as an outlier with parameters r and π described as DB(r,π), if a fraction of the objects in D lie at a distance less than r from o is less than π, o is an outlier. Let parameter r vary from 0.1 to 0.3 with the step of 0.1, and π vary from 30 to 90 with the step of 30, find the outliers and the number of the outliers. You can use the Euclidian distance. (3) Use density-based approach to detect the outliers of travel time. With different k (from 3 to 400 with the step of 5), the number of neighbors, calculate the LOF for each data point. Set 2.0 as a threshold for LOF and an object is labeled as an outlier if its LOF exceeds 2.0. Firstly, take k value as X-axis and the number of outliers as Y-axis. Plot the line chart. Secondly, calculate the LOF for each data point and give the top 4 outliers. Use k=350 and the Euclidian distance.

点击查看答案
第7题
阅读以下说明和C++程序,将应填入(n)处的字句写在对应栏内。【C++程序】include < stdio. h >include

阅读以下说明和C++程序,将应填入(n)处的字句写在对应栏内。

【C++程序】

include < stdio. h >

include < string. h >

define Max 1000

class Bank

{

int index;

char date [Max] [10]; // 记录交易日

iht amount[Max]; // 记录每次交易金额,以符号区分存钱和取钱

int rest[ Max]; // 记录每次交易后余额

static iht sum; // 账户累计余额

public:

Bank() {index =0;}

void deposit(char d[ ] , int m) //存入交易

{

strcpy (date [ index ], d);

amount[ index] = m;

(1);

rest[ index] = sum;

index++;

}

void withdraw (char d[ ], int m) //取出交易

{

strcpy(date[ index] ,d);

(2);

(3);

rest[ index] = sum;

index++;

}

void display();

};

int Bank:: sum = 0;

void Bank:: display () //输出流水

{

int i;

printf("日期 存入 取出 余额\n");

for (4)

{

printf(" %8s" ,date[i] );

if (5)

printf(" %6d" , -amount[i] );

else

printf("%6d ",amount[i] );

printf("% 6d\n" ,rest[i] );

} }

void main()

{

Bank object;

object. deposit ("2006.2.5", 1 00 );

object. deposit("2006.3.2" , 200);

object. withdraw("2006.4.1", 50);

object. withdraw("2006.4.5", 80);

object. display ();

}

本程序的执行结果如下:

日期 存入 取出 余额 2006.2.5 100 100

2006.3.2 200 300

2006.4.1 50 250

2006.4.5 80 170

点击查看答案
第8题
本程序的目的是在屏幕上显示当前目录下的文件信息。文件信息通过表格JTable的实例显示。请更正题中
带下划线的部分,使程序能输出正确的结果。

注意:不改变程序的结构,不得增行或删行。

import java.awt.*;

import javax.swing.*;

import java.util.Date;

import javax.swing.table.*;

import java.applet.*;

import java.io.*;

public class advance extends JApplet, JFrame

{

public void init()

{

FileModel fm=new FileModel();

JTable jt=new JTable();

jt.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);

jt.setColumnSelectionAllowed(true);

JScrollPane jsp=new JScrollPane(jt);

getContentPane().add(jsp, BorderLayout.CENTER);

}

public static void main(String args[])

{

advance ft=new advance();

ft.init();

JFrame. f=new JFrame();

f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

f.getContentPane().add(ft.getContentPane());

f.setSize(300,400);

f.show();

}

}

class FileModel extends AbstractTableModel

{

String[] columnName=new String[] {

"文件名","大小","最后修改时间"

};

Object[][] data;

public FileModel() {this(".");}

public FileModel(String dir)

{

File file=new File(dir);

String files[]=file.list();

data=new Object[files.length] [columnName.length];

for(int i=0; i<files.length; i++)

{

File tmp=new File(files[i]);

data[i] [0]=tmp.getName();

data[i] [1]=new Long(tmp.length());

data[i] [2]=new Date(tmp.lastModified());

}

}

public int getColumnNumber()

{

return columnName.length;

}

public int getRowCount()

{

return data.length;

}

public String getColumnName(int col)

{

return columnName[col];

}

public Object getValueAt(int row, int col)

{

return data[row] [col];

}

public Class getColumnClass(int c)

{

return getValueAt(0,c).getClass();

}

}

点击查看答案
第9题
Baidu, China's leading search engine company, has unveiled its own eyewear called

Baidu Eye. It is said to be a different product from Google Glass in terms of functionality.

The company demonstrated a working prototype on September 3 at its annual Technology Innovation Conference in Beijing. It bears a similarity to Google Glass, but it has no screen. Instead, the device uses a camera to scan objects, and focuses on analyzing information around its user and beaming that to a smartphone.

Baidu says the device is designed to support image search. The company's CEO Robin Li believes in five years' time, people will get used to searching by image and audio rather than text. Li has given an example of how one can take advantage of Baidu Eye, "If you are in a shopping mall and come across a woman whose skirt looks really attractive, you take a photo of her skirt using Baidu Eye, and you'll get to know where to buy one for yourself.

According to Kaiser Kuo, Baidu's director of international communications, Baidu Eye can also recognize voice and gesture, "You can use voice commands, or gesture commands - like expanding to zoom, or circling an object in your field of view with your finger.

Baidu is yet to announce a release date or marketing plans for Baidu Eye.

1.Baidu is China's leading search engine company.{T; F}

2.Baidulaunched a product that has more functions than Google Glasson September 3.{T; F}

3.Baidu Eyecanscan objects with its small screen.{T; F}

4.The company’s CEO Robin Li believes thatpeople will get used to searching by text.{T; F}

5. Baidu has already announced the release of Baidu Eye.{T; F}

点击查看答案
第10题
Science is an enterprise concerned with gaining information about causality, or the relati
onship between cause and effect. A simple example of a cause is the movement of a paddle as it strikes a ping-pong ball; the effect is the movement of the ball through the air. In psychology and other sciences, the word "cause" is often replaced by the term "independent variable". This term implies that the experimenter is often "free" to vary the independent variable as he or she desires (for example, the experimenter can control the speed of the paddle as it strikes the ball). The term "dependent variable" replaces the word "effect", and this term is used because the effect depends on some characteristic of the independent variable (the flight of the ball depends on the speed of the paddle). The conventions of science demand that both the independent and dependent variables be observable events, as is the case in the ping-pong example. In the case of biorhythm theory, the independent variable is the number of days that have elapsed between a person's date of birth and some test day. The dependent variable is the person's level of performance on some specified task on the test day. Notice that although the experimenter is not free to choose a birthday for a given individual, persons with different dates of birth can be tested on the same day, or a single subject can be tested on several different days.

In order to predict the relationship between independent and dependent variables, many scientific theories make use of what are called intervening variables. Intervening variables are purely theoretical concepts that cannot be observed directly. To predict the flight of a ping-pong ball, Newtonian physics relies on a number of intervening variables, including force, mass, air resistance, and gravity. You can probably anticipate that the intervening variables of biorhythm theory are the three bodily cycles with their specified time periods. It should be emphasized that not all psychological theories include intervening variables, and some psychologists object to their use precisely because they are not directly observable.

The final major component of a scientific theory is its syntax, or the rules and definitions that state how the independent and dependent variables are to be measured, and that specify the relationships among independent variables, intervening variables, and dependent variables. It is the syntax of biorhythm theory that describes how to use a person's birthday to calculate the current status of the three cycles. The syntax also relates the cycles to the dependent variable, performance, by stating that positive cycles should cause high levels of performance whereas low or critical cycles should cause low performance levels. To summarize, the components of a scientific theory can be divided into four major categories: independent variables, dependent variables, intervening variables, and syntax.

Based on the passage, causality may have the meaning that ______.

A.cause and effect can be independent of each other

B.there is hardly anything that happens without a cause

C.dependent and independent variables affect each other

D.cause and effect may vary respectively in most events

点击查看答案
第11题
Part CDirections: Read then following text carefully and then translate the underlined seg

Part C

Directions: Read then following text carefully and then translate the underlined segments into Chinese. Your translation should be written clearly on ANSWER SHEET Ⅱ. (10 points)

Laws of nature are of two basic forms: (1) a law is Universal if it states that some conditions, so far as are known, in- variably are found together with certain other conditions; and (2) a law is probabilistic if it affirms that, on the average, a stated fraction of cases displaying a given condition will display a certain other condition as well. In either case, a law may be valid even though it obtains only under special circumstances or as a convenient approximation.

46) Moreover, a law of nature has no logical necessity; rather, it rests directly or indirectly upon the evidence of experience. Laws of universal form. must be distinguished from generalizations, such as "All chairs in this office are gray," which appear to be accidental. Generalizations, for example, cannot support counterfactual conditional statements such as "If this chair had been in my office, it would be gray" nor subjunctive conditionals such as "If this chair were put in my office, it would be gray." On the other hand, the statement "All planetary objects move in nearly elliptical paths about their star" does provide this support. All scientific laws appear to give similar results.

47) The class of universal statements that can be candidates for the status of laws, however, is determined at any time in history, by the theories of science current then.

Several positive attributes are commonly required of a natural law. Statements about things or events limited to one location or one date cannot be lawlike. Also, most scientists hold that the predicate must apply to evidence not used in deft- ring the law: though the law is founded upon experience, it must predict or help one to understand matters not included among these experiences. Finally, it is normally expected that o law will be explainable by more embracing laws or by some theory.

48) Thus t a regularity for which there are general theoretical grounds for expecting it will be more readily called a natural law than an empirical regularity that cannot be subsumed under more general laws or theories.

Universal laws are of several types. 49) Many assert a dependence between varying quantities measuring certain properties, as in the law that the pressure of a gas under steady temperature is inversely proportional to its volnme.

Others state that events occur in an invariant order, as in "Vertebrates always occur in the fossil record after the rise of invertebrates." Lastly, there are laws affirming that if an object is of a stated sort it will have certain observable properties. 50) Part of the reason for the ambiguity of the term law of nature lies in the temptation to apply the term only to statements of one of these sorts of laws, as in the claim that science deals solely with cause and effect relationships, when in fact all three kinds are equally valid.

46.____________________

点击查看答案
重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁!
查看《购买须知》>>>
重置密码
账号:
旧密码:
新密码:
确认密码:
确认修改
购买搜题卡查看答案
购买前请仔细阅读《购买须知》
请选择支付方式
微信支付
支付宝支付
点击支付即表示你同意并接受《服务协议》《购买须知》
立即支付
搜题卡使用说明

1. 搜题次数扣减规则:

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

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

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

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

请使用微信扫码支付(元)

订单号:

遇到问题请联系在线客服

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

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

- 微信扫码关注简答题 -
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反简答题购买须知被冻结。您可在“简答题”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
- 微信扫码关注简答题 -
请用微信扫码测试
欢迎分享答案

为鼓励登录用户提交答案,简答题每个月将会抽取一批参与作答的用户给予奖励,具体奖励活动请关注官方微信公众号:简答题

简答题官方微信公众号

简答题
下载APP
关注公众号
TOP