A. request sytem software add
B. request sytem software downgrade
C. request sytem software replace
D. request sytem software rollback
第1题:
publicclassDrinkimplementsComparable{publicStringname;publicintcompareTo(Objecto){return0;}}and:Drinkone=newDrink();Drinktwo=newDrink();one.name=Coffee”;two.name=Tea”;TreeSetset=newTreeSet();set.add(one);set.add(two);AprogrammeriteratesovertheTreeSetandprintsthenameofeachDrinkobject.Whatistheresult?()
A.Tea
B.Coffee
C.CoffeeTea
D.Compilationfails.
E.Thecoderunswithnooutput.
F.Anexceptionisthrownatruntime.
第2题:
To enable the Database Smart Flash Cache, you configure the following parameters:DB_FLASH_CACHE_FILE = ‘/dev/flash_device_1’ , ‘/dev/flash_device_2’DB_FLASH_CACHE_SIZE=64GWhat is the result when you start up the database instance?()
A. It results in an error because these parameter settings are invalid.
B. One 64G flash cache file will be used.
C. Two 64G flash cache files will be used.
D. Two 32G flash cache files will be used.
第3题:
【填空题】运行下列程序,输出结果是____。 #include <iostream> using namespace std; enum opt{ONE,TWO,THREE,FOUR,FIVE,SIX,SEVEN}op; int main(void) { cout<<ONE; cout<<TWO; cout<<SIX; return 0; }
第4题:
YouaremanaginganOracleDatabase11gdatabaserunninginARCHIVELOGmode.TheFlashRecoveryAreaisspecifiedasthedestinationforthearchivedredologfiles.Younoticethiswarninginthealertlogfile:ORA-19815:WARNING:db_recovery_file_dest_sizeof3221225472bytesis100.00%used,andhas0remainingbytesavailable.WhatwouldyoudotoreclaimtheusedspaceintheFlashRecoveryArea()
A.BackuptheFlashRecoveryArea.
B.Decreasetheretentiontimeforthedatabasebackupandflashbacklogfiles.
C.ManuallydeleteallthearchivedlogfilesfromtheFlashRecoveryAreabyusingoperatingsystem(OS)commands.
D.ManuallydeletealltheexpiredbackupsetsfromtheFlashRecoveryAreabyusingoperatingsystem(OS)commands.
第5题:
有下列程序段: #include <iostream> using namespace std; int main() { char b[] = "Hello,you"; b[5] = 0; cout<<b<<end1; return 0; } 执行此程序后,得到的输出结果是( )。
A.Hello,you
B.Hello0you
C.Hello
D.0
第6题:
【填空题】写出下面程序执行后的运行结果: #include<iostream> using namespace std; int main____ { char a[30]="nice to meet you!"; strcpy____/2,"you"); cout<<a<<endl; return 0; }