CCP FINALS Quizes
txtUsDollar.Clear();rdbMalaysia.Checked = false;rdbPhilippines.Checked = false;rdbSingapore.Checked = false;lblOutput.Resettext();txtUsDollar.Focus();
lblOutput.ResetText();
The operator *, / and % are on the same level of hierarchy.
T
The operators + and - are not in the same level of hierarchy in C# programming language.
T
The sharp in C# indicates half step higher in pitch.
T
picOutput.Image = new Bitmap(@"C:\Users\Pictures\Pictures\One.jpg");
T
sbyte is a data type in C# programming language.
T
string name = "Anders Hejlsberg";int age = 62;string developerInformation = string.Format("{0} is {1} years old.", name, age.ToString ());
T
string[] cars = {"Volvo", "Mitsubishi", "Ford", "Mazda"};cars[0] = "Opel";Console.WriteLine(cars[0]);
T
uint is a data type in C# programming language.
T
In what year that the organization ECMA was founded?
1961
It was the year when C# programming language was developed.
1999
He is considered as the main person who developed the C# programming language.
Anders Hejlsberg
It is the menu that is used to compile and build the source file, project, or solution. The result of a build is an executable file or a code library.
Build Menu
It is the original name of C# programming language.
C-like Object Oriented Language
It is the original name of the C# programming language.
C-like Object Oriented Language
It is the basic control that is not mutually exclusive, meaning the user can check as many boxes as they want.
Check Box
The acronym CLR means.
Common Language Runtime
It is a control that is useful when we put a timer, menustrip, toolstrip and contextmenustrip.
Component Trays
It is the organization founded to standardized computer systems in Europe.
ECMA
It is the part of C# IDE that contains the list of errors upon compilation.
Error list window
Abstraction means many forms, and it occurs when we have many classes that are related to each other by inheritance.
F
C# is not a case sensitive programming language.
F
Console.WriteLine("The sum is (0:#,0.0000)." ,sum);
F
Hungarian notation is suitable in C# programming language.
F
ISO is in Finland.
F
In naming a variable, keywords or reserved words are allowed.
F
In naming a variable, the special character underscore ( _ ) cannot be used as the first character.
F
Semicolon is not needed to end an statement.
F
The single comment in C# programming language is \\.
F
The ushort data type range is from -32,768 to +32,767.
F
character is a data type in C# programming language.
F
int counter = 1;while (counter <= 10){Console.WriteLine ("I love C# programming language.");counter=+2;}
F
public static void Main(string[] args){Car car = new car();car.Speed();}
F Car car = new Car();
lblOutputComputer.Text = randomNumberComputer.toString();
F .ToString()
tmrTimer.stop();
F Stop();
MessageBox.Show("Textbox is empty, please input an amount.", Text, messageBoxButtons.OK, MessageBoxIcon.Information);
F MessageBox.Show("Textbox is empty, please input an amount.", Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
January 23, 1947 is the exact date when ISO was founded.
F (Feb 23, 1947)
string[,] arraySet = { {"one", "two"}, {"three", "four"} {"five", "six"} };
F comma
Console.WriteLine(organizationName.Substring(7, 11) + organizationName.Replace(12, "CCSS"));
F should be both strings
SendKeys.Send("{Home}"+"{End}");
False
The Trim() method is used to remove all the whitespace characters in the middle of the string.
False
It is an organization that promulgates worldwide propriety industrial and commercial standards.
ISO
It is the box that pop-ups as we write the code into our code designer.
Intellisense
It is the part of C# IDE that shows the files in the project.
Solution explorer
A constructor is a special method that is used to initialize objects.
T
Any C# application program should always contain Main() method.
T
C# uses = to assign values to variables.
T
Do ... while loops are exactly like while loops, except that the test is performed at the beginning of the loop rather than the end, this guarantees that the loop will be performed at least once.
T
In declaring a variable, you must indicate a type and name of a certain variable.
T
In naming a variable, the special character at sign (@) can be used as the first character.
T
The byte data type range is from 0 to 255.
T
The class name should be written in Pascal case.
T
It is the window that contains the tools or objects that we might want to place on the form control.
Tool Box
Procedural programming is about writing procedures or methods that perform operations on the data, while object-oriented programming is about creating objects that contain both data and methods.
True
decimal is a floating-point type in C# programming language.
True