Tìm kiếm:
TRANG NHÀ
Giới thiệu VNEDU.ORG
Điều khoản và bản quyền
Liên lạc VNEDU
TRẮC NGHIỆM TRỰC TUYẾN
---Công Cụ:---
Soạn Biểu thức
Bảng màu HTML
Ký hiệu đặc biệt 01
Ký hiệu đặc biệt 02
Ký hiệu đặc biệt 03
Ký hiệu đặc biệt 04
Ký hiệu đặc biệt 05
Ký hiệu đặc biệt 06
Ký hiệu đặc biệt 07
Ký hiệu đặc biệt [Toán]
Tin Học   ||  Căn Bản    Văn Phòng    Hệ Thống - Mạng    Phần Mềm Ứng Dụng    Kỹ thuật số    Lập trình    SQL  

Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 09
Ngày làm bài: Hôm nay lúc 10:22:07 (Server time)
Số câu hỏi: 10.   Tổng điểm: 10
Yêu cầu hoàn thành: 60 phút.
Thời gian còn lại: 
Cỡ chữ câu hỏi:  Cỡ chữ đáp án:


1-
Point out the error, if any in the program.
#include<stdio.h>
int main()
{
    int P = 10;
    switch(P)
    {
       case 10:
       printf("Case 1");

       case 20:
       printf("Case 2");
       break;

       case P:
       printf("Case 2");
       break;
    }
    return 0;
}

  A - 
Error: No default value is specified
  B - 
Error: Constant expression required at line case P:
  C - 
Error: There is no break statement in each case.
  D - 
No error will be reported.
2-
Point out the error, if any in the program.
#include<stdio.h>
int main()
{
    int i = 1;
    switch(i)
    {
        case 1:
           printf("Case1");
           break;
        case 1*2+4:
           printf("Case2");
           break;
    }
return 0;
}

  A - 
Error: in case 1*2+4 statement
  B - 
Error: No default specified
  C - 
Error: in switch statement
  D - 
No Error
3-
Point out the error, if any in the while loop.
#include<stdio.h>
int main()
{
    void fun();
    int i = 1;
    while(i <= 5)
    {
        printf("%d\n", i);
        if(i>2)
            goto here;
    }
return 0;
}
void fun()
{
    here:
    printf("It works");
}

  A - 
No Error: prints "It works"
  B - 
Error: fun() cannot be accessed
  C - 
Error: goto cannot takeover control to other function
  D - 
No error
4-
Point out the error, if any in the program.
#include<stdio.h> 
int main()
{
    int a = 10, b;
    a >=5 ? b=100: b=200;
    printf("%d\n", b);
    return 0;
}

  A - 
100
  B - 
200
  C - 
Error: L value required for b
  D - 
Garbage value
5-
Which of the following statements are correct about the below program?
#include<stdio.h>
int main()
{
    int i = 10, j = 20;
    if(i = 5) && if(j = 10)
        printf("Have a nice day");
    return 0;
}

  A - 
Output: Have a nice day
  B - 
No output
  C - 
Error: Expression syntax
  D - 
Error: Undeclared identifier if
6-
Which of the following statements are correct about the below program?
#include<stdio.h>
int main()
{
    int i = 10, j = 15;
    if(i % 2 = j % 3)
        printf("IndiaBIX\n");
    return 0;
}

  A - 
Error: Expression syntax
  B - 
Error: Lvalue required
  C - 
Error: Rvalue required
  D - 
The Code runs successfully
7-
Which of the following statements are correct about the program?
#include<stdio.h>
int main()
{
    int x = 30, y = 40;
    if(x == y)
        printf("x is equal to y\n");

    else if(x > y)
        printf("x is greater than y\n");

    else if(x < y)
        printf("x is less than y\n")
    return 0;
}

  A - 
Error: Statement missing
  B - 
Error: Expression syntax
  C - 
Error: Lvalue required
  D - 
Error: Rvalue required
8-
Which of the following statements are correct about the below program?
#include<stdio.h>
int main()
{
    int i = 0;
    i++;
    if(i <= 5)
    {
        printf("IndiaBIX\n");
        exit(0);
        main();
    }
    return 0;
}

  A - 
The program prints 'IndiaBIX' 5 times
  B - 
The program prints 'IndiaBIX' one time
  C - 
The call to main() after exit() doesn't materialize.
  D - 
The compiler reports an error since main() cannot call itself.
9-
Which of the following statements are correct about an if-else statements in a C-program?
1: Every if-else statement can be replaced by an equivalent statements using ?: operators
2: Nested if-else statements are allowed.
3: Multiple statements in an if block are allowed.
4: Multiple statements in an else block are allowed.
  A - 
1 and 2
  B - 
2 and 3
  C - 
1, 2 and 4
  D - 
2, 3, 4
10-
Which of the following statements are correct about the below C-program?
#include<stdio.h>
int main()
{
    int x = 10, y = 100%90, i;
    for(i=1; i<10; i++)
    if(x != y);
        printf("x = %d y = %d\n", x, y);
    return 0;
}
1 : The printf() function is called 10 times.
2 : The program will produce the output x = 10 y = 10
3 : The ; after the if(x!=y) will NOT produce an error.
4 : The program will not produce output.
  A - 
1
  B - 
2, 3
  C - 
3, 4
  D - 
4
 
[Người đăng: Thành Lãm - ST]
Ghé thăm Kênh của Vị Sư "hai lần chết đi sống lại"
Tu Si Chau Soc Thon

https://www.youtube.com/channel/UCoyC9WTTVR-M3qpTKKEXGnQ

Chau Soc Thon Official Channel


Phong Bảo Official
Phong Bao Official
Xem Nhiều nhất
Trắc Nghiệm Pascal - Bài 20
Trắc Nghiệm ASP.NET - Bài 12
Trắc Nghiệm Ngôn Ngữ Lập Trình C - Bài 16
Trắc Nghiệm ASP.NET - Bài 01
Trắc Nghiệm ASP.NET - Bài 03
Trắc nghiệm C++ - Bài 18
Trắc Nghiệm C# - Bài 53
Trắc Nghiệm ASP.NET - Bài 02
Trắc Nghiệm C# - Bài 42
Trắc Nghiệm Java - Bài 01
Trắc Nghiệm ASP.NET - Bài 04
Trắc Nghiệm Pascal - Bài 22
Trắc Nghiệm ASP.NET - Bài 13
Trắc Nghiệm ASP.NET - Bài 09
Trắc Nghiệm ASP.NET - Bài 08
Trắc nghiệm PHP - Bài 01
Trắc Nghiệm ASP.NET - Bài 06
Trắc Nghiệm ASP.NET - Bài 11
Trắc Nghiệm ASP.NET - Bài 05
Trắc Nghiệm ASP.NET - Bài 23
Đề Xuất
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 28
Trắc Nghiệm Ngôn Ngữ Lập Trình C - Bài 24
Trắc Nghiệm ASP.NET - Bài 17
Trắc nghiệm Linux - Bài 40
Trắc Nghiệm Thiết Kế Web - Bài 15
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 10
Trắc Nghiệm Pascal - Bài 33
Trắc Nghiệm C Sharp - Bài 03
Trắc Nghiệm Thiết Kế Web Và Flash - Bài 29
Trắc nghiệm Linux - Bài 44
Trắc nghiệm Linux ( English ) - Bài 24
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 34
Trắc Nghiệm C# - Bài 40
Trắc nghiệm C++ - Bài 13
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 08
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 41
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 86
Trắc Nghiệm Java - Bài 30
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 01
Trắc Nghiệm Ngôn Ngữ Lập Trình C - Bài 15
Phát triển hệ thống: TRƯƠNG HỮU ĐỨC - Phiên bản 3.0 - © Copyright 2013 - 2024 - VNEDU.ORG

free counters