ログイン

(Prelim) Integrative Programming BSIT 402
46問 • 11ヶ月前
  • Xai Alexandrei Delos Reyes
  • 通報

    問題一覧

  • 1

    is an object-oriented programming language that supports data encapsulation, inheritance, polymorphism, and method overriding

    C#

  • 2

    Which of the Statements is FALSE in the C# features:

    It's not capable to produce portable code.

  • 3

    is a collection of tools, technologies, and languages that provides an environment to build and deploy different types of applications easily.

    .NET framework

  • 4

    controls tasks and manages system resources of the computer.

    Operating System

  • 5

    is a runtime environment of the .NET framework that manages the execution of the .NET code, enables debugging and exception handling, and makes programs portable.

    Common Language Runtime (CLR)

  • 6

    contains the classes and interfaces used for building applications.

    .NET Base Class Library

  • 7

    is a unified Web development model that includes the services necessary in building enterprise-class Web applications with a minimum of coding.

    ASP.NET

  • 8

    allows building of dynamic websites using a familiar drag-and-drop, event-driven model.

    ASP.NET Web Forms

  • 9

    extend the Web infrastructure to provide the means for software to connect to other software applications.

    ASP.NET Web Services

  • 10

    contain the graphical representation of any window displayed in the application.

    Windows Forms

  • 11

    Is a set of basic language features that ensures operability between the languages in the .NET environment. It is a subset of CTS

    Common Language Specification (CLS)

  • 12

    is a collection of types and resources that are built to work together and form a logical unit of functionality.

    Assembly

  • 13

    The assembly contains _____ that provides information along with a complete description of methods, types, and other resources.

    Metadata

  • 14

    The metadata includes _____, which stores identification information, public types, and a list of other assemblies that are used in the current assembly

    Manifest

  • 15

    The metadata includes _____, which stores identification information, public types, and a list of other assemblies that are used in the current assembly

    Manifest

  • 16

    Each assembly has a _____ version number that is presented as a set of four (4) decimal pieces:

    128-Bit

  • 17

    version number that is presented as a set of four (4) decimal pieces:

    Major.Minor.Build.Revision

  • 18

    The ____ declaration is a collection of classes.

    namespace

  • 19

    The ____ declaration is a collection of classes.

    namespace

  • 20

    The _____ keyword is used to access the classes available in a namespace.

    using

  • 21

    Every C# application contains one (1) ____ method.

    Main

  • 22

    is a name of a program component programmers use to uniquely identify namespaces, classes, methods, variables, constants, etc.

    Identifier

  • 23

    Which in the following syntax rules are NOT TRUE when naming an identifier in C#:

    The identifier's name can only have any combination of letters, digits, and underscores. White spaces are allowed

  • 24

    are reserved words a programming language uses for its own use, and they have a special predefined meaning to the compiler.

    Keywords

  • 25

    Which of the following is NOT a keyword

    give

  • 26

    is an identifier and a memory location that stores a specific value.

    Variable

  • 27

    is an identifier and a memory location whose value cannot be changed during program execution

    Constant

  • 28

    are used to specify a set of values and their operations associated with variables or constants.

    Data Types

  • 29

    directly store the values within the variable.

    Value Types

  • 30

    It does not store an actual value, but it stores the address where the value is stored.

    Reference Types

  • 31

    Also known as type casting is the process of converting a value of one (1) type of data to another data type.

    Type conversion

  • 32

    This is the conversion of a lower precision data type to a value of higher precision data type

    Implicit conversion

  • 33

    Allows the users to convert a value of higher precision data type into a value of lower precision data type

    Explicit conversion

  • 34

    explicit conversions allow the users to convert a value of higher precision data type into a value of lower precision data type by using a ______

    Cast Operator

  • 35

    using _____; namespace ConsoleApp { class ComputeRectangleArea { static void Main() { int length, width, area; length = 50; width = 8; area = length * width; Console.WriteLine("The area of the rectangle is " + area); Console.ReadKey(); } } }

    System

  • 36

    using System; namespace ConsoleApp { class ComputeRectangleArea { static void Main() { int length, width, area; length = 50; width = 8; area = length * width; Console._______("The area of the rectangle is " + area); Console.ReadKey(); } } }

    WriteLine

  • 37

    using System; namespace ConsoleApp { class ComputeRectangleArea { static void Main() { int length, width, area; length = 50; width = 8; area = length * width; Console.WriteLine("The area of the rectangle is " + area); Console._____(); } } }

    ReadKey

  • 38

    using System; namespace ConsoleApp { class ComputeRectangleArea { static void ____() { int length, width, area; length = 50; width = 8; area = length * width; Console.WriteLine("The area of the rectangle is " + area); Console.ReadKey(); } } }

    Main

  • 39

    using System; namespace ConsoleApp { class ComputeRectangleArea { static void Main() { ____ length, width, area; length = 50; width = 8; area = length * width; Console.WriteLine("The area of the rectangle is " + area); Console.ReadKey(); } } }

    int

  • 40

    defines a set of rules indicating the order in which the operator should be evaluated in an expression

    Operator precedence and associativity

  • 41

    These are operators used in performing mathematical operations on numerical value

    Arithmetic Operators

  • 42

    These are used to determine the relationship between operands of numeric values and generate a decision on that base.

    Relational Operators

  • 43

    These are operators used in performing logical operation.

    Logical Operators

  • 44

    These are used to assign a value or the result of an expression to a variable.

    Assignment Operators

  • 45

    An ________ in C# is a combination of operands (or variables) and operators that can be evaluated to a single value.

    expression

  • 46

    class includes several methods that perform a variety of calculations that can be used in a program.

    System.Math

  • The Contemporary World Mock test (Prelims)

    The Contemporary World Mock test (Prelims)

    Xai Alexandrei Delos Reyes · 58問 · 2年前

    The Contemporary World Mock test (Prelims)

    The Contemporary World Mock test (Prelims)

    58問 • 2年前
    Xai Alexandrei Delos Reyes

    Computing Mock test (Prelims)

    Computing Mock test (Prelims)

    Xai Alexandrei Delos Reyes · 67問 · 2年前

    Computing Mock test (Prelims)

    Computing Mock test (Prelims)

    67問 • 2年前
    Xai Alexandrei Delos Reyes

    Programming Mock Test (Prelims)

    Programming Mock Test (Prelims)

    Xai Alexandrei Delos Reyes · 64問 · 2年前

    Programming Mock Test (Prelims)

    Programming Mock Test (Prelims)

    64問 • 2年前
    Xai Alexandrei Delos Reyes

    Entrepreneurship Mock Test (Prelims)

    Entrepreneurship Mock Test (Prelims)

    Xai Alexandrei Delos Reyes · 23問 · 2年前

    Entrepreneurship Mock Test (Prelims)

    Entrepreneurship Mock Test (Prelims)

    23問 • 2年前
    Xai Alexandrei Delos Reyes

    Computing Mock Test (Midterms) BSIT 107

    Computing Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 76問 · 2年前

    Computing Mock Test (Midterms) BSIT 107

    Computing Mock Test (Midterms) BSIT 107

    76問 • 2年前
    Xai Alexandrei Delos Reyes

    Math Mock Test (Prelims)

    Math Mock Test (Prelims)

    Xai Alexandrei Delos Reyes · 48問 · 2年前

    Math Mock Test (Prelims)

    Math Mock Test (Prelims)

    48問 • 2年前
    Xai Alexandrei Delos Reyes

    Programming Mock Test (Midterms) BSIT 107

    Programming Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 52問 · 2年前

    Programming Mock Test (Midterms) BSIT 107

    Programming Mock Test (Midterms) BSIT 107

    52問 • 2年前
    Xai Alexandrei Delos Reyes

    UTS Mock Test (Midterms) BSIT107

    UTS Mock Test (Midterms) BSIT107

    Xai Alexandrei Delos Reyes · 40問 · 2年前

    UTS Mock Test (Midterms) BSIT107

    UTS Mock Test (Midterms) BSIT107

    40問 • 2年前
    Xai Alexandrei Delos Reyes

    Entrepreneurship Mock Test (Midterms) BSIT 107

    Entrepreneurship Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 38問 · 2年前

    Entrepreneurship Mock Test (Midterms) BSIT 107

    Entrepreneurship Mock Test (Midterms) BSIT 107

    38問 • 2年前
    Xai Alexandrei Delos Reyes

    Contemporary World Mock Test (Midterms) BSIT 107

    Contemporary World Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 28問 · 2年前

    Contemporary World Mock Test (Midterms) BSIT 107

    Contemporary World Mock Test (Midterms) BSIT 107

    28問 • 2年前
    Xai Alexandrei Delos Reyes

    Math Mocktest (Midterms) BSIT 107

    Math Mocktest (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 24問 · 2年前

    Math Mocktest (Midterms) BSIT 107

    Math Mocktest (Midterms) BSIT 107

    24問 • 2年前
    Xai Alexandrei Delos Reyes

    Computer Programming Mocktest (Pre-finals)

    Computer Programming Mocktest (Pre-finals)

    Xai Alexandrei Delos Reyes · 26問 · 2年前

    Computer Programming Mocktest (Pre-finals)

    Computer Programming Mocktest (Pre-finals)

    26問 • 2年前
    Xai Alexandrei Delos Reyes

    Math Mocktest (Pre-Finals)

    Math Mocktest (Pre-Finals)

    Xai Alexandrei Delos Reyes · 19問 · 2年前

    Math Mocktest (Pre-Finals)

    Math Mocktest (Pre-Finals)

    19問 • 2年前
    Xai Alexandrei Delos Reyes

    Computing Mock Test (Pre-finals)

    Computing Mock Test (Pre-finals)

    Xai Alexandrei Delos Reyes · 36問 · 2年前

    Computing Mock Test (Pre-finals)

    Computing Mock Test (Pre-finals)

    36問 • 2年前
    Xai Alexandrei Delos Reyes

    Computing Mock Test Finals

    Computing Mock Test Finals

    Xai Alexandrei Delos Reyes · 26問 · 2年前

    Computing Mock Test Finals

    Computing Mock Test Finals

    26問 • 2年前
    Xai Alexandrei Delos Reyes

    Comprog 2nd sem (prelims) BSIT 205

    Comprog 2nd sem (prelims) BSIT 205

    Xai Alexandrei Delos Reyes · 63問 · 1年前

    Comprog 2nd sem (prelims) BSIT 205

    Comprog 2nd sem (prelims) BSIT 205

    63問 • 1年前
    Xai Alexandrei Delos Reyes

    Discrete Math 2nd sem (prelims) BSIT 205

    Discrete Math 2nd sem (prelims) BSIT 205

    Xai Alexandrei Delos Reyes · 36問 · 1年前

    Discrete Math 2nd sem (prelims) BSIT 205

    Discrete Math 2nd sem (prelims) BSIT 205

    36問 • 1年前
    Xai Alexandrei Delos Reyes

    Art Appreciation (Prelim) BSIT 205

    Art Appreciation (Prelim) BSIT 205

    Xai Alexandrei Delos Reyes · 56問 · 1年前

    Art Appreciation (Prelim) BSIT 205

    Art Appreciation (Prelim) BSIT 205

    56問 • 1年前
    Xai Alexandrei Delos Reyes

    Ethics 2nd sem (Prelims) BSIT 205

    Ethics 2nd sem (Prelims) BSIT 205

    Xai Alexandrei Delos Reyes · 45問 · 1年前

    Ethics 2nd sem (Prelims) BSIT 205

    Ethics 2nd sem (Prelims) BSIT 205

    45問 • 1年前
    Xai Alexandrei Delos Reyes

    STS 2nd Sem (Prelim) BSIT 205

    STS 2nd Sem (Prelim) BSIT 205

    Xai Alexandrei Delos Reyes · 40問 · 1年前

    STS 2nd Sem (Prelim) BSIT 205

    STS 2nd Sem (Prelim) BSIT 205

    40問 • 1年前
    Xai Alexandrei Delos Reyes

    問題一覧

  • 1

    is an object-oriented programming language that supports data encapsulation, inheritance, polymorphism, and method overriding

    C#

  • 2

    Which of the Statements is FALSE in the C# features:

    It's not capable to produce portable code.

  • 3

    is a collection of tools, technologies, and languages that provides an environment to build and deploy different types of applications easily.

    .NET framework

  • 4

    controls tasks and manages system resources of the computer.

    Operating System

  • 5

    is a runtime environment of the .NET framework that manages the execution of the .NET code, enables debugging and exception handling, and makes programs portable.

    Common Language Runtime (CLR)

  • 6

    contains the classes and interfaces used for building applications.

    .NET Base Class Library

  • 7

    is a unified Web development model that includes the services necessary in building enterprise-class Web applications with a minimum of coding.

    ASP.NET

  • 8

    allows building of dynamic websites using a familiar drag-and-drop, event-driven model.

    ASP.NET Web Forms

  • 9

    extend the Web infrastructure to provide the means for software to connect to other software applications.

    ASP.NET Web Services

  • 10

    contain the graphical representation of any window displayed in the application.

    Windows Forms

  • 11

    Is a set of basic language features that ensures operability between the languages in the .NET environment. It is a subset of CTS

    Common Language Specification (CLS)

  • 12

    is a collection of types and resources that are built to work together and form a logical unit of functionality.

    Assembly

  • 13

    The assembly contains _____ that provides information along with a complete description of methods, types, and other resources.

    Metadata

  • 14

    The metadata includes _____, which stores identification information, public types, and a list of other assemblies that are used in the current assembly

    Manifest

  • 15

    The metadata includes _____, which stores identification information, public types, and a list of other assemblies that are used in the current assembly

    Manifest

  • 16

    Each assembly has a _____ version number that is presented as a set of four (4) decimal pieces:

    128-Bit

  • 17

    version number that is presented as a set of four (4) decimal pieces:

    Major.Minor.Build.Revision

  • 18

    The ____ declaration is a collection of classes.

    namespace

  • 19

    The ____ declaration is a collection of classes.

    namespace

  • 20

    The _____ keyword is used to access the classes available in a namespace.

    using

  • 21

    Every C# application contains one (1) ____ method.

    Main

  • 22

    is a name of a program component programmers use to uniquely identify namespaces, classes, methods, variables, constants, etc.

    Identifier

  • 23

    Which in the following syntax rules are NOT TRUE when naming an identifier in C#:

    The identifier's name can only have any combination of letters, digits, and underscores. White spaces are allowed

  • 24

    are reserved words a programming language uses for its own use, and they have a special predefined meaning to the compiler.

    Keywords

  • 25

    Which of the following is NOT a keyword

    give

  • 26

    is an identifier and a memory location that stores a specific value.

    Variable

  • 27

    is an identifier and a memory location whose value cannot be changed during program execution

    Constant

  • 28

    are used to specify a set of values and their operations associated with variables or constants.

    Data Types

  • 29

    directly store the values within the variable.

    Value Types

  • 30

    It does not store an actual value, but it stores the address where the value is stored.

    Reference Types

  • 31

    Also known as type casting is the process of converting a value of one (1) type of data to another data type.

    Type conversion

  • 32

    This is the conversion of a lower precision data type to a value of higher precision data type

    Implicit conversion

  • 33

    Allows the users to convert a value of higher precision data type into a value of lower precision data type

    Explicit conversion

  • 34

    explicit conversions allow the users to convert a value of higher precision data type into a value of lower precision data type by using a ______

    Cast Operator

  • 35

    using _____; namespace ConsoleApp { class ComputeRectangleArea { static void Main() { int length, width, area; length = 50; width = 8; area = length * width; Console.WriteLine("The area of the rectangle is " + area); Console.ReadKey(); } } }

    System

  • 36

    using System; namespace ConsoleApp { class ComputeRectangleArea { static void Main() { int length, width, area; length = 50; width = 8; area = length * width; Console._______("The area of the rectangle is " + area); Console.ReadKey(); } } }

    WriteLine

  • 37

    using System; namespace ConsoleApp { class ComputeRectangleArea { static void Main() { int length, width, area; length = 50; width = 8; area = length * width; Console.WriteLine("The area of the rectangle is " + area); Console._____(); } } }

    ReadKey

  • 38

    using System; namespace ConsoleApp { class ComputeRectangleArea { static void ____() { int length, width, area; length = 50; width = 8; area = length * width; Console.WriteLine("The area of the rectangle is " + area); Console.ReadKey(); } } }

    Main

  • 39

    using System; namespace ConsoleApp { class ComputeRectangleArea { static void Main() { ____ length, width, area; length = 50; width = 8; area = length * width; Console.WriteLine("The area of the rectangle is " + area); Console.ReadKey(); } } }

    int

  • 40

    defines a set of rules indicating the order in which the operator should be evaluated in an expression

    Operator precedence and associativity

  • 41

    These are operators used in performing mathematical operations on numerical value

    Arithmetic Operators

  • 42

    These are used to determine the relationship between operands of numeric values and generate a decision on that base.

    Relational Operators

  • 43

    These are operators used in performing logical operation.

    Logical Operators

  • 44

    These are used to assign a value or the result of an expression to a variable.

    Assignment Operators

  • 45

    An ________ in C# is a combination of operands (or variables) and operators that can be evaluated to a single value.

    expression

  • 46

    class includes several methods that perform a variety of calculations that can be used in a program.

    System.Math