柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
一个人以6米/秒的速度慢跑一段路程,然后以4米/秒的速度返回到原处,那么这个人的平均速度是( )。
A.5米/秒
B.4米/秒
C.4.5米/秒
D.4.8米/秒
热度🔥28
参考答案:D
解析:
解法一::设该段路程长为s,由速度=路程÷时间,可得平均速度=总路程÷总时间=2s÷(s/6+s/4)=24/5=4.8米/秒。因此,本题答案为D选项。解法二:由等距离平均速度公式:
米/秒。因此,本题答案为D选项。
复制题目向AI提问
米/秒。因此,本题答案为D选项。">
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
窗体上有一个名称为Text1的文本框,一个名称为Command1的命令按钮。窗体文件的程序如下:Private Type x a As Integer b As IntegerEnd TypePrivate Sub Command1_Click() Dim y As x y.a=InputBox("") If y.a\2=y.a / 2 Then y.b=y.a * y.a Else y.b=Fix(y.a / 2) End If Text1.Text=y.bEnd Sub 对以上程序,下列叙述中错误的是( )。
以下过程的功能是从数组中寻找最大值:Private Sub FindMax(a()As Integer, ByRef Max As Integer) Dim s As Integer, f As Integer Dim i As Integer s=LBound(a) f=UBound(a) Max=a(s) For i=s To f If a(i)>Max Then Max=a(i) NextEnd Sub以下关于上述过程的叙述中,错误的是( )。
下面关于I^2C的叙述中,错误的是( )。