I'm writing to()a position as a computer engineer in your company.
A. thank for
B. wait for
C. apply for
第1题:
You are the administrator of a SQL Server 2000 computer. You create a Data Transformation Services (DTS) package. The package is stored as a local package on the server. The package exports data from an online transaction processing (OLTP) database system to an online analytical processing (OLAP) database system that is located on a second SQL Server 2000 computer.
You want the package to execute automatically each evening at 8:00 P.M. What should you do?
A.Use SQL Server Enterprise Manager to create a new job Create a CmdExec job step that runs the dtsrun utility Schedule the job to run each night at 8:00 P.M.
B.Use SQL Server Enterprise Manager to create a new job Create a Transact-SQL job step to query data from the OLTP database Create a second Transact-SQL job step to launch the DTS package Schedule the job to run each night at 8:00 P.M.
C.Create a batch file that runs the dtsrun utility Use the Microsoft Windows Task Scheduler to run the job each night at 8:00 P.M. Configure the Windows Task Scheduler to use the local system account
D.Move the DTS package to the repository Configure the SQLServerAgent service on the OLAP database server to update the package each night at 8:00 P.M.
第2题:
第3题:
以下对字符数组word进行正确初始化的是________。
A.char word[]=“Computer0”;
B.char word[]=“Computer”;
C.char word[]=‘Computer0’;
D.char word[]={‘C’,’o’,’m’,’p’,’u’,’t’,’e’,’r’,’0’};
第4题:
( ) – Is Miss White __________ English teacher, Maria?
– No, she teaches __________ geography.
A.your;my
B.you;mine
C.you;us
D.your;us
第5题:
下面程序将输出computer,请填空。 #include <stdio.h> int main() {int i,j; char c[]="It's a computer"; for(i=0; i<=7;i++) { ; printf("%c",c[j]);} return 0; }
第6题:
【填空题】下面的程序段将输出computer,填空: char c[]="it's a computer"; for(i=0;___________________;i++) {_______________________printf("%c",c[i]);}