皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【单选题】
You are the administrator for Company's network.  Your account is configured to use roaming profiles and your username is Johan1. The profile is stored on a Windows 2000 Server computer named CompanyA. You log on to your Windows 2000 Professional computer and install a shared color laser printer. The color laser printer is shared from a computer named CompanyB. The next day when you return and log on to your computer you discover that when you attempt to print a document to the shared color laser printer, the printer is not included in the list of available printers. You want the printer connection to be available to you from any computer on the network.  What should you do? ()
A.
On CompanyA configure a local user account for Johan1.
B.
On CompanyA change the file ntuser.man to ntuser.dat for Johan1
C.
Install an updated printer driver for the print device on the user’s computer.
D.
Grant Johan1 the Manage Printers permission for the shared color laser printer.
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【简答题】输入 x 的整数值, 当 x>0 时调用 sqrt (x) ,否则调用 abs(x) 。 阅读下面的代码,理解程序的含义,用问号表达式(? :) 替换程序中if..else..语句方法写法的是 (1) #include "stdio.h" #include "math.h" void main() { int x; scanf("%d",&x); if (x >0) printf("%lf",sq...
【单选题】人的口语表达能力,即( )。
A.
思维
B.
口才
C.
演讲
D.
辩论
【判断题】对峙反应也称可逆反应。在同一条件下,既能向正反应方向进行,同时又能向逆反应的方向进行的反应,叫做可逆反应。并且反应不能进行到底。可逆反应无论进行多长时间,反应物都不可能100%地全部转化为生成物。
A.
正确
B.
错误
【简答题】以下程序为既能被5也能被7整除的整数,请将()能的代码补充完整。用&&表示逻辑与。 #include"stdio.h" #include "math.h" int main() { int i; scanf("%d",&i); if(i<=0) printf("Data error!"); else if( ) printf("Yes!"); else printf("No!"); return ...
【简答题】下面程序运行时,输入70,则输出()。 #include"stdio.h" #include "math.h" int main() { int i; scanf("%d",&i); if(i<=0) printf("Data error!"); else if(i%5==0&&i%7==0) printf("Yes!"); else printf("No!"); return 0; }
【单选题】以下程序的运行结果是( )。 #include "stdio.h" #include "math.h" int main() { int i=5; do { if (i%3==1) if(i%5==2) { printf("*%d",i);break; } i++; }while(i!=0); printf ("\n"); }
A.
*7
B.
*3*5
C.
*5
D.
*2*6
【单选题】某单位预计从现在起连续3年年末有4万元的专项支出,为此准备存人银行一笔专项基金,如果年利率为12%,复利半年计息一次,现在存入银行专项基金的最小额度是
A.
9.548万元
B.
9.652万元
C.
10.692万元
D.
19.668万元
【单选题】人的口语表达能力,即( )。
A.
思维
B.
口才
C.
演讲
D.
论辩
【单选题】根据以下近似公式求π值: (π * π)/6 = 1 + 1/(2 * 2) + 1/(3 * 3) +...... + 1/(n * n) 请填空,完成求π的功能。 #include "stdio.h" #include "math.h" int main( ) { double s = 0.0; int i, n; printf("Please input n:"); scanf("%d", ...
A.
1 / i * i
B.
1.0 / i * i
C.
1.0 / (i * i)
D.
1.0 / (n * n)
【单选题】函数pi的功能是根据以下近似公式求π值: (π * π)/6 = 1 + 1/(2 * 2) + 1/(3 * 3) +...... + 1/(n * n) 请填空,完成求π的功能。 #include "stdio.h" #include "math.h" int main( ) { double s = 0.0; int i, n; printf("Please input n:"); scan...
A.
1 / i * i
B.
1.0 / i * i
C.
1.0 / (i * i)
D.
1.0 / (n * n)
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题