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 39
Ngày làm bài: Hôm nay lúc 02:57:26 (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 in the program?
struct emp
{
    int ecode;
    struct emp e;
};

  A - 
Error: in structure declaration
  B - 
Linker Error
  C - 
No Error
  D - 
None of above
2-
Point out the error in the program?
#include<stdio.h>

int main()
{
    struct emp
    {
        char name[20];
        float sal;
    };
    struct emp e[10];
    int i;
    for(i=0; i<=9; i++)
        scanf("%s %f", e[i].name, &e[i].sal);
    return 0;
}

  A - 
Error: invalid structure member
  B - 
Error: Floating point formats not linked
  C - 
No error
  D - 
None of above
3-
Point out the error in the program?
#include<stdio.h>
#include<string.h>
void modify(struct emp*);
struct emp
{
    char name[20];
    int age;
};
int main()
{
    struct emp e = {"Sanjay", 35};
    modify(&e);
    printf("%s %d", e.name, e.age);
    return 0;
}
void modify(struct emp *p)
{
     p ->age=p->age+2;
}

  A - 
Error: in structure
  B - 
Error: in prototype declaration unknown struct emp
  C - 
No error
  D - 
None of above
4-
Point out the error in the program in 16-bit platform?
#include<stdio.h>

int main()
{
    struct bits
    {
        int i:40;
    }bit;

    printf("%d\n", sizeof(bit));
    return 0;
}

  A - 
4
  B - 
2
  C - 
Error: Bit field too large
  D - 
Error: Invalid member access in structure
5-
Point out the error in the program?
#include<stdio.h>

int main()
{
    union a
    {
        int i;
        char ch[2];
    };
    union a z1 = {512};
    union a z2 = {0, 2};
    return 0;
}

  A - 
Error: invalid union declaration
  B - 
Error: in Initializing z2
  C - 
No error
  D - 
None of above
6-
Point out the error in the program?
#include<stdio.h>

int main()
{
    struct emp
    {
        char n[20];
        int age;
    };
    struct emp e1 = {"Dravid", 23};
    struct emp e2 = e1;
    if(e1 == e2)
        printf("The structure are equal");
    return 0;
}

  A - 
Prints: The structure are equal
  B - 
Error: Structure cannot be compared using '=='
  C - 
No output
  D - 
None of above
7-
Point out the error in the program?
#include<stdio.h>

int main()
{
    struct bits
    {
        float f:2;
    }bit;

    printf("%d\n", sizeof(bit));
    return 0;
}

  A - 
4
  B - 
2
  C - 
Error: cannot set bit field for float
  D - 
Error: Invalid member access in structure
8-
Point out the error in the program?
#include<stdio.h>

int main()
{
    struct emp
    {
        char name[25];
        int age;
        float bs;
    };
    struct emp e;
    e.name = "Suresh";
    e.age = 25;
    printf("%s %d\n", e.name, e.age);
    return 0;
}

  A - 
Error: Lvalue required/incompatible types in assignment
  B - 
Error: invalid constant expression
  C - 
Error: Rvalue required
  D - 
No error, Output: Suresh 25
9-
Which of the following statements correct about the below program?
#include<stdio.h>

int main()
{
    struct emp
    {
        char name[25];
        int age;
        float sal;
    };
    struct emp e[2];
    int i=0;
    for(i=0; i<2; i++)
        scanf("%s %d %f", e[i].name, &e[i].age, &e[i].sal);

    for(i=0; i<2; i++)
        scanf("%s %d %f", e[i].name, e[i].age, e[i].sal);
    return 0;
}

  A - 
Error: scanf() function cannot be used for structures elements.
  B - 
The code runs successfully.
  C - 
Error: Floating point formats not linked Abnormal program termination.
  D - 
Error: structure variable must be initialized.
10-
Which of the following statements correct about the below program?
#include<stdio.h>

int main()
{
    union a
    {
        int i;
        char ch[2];
    };
    union a u1 = {512};
    union a u2 = {0, 2};
    return 0;
}
1: u2 CANNOT be initialized as shown.
2: u1 can be initialized as shown.
3: To initialize char ch[] of u2 '.' operator should be used.
4: The code causes an error 'Declaration syntax error'
  A - 
1, 2
  B - 
2, 3
  C - 
1, 2, 3
  D - 
1, 3, 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 ASP.NET (English) - Bài 31
Trắc Nghiệm C# - Bài 41
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 84
Trắc nghiệm Linux - Bài 64
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 36
Trắc nghiệm XML - Bài 08
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 12
Trắc Nghiệm Java - Bài 17
Trắc Nghiệm ASP.NET (English) - Bài 30
Trắc Nghiệm Java - Bài 06
Trắc Nghiệm Thiết Kế Web - Bài 01
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 24
Trắc nghiệm Linux - Bài 39
Trắc Nghiệm C Sharp - Bài 23
Trắc Nghiệm ASP.NET - Bài 01
Trắc nghiệm Linux - Bài 42
Trắc Nghiệm Java - Bài 36
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 34
Trắc nghiệm XML - Bài 14
Trắc Nghiệm Pascal - Bài 27
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