C# keywords include | Computer Science homework help

1. (TCOs 1, 6) C# keywords include _____ and _____. (Points : 5)

        case, for

        catch, trying

        int, nullset

        try, dynamic

 

 

Question 2.2. (TCOs 1, 6) Set a variable to a value with the symbol _____, and test equality with _____. (Points : 5)

        =, =

        ==, ==

        ==, =

        =, == 

 

 

Question 3.3. (TCOs 1, 6) Since data stored in _____ is lost when the computer’s power is turned off, that type of memory is considered to be _____. (Points : 5)

        RAM, volatile

        auxiliary storage, volatile

        RAM, nonvolatile

        auxiliary storage, nonvolatile

 

 

Question 4.4. (TCOs 2, 3) Which escape sequence is used to display a backslash within a string literal on the output console? (Points : 5)

        Special characters cannot be added to string literals.

        n

        \

        Return character   

 

 

Question 5.5. (TCOs 2, 3) The keyword “void” means that a method _____. (Points : 5)

        does not return a value

        is invalid

        releases memory after it is called

        clears all variables it is passed

 

 

Question 6.6. (TCOs 2, 3) A computer uses ____ numerals to represent and manipulate data. (Points : 5)

        two

        eight

        10

        16

 

 

Question 7.7. (TCO 4) Given that a is 5, b is 6, and c is 8, which of the following is false? (Points : 5)

        c >= 8

        a >= 0

        a <= (b * 2)

        (1 + a) != b 

 

 

Question 8.8. (TCO 4) A home improvement store is giving a discount of 20% on all purchases of more than $250. Which of the following is the appropriate structure to use to program the statement? (Points : 5)

        Loop

        Method

        Decision

        Sequence 

 

 

Question 9.9. (TCO 5) Your program keeps asking for Student IDs until he/she enters “AAAAA.” In this context, the “AAAAA” is used as a(n) _____. (Points : 5)

        accumulator

        counter

        integer data type

        sentinel value

 

 

Question 10.10. (TCO 5) (TCO 5) The _____ structure is a _____ loop, meaning that its conditional expression is tested after the statements inside its body execute. (Points : 5)

        do-while, posttest

        do-while, pretest

        while, posttest

        while, pretest

 

 

 

Page 2 

 

 

 

Question 1.1. (TCOs 7, 8) Which of the following is a valid overloaded version of this method?

 

char CalculateGrade(double val1, double val2)

  (Points : 5)

        char CalculateGrade(int val1)

        char CalculateMyGrade(int val1, double val2)

        char CalculateMyGrade(double val1)

        double CalculateGrade(double val1, double val2)

 

 

Question 2.2. (TCOs 7, 8) Which is probably a call to an accessor method? (Points : 5)

        SetNoOfYards(double yds);

        double yds = GetNoOfYards();

        CarpetCalculator plush = new CarpetCalculator();

        double yards = yds.calcYards();

 

 

Question 3.3. (TCOs 7, 8) Which is not a valid name for a method or function? (Points : 5)

        mod1

        mod 1

        MyMod1

        mod_1

 

 

Question 4.4. (TCOs 9, 10) In Design mode, set the words that will appear in a textbox by modifying its _____ property in the Properties window. (Points : 5)

        label

        font

        name

        text

 

 

Question 5.5. (TCOs 9, 10) When the user of your fast-food ordering GUI selects the “checkBoxBurger” CheckBox, the string “Burger” should appear in the “listBoxOrder” ListBox. To implement this functionality, write _____ in the ckBoxBurger_CheckedChanged() event handler. (Points : 5)

        if

(ckBoxBurger.isChecked)

  {

    listBoxOrder.Items.Add(“Burger”);

  }

 

        if (ckBoxBurger.Checked)

  {

    listBoxOrder.Add(“Burger”);

  }

 

        if (ckBoxBurger.isChecked())

  {

    listBoxOrder.Text = “Burger”;

  }

 

        if (ckBoxBurger.Checked)

  {

    listBoxOrder.Items.Add(“Burger”);

  }

 

 

 

Question 6.6. (TCOs 9, 10) The first time a programmer double clicks on a button object in design mode, the button’s default event handler method _____ is added to the code. (Points : 5)

        Click()

        Clicked()

        Double_Click()

        Double_Clicked()

 

 

Question 7.7. (TCOs 11, 12) To pass the first and second elements of the myData array to the DisplayItems method, replace the commented line below with _____.

 

    static void

Main()

    {

      int[] myData = {1,2,3,4};

        //call DisplayItems

    }

    public static void DisplayItems(params

int[] item)

    {

      for (inti=0; i<item.Length; i++)

        Console.Write(“{0} “,item[i]);

    }

  (Points : 5)

        DisplayItems(myData, 1, 2);

        DisplayItems(myData[0],myData[1]);

        DisplayItems(myData, 0, 1);

        DisplayItems(myData[1],myData[2]);

 

 

Question 8.8. (TCOs 11, 12) The size of an _____ can be determined when the program is written or at run time, whereas the size of an _____ must be determined when the program is written. (Points : 5)

        arraylist, array

        array, arraylist

        array, array class

        array class, array

 

 

Question 9.9. (TCOs 11, 12) Given the following declaration, what is/are the value(s) of age[1,0]?

 

int[,] age = { {2, 3, 6, 7},

{5, 8, 9, 4} };

  (Points : 5)

        2

        5

        5 2

        2 5

 

 

Question 10.10. (TCO 13) Before your C# program attempts to append data to a file, it should first _____. (Points : 5)

        callFile.Append to ensure the file can be written to.

        callFile.Create() to create the file.

        callFile.Exists() to make sure the file exists.

        callFile.Write() to make sure the file can be written to.

 

 

Question 11.11. (TCO 13) The following C# statement will _____.

 

Console.WriteLine(Directory.Exists(Directory.GetCurrentDirectory()));

  (Points : 5)

        print out “true”

        print out “true” if there are files in the current directory

        print out “true” if the current directory has subdirectories

        throw an exception

 

 

Question 12.12. (TCO 13) To print out the time and date a file called “plans.txt” was last written to, write _____. (Points : 5)

        Console.WriteLine(File.GetAccessInfo(“plans.txt”);

        Console.WriteLine(GetAccessTime(“plans.txt”);

        Console.WriteLine(File.GetLastWriteTime(“plans.txt”));

        Console.WriteLine(GetLastWriteTime (“plans.txt”);

 

 

 

 

 

1.(TCO 3) Show the source code for a C# console application names ‘Sibs’ that prints your frist name on the first line, your last name on the second line, and the number of siblings you have on the third line

Declare and initialize an appropriate variable for your number of siblings

Include at leat three descriptive comments

Stat how you would use the error list window to identify and correct errors in your code(points: 20)

 

2.(TCO 5) Using WHILE loop, write the C# code required to print every second integer starting with 0 until the number is greater than 200(i.e.. 0, 5, 10, 15 etc ) Describe another type loop that can also be used to implement this functionality which would be more efficient? (points: 20)

 

6.(TCO 11) Write a C# program to store an array of these integers 23,45,67,89 and 10. Use an appropriate loop to multiply all of the values in the list. Print out the result (Points: 20)

 

Calculate the price
Make an order in advance and get the best price
Pages (550 words)
$0.00
*Price with a welcome 15% discount applied.
Pro tip: If you want to save more money and pay the lowest price, you need to set a more extended deadline.
We know how difficult it is to be a student these days. That's why our prices are one of the most affordable on the market, and there are no hidden fees.

Instead, we offer bonuses, discounts, and free services to make your experience outstanding.
How it works
Receive a 100% original paper that will pass Turnitin from a top essay writing service
step 1
Upload your instructions
Fill out the order form and provide paper details. You can even attach screenshots or add additional instructions later. If something is not clear or missing, the writer will contact you for clarification.
Pro service tips
How to get the most out of your experience with Australia Assessments
One writer throughout the entire course
If you like the writer, you can hire them again. Just copy & paste their ID on the order form ("Preferred Writer's ID" field). This way, your vocabulary will be uniform, and the writer will be aware of your needs.
The same paper from different writers
You can order essay or any other work from two different writers to choose the best one or give another version to a friend. This can be done through the add-on "Same paper from another writer."
Copy of sources used by the writer
Our college essay writers work with ScienceDirect and other databases. They can send you articles or materials used in PDF or through screenshots. Just tick the "Copy of sources" field on the order form.
Testimonials
See why 20k+ students have chosen us as their sole writing assistance provider
Check out the latest reviews and opinions submitted by real customers worldwide and make an informed decision.
Human Resources Management (HRM)
Adequate.
Customer 462499, May 21st, 2022
Critical Reading and Writing
Excellent responses. Be keen on Grammar.
Customer 460653, April 4th, 2022
Fitness
Well-researched content.
Customer 463473, October 25th, 2022
Retail
Thank you for your work. We had to fix some grammatical errors. In the future, please remember to proofread content before submitting. We look forward to future contributions.
Customer 463469, October 21st, 2022
Cybersecurity
The revision was beautifully written! Thank you to the writer for writing a quality paper and thank you to customer service for delivering a quality paper.
Customer 452455, July 29th, 2023
Military
excellent work
Customer 456821, November 1st, 2022
Education
Very well put!!! thank you
Customer 463875, March 11th, 2023
Other
Smart response.
Customer 462457, April 13th, 2022
Education
Thanks for your cooperation. Great work.
Customer 463647, December 16th, 2022
SEO
A job well done
Customer 463679, May 13th, 2023
Military
Good job
Customer 456821, January 11th, 2023
Ethics
Thank you!!!
Customer 454087, June 19th, 2020
11,595
Customer reviews in total
96%
Current satisfaction rate
3 pages
Average paper length
37%
Customers referred by a friend
OUR GIFT TO YOU
15% OFF your first order
Use a coupon FIRST15 and enjoy expert help with any task at the most affordable price.
Claim my 15% OFF Order in Chat