🎴 Flashcard Mode

C# Programming Fundamentals

Card1 / 15
Mastered0
Review0
QuestionClick to flip

String mystring; Creates a(n)

AnswerClick to flip back
A
Object
💡 Explanation:

The statement 'String mystring;' declares a reference variable of type String. In many contexts, this is referred to as creating an object reference or an object instance (though technically the 'new' keyword is usually required for instantiation). It is not a class definition or a constructor.

Change Mode