2、SWAP A
对
举一反三
- 已知swap函数模板的定义如下: template[typenameT] voidswap(T&var1,T&var2) { Ttemp=var1; var1=var2; var2=temp; } 可使用以下哪种方式调用swap?___________ A: A.intv1=1;intv2=2;swap(v1,v2); B: B.swap(1,2); C: C.intv1=1;intv2=2;swap(&v1,&v2); D: D.intv1=1;doublev2=2;swap(v1,v2);
- If you define the swap function as follows:[br][/br]template [typename T][br][/br]void Swap(T &var1, T &var2) {[br][/br] T temp = var1;[br][/br] var1 = var2;[br][/br] var2 = temp;[br][/br]}[br][/br]You can invoke Swap using ______. A: Swap(1, 2) B: int v1 = 1, v2 = 2; Swap(v1, v2); C: int v1 = 1, v2 = 2; Swap(&v1, &v2); D: int v1 = 1; double v2 = 2; Swap(v1, v2);
- swap分区的大小通常情况下应为内存大小的2~3倍。
- 下列程序的输出结果是:x = 1 y = 2 def swap(a, b): t = a a = b b = t print a, b swap(x, y) print x, y A: 1 21 2 B: 2 11 2 C: 1 22 1 D: 2 12 1
- 假设,交换分区文件为/swap/swapfile,大小为64M,则添加交换分区的步骤有( ) A: 创建一个空的swap文件<br/>dd if=/dev/zero of=/swap/swapfile bs=1024 count=65536 B: 格式化swap分区,文件变成swap格式<br/>mkswap /swap/swapfile C: 激活swap分区,启用这个swap文件<br/>swapon /swap/swapfile D: 配置swap文件信息,即在/etc/fstab文件中最后一行输入<br/>/swap/swapfile swap swap default 0 0
内容
- 0
linux的文件系统不包括 A: swap B: vfat C: ext3/2 D: NTFS
- 1
以下程序的输出结果是( )。main(){ int x=1,y=2; void swap(int x,int y); swap(x,y); printf("x=%d,y=%d\n",x,y);}void swap(int x,int y){ x=3,y=4;} A: x=3,y=4 B: x=1,y=2 C: x=3 y=4 D: x=1 y=2
- 2
SWAP 48H
- 3
有如下函数定义:void swap(int x,int y) { int temp; temp=x; x=y; y=temp; }在运行如下语句后, a=1;b=2; swap(a,b);a的值为 。
- 4
Which of the following statements is FALSE() A: In a currency swap, the notional principal is actually swapped twice, once at the beginning of the swap and again at the termination of the swap. B: The time frame of a swap is called its tenor. C: In a currency swap, only net interest payments are made.