暗記メーカー
ログイン
quiz1
  • David Mirano

  • 問題数 24 • 9/22/2024

    記憶度

    完璧

    3

    覚えた

    10

    うろ覚え

    0

    苦手

    0

    未解答

    0

    アカウント登録して、解答結果を保存しよう

    問題一覧

  • 1

    It is an object-oriented programming language created by Microsoft that runs on the .NET Framework.

    c#

  • 2

    The first version was released in year

    2002

  • 3

    The latest version, ___, was released in September 2019.

    c#8

  • 4

    The latest version, C# 8, was released in ____

    september 2019

  • 5

    C# is pronounced as “___".

    see-sharp

  • 6

    is a framework for building applications on Windows

    .net

  • 7

    CLR (Common Language Runtime). Class Library

    .net

  • 8

    The easiest way to get started with C#, is to use an___

    ide

  • 9

    can be used to explain C# code, and to make it more readable. It can also be used to prevent execution when testing alternative code.

    comments

  • 10

    comments start with two forward slashes (//)

    single-line

  • 11

    comments start with /* and ends with */.

    multi-line

  • 12

    containers for storing data values

    variables

  • 13

    Different types of variables:

    int, bool, double, char, string

  • 14

    – stores integers (whole numbers) – without decimals, such as 123 or -123

    int

  • 15

    – stores floating point numbers – with decimals, such as 20.99 or -20.99

    double

  • 16

    – stores single characters – such as 'a' or ‘B’

    char

  • 17

    – stores text, such as "Hello World".

    string

  • 18

    – stores values with two states – such as true or false

    bool

  • 19

    To declare more than one variable of the same type, use a ___ list:

    comma-separated

  • 20

    However, you can add the ___ keyword if you don't want others (or yourself) to overwrite existing values.

    const

  • 21

    Combine a text and a variable with the + sign

    concatenate

  • 22

    The ___ method is often used to display variable values to the console window.

    WriteLine()

  • 23

    can be short names (like x and y) or more descriptive names (age, sum, totalVolume).

    identifiers

  • 24

    What is CLR

    common language runtime