CertyRush
Đang tải...
C CertyRush
Câu hỏi free preview

Câu 26: CPP: C++ Certified Professional Programmer

Which stack initialization (line numbers) are correct? Choose all that apply.#include #include #include #include #include using namespace std;int main(){deque mydeck;list mylist;vector myvector;stack first;// Line Istack second(mydeck);// Line IIstack third(second);// Line IIIstack > fourth(mylist);// Line IVstack > f…

Nội dung câu hỏi

Which stack initialization (line numbers) are correct? Choose all that apply.#include #include #include #include #include using namespace std;int main(){deque mydeck;list mylist;vector myvector;stack first;// Line Istack second(mydeck);// Line IIstack third(second);// Line IIIstack > fourth(mylist);// Line IVstack > fifth(myvector);// Line V return 0;}

Các lựa chọn

Đáp án được giữ gọn theo nhãn A, B, C, D trong phần bình chọn tương tác.

  1. A. line I — đáp án hiện tại
  2. B. line II — đáp án hiện tại
  3. C. line III — đáp án hiện tại
  4. D. line IV — đáp án hiện tại
  5. E. line V — đáp án hiện tại

Cộng đồng

0 bình luận công khai. Tên thành viên được ẩn một phần.

Chưa có bình luận. Mở giao diện tương tác để bắt đầu thảo luận.

Câu hỏi liền kề