國立暨南國際大學 97 學年度第一學期小考試卷

 
科目名稱:資訊系統 與網路導論 開課系所:資訊工程 學系 任課教師
吳坤熹
系所別:
年級:
學號:
姓名:
考試日期
2008.11.12

(考試時間: 14:10-14:20)

  1. (10%) What value will the following code display?

    #include <iostream>
    int main() // Quiz 6-1: Understanding bitwise operators.
    {
    unsigned s = 555;
    int i = (s >> 4) & ~(~0 << 3);
    std::cout << i;
    }




  2. (10%) What will the following code display?
         #include <iostream>
         using  std::cout;
     
         int main() {
           int n = 11;
           cout << ++n ;
           cout << n++ << "\n";
         }