The combined age of Frasier and Niles is 86 years.  The comb

题目
问答题
The combined age of Frasier and Niles is 86 years.  The combined age of Niles and Daphne is 74 years.  The combined age of Frasier and Daphne is 78 years.  Figure out each person’s age.
参考答案和解析
正确答案: Frasier 45, Niles 41, Daphne 33.
解析:
根据题意,分别取其名字的第大写一个字母,可以得出如下的方程式:①F+N=86 ②N+D=74 ③F+D=78由①-②可以得出④F-D=12 由③-④可以得出D等于33,由此可知其他两人的年龄。
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

Her sickness ,___________ with terrible weather ,has completely ruined this long-expected trip

A.combining

B.combined

C.to combine

D.to be combined


正确答案:A

第2题:

SQL中,“AGE IN(15,35)”短语的正确含义是

A.AGE=15 AND AGE=35

B.AGE=15 OR AGE=35

C.AGE<=35 AND AGE>=15

D.AGE<35 AND AGE>15


正确答案:B
解析:IN表示取自集合中的一个数值,题面中的集合只有两个数值,15和35。AGE IN(15,35)表示15岁或35岁年龄,选项B正确。

第3题:

●在SQL中,下列涉及空值的操作,不正确的是 (23) 。

(23) A.AGE IS NULL

B.AGE IS NOT NULL

C.AGE=NULL

D.NOT(AGE IS NULL)(23) A.AGE IS NULL

B.AGE IS NOT NULL

C.AGE=NULL

D.NOT(AGE IS NULL)


正确答案:C
【解析】SOL中允许属性值为空,用关键字NULL表示空值。测试"年龄为空值"的条件可用"AGEIS NULL",测试"年龄为非空值"的条件可用"AGE IS NOT NULL"或者"NOT(AGE IS NULL"。

第4题:

根据SQL标准,要修改表student中所有学生的年龄age,使之在原值基础上减一,下面哪个语句适用?()

A update student set age = 1

B update student set age = age - 1

C update age = age -1 from student

D update from student where age = age -1


参考答案B

第5题:

运行时组合框控件Comb1中所选择的表项,可以表示为。

A.Comb1.Text

B.Comb1.List

C.Comb1.ListIndex

D.Comb1.ListCoun


正确答案:A

第6题:

SQL中,“AGE IN(15,35)”短语的正确含义是( )。

A.AGE=15 AND AGE=35

B.AGE=15 OR.AGE=35

C.AGE<=35 AND AGE>=15

D.AGE<35 AND AGE>15


正确答案:B

第7题:

17 ) SQL 中, " AGE IN ( 15 , 35 ) " 短语的正确含义是

A ) AGE = 1 5 AND AGE = 35

B ) AGE = 1 5 OR AGE = 35

C ) AGE < = 35 AND AGE > = 15

D ) AGE < 3 5 AND AGE > 15


正确答案:B

第8题:

数据库SQL语言中,AGE IN(15,35)短语的正确含义是(14)。

A.AGE=15AND AGE=35

B.AGE=15 OR AGE=35

C.AGE<=35 AND AGE>=15

D.AGE<35 AND AGE>15


正确答案:B
解析:IN操作符是用于测试目标值是否是集合成员之一。其中,集合是可以包含NULL值的,但它们是被忽略的。例如,下面这个语句并不会删除ename值为NULL的行。因此,正确答案是B。

第9题:

设组合框Combol中有3个项目,则以下能删除最后一项的语句是______。

A.Comb01.RemoveltemText

B.Comb01.Rcmoveltem2

C.Comb01.Removeltem3

D.Comb01.RemoveltemComb01.Listcount


正确答案:B
解析:在ComboBox控件中,Removeltem方法是用来删除控件中的项目的,其表达式为:object.Removeltemindex其中,0indexComboBox.ListCount-1

第10题:

根据SQL标准,下面哪条语句与select min(age) from student等效?()

A select age from student where age >= min(age)

B select distinct age from student where age >= all min(age)

C select distinct a.age from student a where a.age<= any (select distinctb.age from student b)

D select distinct a.age from student a where a.age<= all (select distinct b.age from student b)


参考答案D

更多相关问题