• 2022-06-03 问题

    常用的内置聚合函数有( ) A: max(col) B: min(col) C: count(*) D: sum(col)

    常用的内置聚合函数有( ) A: max(col) B: min(col) C: count(*) D: sum(col)

  • 2022-06-05 问题

    选项col=4或col="blue"代表蓝色。( )

    选项col=4或col="blue"代表蓝色。( )

  • 2022-06-16 问题

    图示刚体在一个平面任意力系作用下处于平衡,以下四组平衡方程中哪一组是不独立的( )。[img=514x264]17da6be00ac4dc4.png[/img] A: X = 0, Sm<sub >O</sub>(F) = 0, Sm<sub >A</sub>(F) = 0 B: Sm<sub >A</sub>(F) = 0, Sm<sub >C</sub>(F) = 0, SY = 0 C: m<sub >O</sub>(F) = 0, Sm<sub >A</sub>(F) = 0, Sm<sub >B</sub>(F) = 0 D: X = 0, Sm<sub >A</sub>(F) = 0, Sm<sub >B</sub>(F) = 0

    图示刚体在一个平面任意力系作用下处于平衡,以下四组平衡方程中哪一组是不独立的( )。[img=514x264]17da6be00ac4dc4.png[/img] A: X = 0, Sm<sub >O</sub>(F) = 0, Sm<sub >A</sub>(F) = 0 B: Sm<sub >A</sub>(F) = 0, Sm<sub >C</sub>(F) = 0, SY = 0 C: m<sub >O</sub>(F) = 0, Sm<sub >A</sub>(F) = 0, Sm<sub >B</sub>(F) = 0 D: X = 0, Sm<sub >A</sub>(F) = 0, Sm<sub >B</sub>(F) = 0

  • 2022-06-03 问题

    下列哪些函数功能是对全局表进行修改?( ) A: gettablestr(tablename, row, col) B: settablestr(tablename, row, col, “string”) C: gettablenum(tablename, row, col) D: settablenum(tablename, row, col, value)

    下列哪些函数功能是对全局表进行修改?( ) A: gettablestr(tablename, row, col) B: settablestr(tablename, row, col, “string”) C: gettablenum(tablename, row, col) D: settablenum(tablename, row, col, value)

  • 2022-07-24 问题

    CO理想气体的摩尔统计熵Sm(统计)、摩尔量热熵Sm(量热)与残余熵Sm(残余)之间的关系近似为:() A: Sm(残余)=Sm(统计)-Sm(量热) B: Sm(残余)=Sm(统计)+Sm(量热) C: Sm(残余)+Sm(统计)=Sm(量热) D: Sm(残余)-Sm(统计)=Sm(量热)

    CO理想气体的摩尔统计熵Sm(统计)、摩尔量热熵Sm(量热)与残余熵Sm(残余)之间的关系近似为:() A: Sm(残余)=Sm(统计)-Sm(量热) B: Sm(残余)=Sm(统计)+Sm(量热) C: Sm(残余)+Sm(统计)=Sm(量热) D: Sm(残余)-Sm(统计)=Sm(量热)

  • 2022-06-11 问题

    元胞数组A={'上海','北京','上海','广州','天津','上海','南京'}中,查找字符串'上海'在数组 A 中的位置使用的语句为 A: col=A=='上海' B: col=strcmp(A,'上海') C: col=find(strcmp(A,'上海')) D: col=find(A=='上海')

    元胞数组A={'上海','北京','上海','广州','天津','上海','南京'}中,查找字符串'上海'在数组 A 中的位置使用的语句为 A: col=A=='上海' B: col=strcmp(A,'上海') C: col=find(strcmp(A,'上海')) D: col=find(A=='上海')

  • 2022-06-03 问题

    在VBA中,将某个单元格的背景填充为绿色,文字颜色改为蓝色,则正确的是 A: Cells(row, col).Interior.Color = RGB(0, 255, 0):Cells(row, col).Font.Color = RGB(0, 0, 255) B: Cells(row, col).Interior.Color = RGB(0, 0, 255):Cells(row, col).Font.Color = RGB(0, 255, 0) C: Cells(row, col).Interior.Color = RGB(255, 255, 255):Cells(row, col).Font.Color = RGB(0, 0, 255) D: Cells(row, col).Interior.Color = RGB(0, 0, 0):Cells(row, col).Font.Color = RGB(0, 0, 255)

    在VBA中,将某个单元格的背景填充为绿色,文字颜色改为蓝色,则正确的是 A: Cells(row, col).Interior.Color = RGB(0, 255, 0):Cells(row, col).Font.Color = RGB(0, 0, 255) B: Cells(row, col).Interior.Color = RGB(0, 0, 255):Cells(row, col).Font.Color = RGB(0, 255, 0) C: Cells(row, col).Interior.Color = RGB(255, 255, 255):Cells(row, col).Font.Color = RGB(0, 0, 255) D: Cells(row, col).Interior.Color = RGB(0, 0, 0):Cells(row, col).Font.Color = RGB(0, 0, 255)

  • 2022-06-05 问题

    阅读以下打印九九乘法表程序,A处应该填入______________[br][/br]#!/bin/sh[br][/br]col=1[br][/br]line=1[br][/br]while &#91; "$line" -le 9 &#93;[br][/br]do[br][/br] ___ A_______[br][/br] while &#91; "$col" -le "$line" &#93;[br][/br] do[br][/br] val=`expr $col \* $line`[br][/br] echo -n "$col * $line=$val "[br][/br] col=$(($col+1))[br][/br] done[br][/br] echo ""[br][/br] line=$(($line+1))[br][/br]done A: col=1 B: col=2 C: col=0 D: line=1

    阅读以下打印九九乘法表程序,A处应该填入______________[br][/br]#!/bin/sh[br][/br]col=1[br][/br]line=1[br][/br]while &#91; "$line" -le 9 &#93;[br][/br]do[br][/br] ___ A_______[br][/br] while &#91; "$col" -le "$line" &#93;[br][/br] do[br][/br] val=`expr $col \* $line`[br][/br] echo -n "$col * $line=$val "[br][/br] col=$(($col+1))[br][/br] done[br][/br] echo ""[br][/br] line=$(($line+1))[br][/br]done A: col=1 B: col=2 C: col=0 D: line=1

  • 2022-05-29 问题

    Nous sommes ____________ colère.

    Nous sommes ____________ colère.

  • 2022-05-28 问题

    逻辑函数[img=132x27]18033e573e3cd39.png[/img]的最小项之和表达式为( ) A: Sm(0,1,3,7) B: Sm(0,2,3,6) C: Sm(0,4,6,7) D: Sm(1,3,5,7) E: Sm(1,2,4,7) F: Sm(0,1,2,6) G: Sm(0,1,3,7)

    逻辑函数[img=132x27]18033e573e3cd39.png[/img]的最小项之和表达式为( ) A: Sm(0,1,3,7) B: Sm(0,2,3,6) C: Sm(0,4,6,7) D: Sm(1,3,5,7) E: Sm(1,2,4,7) F: Sm(0,1,2,6) G: Sm(0,1,3,7)

  • 1 2 3 4 5 6 7 8 9 10