niusouti.com

The city's road system is () handling the current volume of traffic.A.incapable ofB.routeC.distributeD.able of

题目
The city's road system is () handling the current volume of traffic.

A.incapable of

B.route

C.distribute

D.able of


相似考题
更多“The city's road system is () handling the current volume of traffic. ”相关问题
  • 第1题:

    这个c++程序中char city[20]; 的作用是什么 ?

    #include <fstream>

    #include <iostream>

    using namespace std;

    int main()

    {

        fstream inout;

    inout.open("city.txt",ios::out);

    inout<<"Dallas"<<" "<<"tonghua"<<" "<<"长春"<<" " ;

    inout.close();

    inout.open("city.txt",ios::app | ios::out);

    inout<<"罗马"<<" "<<"巴黎"<<" ";

    inout.close();

    char city[20];

    inout.open("city.txt",ios::in);

    while(!inout.eof())

    {inout>>city;

    cout<<city<<" ";

                     } 

                     inout.close();

                     

        system("PAUSE");

        return 0;

    }


     

    定义一个字符型数组city[20],将从文本文件“city.txt”所读取的数据,暂时存在city[20]中,然后通过输出函数cout将数据输出。

     

  • 第2题:

    设销售数据模型如下:

    厂家S(SNO,SNAME,CITY)

    产品P(PNO,PNAME,COLOR,WEIGHT)

    工程J(JNO,JNAME,CITY)

    销售SPJ(SNO,PNO,JNO,QTY)

    用SQL完成查询:与“双青”在同一城市的厂家名.


    正确答案:

    SELECT  S.SNAME
    FROM  S,S AS X
    WHERE  X.SNAME=’双青’
             AND  S.CITY=X.CITY;

  • 第3题:

    基于教学视频中的供应商零件数据库,能正确查询出“没有使用天津供应商生产的红色零件的工程号”的关系代数表达式是()。

    A.πJNO(J) - πJNO (σCITY='天津' (S) ∞SPJ ∞σCOLOR='红' (P))

    B.πJNO (σCITY≠'天津' (S) ∞SPJ ∞σCOLOR≠'红' (P))

    C.πJNO(J) - πJNO (σCITY='天津'∧COLOR='红'(S∞SPJ ∞P))

    D.πJNO (σCITY≠'天津' ∧COLOR≠'红' (S∞SPJ ∞P))


    πPNAME,COLOR,WEIGHT ((ΠJNO,PNO(SPJ) ÷πJNO(J)) ∞P);πPNAME,COLOR,WEIGHT,JNO,PNO(SPJ∞P) ÷πJNO(J)

  • 第4题:

    建立一个供应商、零件数据库。其中“供应商”表S(Sno,Shame,Zip,City)分别表示:供应商代码、供应商名、供应商邮编、供应商所在城市,其函数依赖为:Sno→(Sname,Zip, City),Zip→City。“供应商”表S属于(16)。

    A.1NF

    B.2NF

    C.3NF

    D.BCNF


    正确答案:B
    解析:本题考查范式的基础知识。“供应商”表S属于2NF,因为表S的主键是Sno,非主属性Sname,Zip,City不存在对键的部分函数依赖。但是,当2NF消除了非主属性对码的传递函数依赖,则称为3NF。“供应商”表S不属于3NF,因为存在传递依赖,即Sno→Zip,Zip→City。所以正确的答案是B。

  • 第5题:

    4、基于教学视频中的供应商零件数据库,能正确查询出“没有使用天津供应商生产的红色零件的工程号”的关系代数表达式是()。

    A.πJNO(J) - πJNO (σCITY='天津' (S) ∞SPJ ∞σCOLOR='红' (P))

    B.πJNO (σCITY≠'天津' (S) ∞SPJ ∞σCOLOR≠'红' (P))

    C.πJNO(J) - πJNO (σCITY='天津'∧COLOR='红'(S∞SPJ ∞P))

    D.πJNO (σCITY≠'天津' ∧COLOR≠'红' (S∞SPJ ∞P))


    πPNAME,COLOR,WEIGHT ((ΠJNO,PNO(SPJ) ÷πJNO(J)) ∞P);πPNAME,COLOR,WEIGHT,JNO,PNO(SPJ∞P) ÷πJNO(J)

  • 第6题:

    下列Moore型状态机采用Verilog语言主控时序部分正确的是:

    A.always@(posedge clk or negedge reset) begin if(!reset) current_state<=s0; else current_state<=next_state; end

    B.always@(posedge clk ) begin if(!reset) current_state<=s0; else current_state<=next_state; end

    C.always@(posedge clk t) if(reset) current_state<=s0; else current_state<=next_state;

    D.always@(posedge clk or negedge reset) if(reset) current_state<=s0; else current_state<=next_state;


    always@(posedge clk or negedge reset) begin if(!reset) current_state<=s0; else current_state<=next_state; end