Section 1

Preview this deck

class

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (21)

Section 1

(21 cards)

class

Front

defines an objects properties https://www.geeksforgeeks.org/c-classes-and-objects/

Back

main function

Front

where a program starts its execution

Back

;

Front

The semi-colon, ; indicates an end of statement

Back

method

Front

object oriented programming, methods are just part of a code, an object, or a class, that you can use to prevent writing the same code again and again. https://www.quora.com/How-could-you-explain-what-is-a-Method-in-programming

Back

conditional statement

Front

Setting specific conditions to lead to specific answers (ex. using if greater/less than) https://www.codecademy.com/articles/fwd-js-conditional-statements

Back

dot net new console

Front

The dotnet new command provides a convenient way to initialize a valid .NET Core project.

Back

Operators

Front

constructs which behave generally like functions, but which differ syntactically or semantically from usual functions. Common simple examples include arithmetic (like functions but more math) https://www.hackerearth.com/practice/basic-programming/operators/basics-of-operators/tutorial/

Back

Namespace

Front

Namespaces are used to provide a "named space" in which your application resides. (basically just the name of the project)

Back

function

Front

A function is a block of organized, reusable code that is used to perform a single, related action. (a formula) https://www.tutorialspoint.com/computer_programming/computer_programming_functions.htm

Back

void

Front

doesnt give any info or data, when void is used as a function return type, it indicates that the function does not return a value. https://stackoverflow.com/questions/1043034/what-does-void-mean-in-c-c-and-c

Back

WriteLine()

Front

Writes the text representation of the specified objects, followed by the current line terminator, to the standard output stream using the specified format information. (its the text youll see) https://docs.microsoft.com/en-us/dotnet/api/system.console.writeline?view=netframework-4.8

Back

Variables

Front

descriptive names that make it easier to manage and access data in your code https://launchschool.com/books/ruby/read/variables

Back

debug.log

Front

Use Debug.Log to print informational messages that help you debug your application. (for unity)

Back

Where can variables be declared

Front

within a class or function

Back

Cw

Front

what you want the computer to give info about

Back

.NET

Front

.NET (pronounced dot net) is a framework that provides a programming guidelines that can be used to develop a wide range of applications---from web to mobile to Windows-based applications. The .NET framework can work with several programming languages such as C#, VB.NET, C++ and F#

Back

C#

Front

C# (pronounced "see-sharp") is the actual coding language that we write inside of the .NET framework. C# is an object-oriented programming language, meaning it can increase productivity in the development process. C# boasts type-safety, garbage collection, simplified type declarations, versioning and scalability support, and other features that make developing solutions faster and easier.

Back

array

Front

An array is a data structure, which can store a fixed-size collection of elements of the same data type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type. https://beginnersbook.com/2014/01/c-arrays-example/ for examples

Back

loop

Front

A loop in a computer program is an instruction that repeats until a specified condition is reached. https://stackoverflow.com/questions/32576203/trying-to-code-the-99-bottles-of-beer-song example

Back

{}

Front

contents of the class

Back

(String{}args)

Front

It literally means "an array, where every element inside of it is at least a String, which we will name arguments"

Back