Save
Busy. Please wait.
Log in with Clever
or

show password
Forgot Password?

Don't have an account?  Sign up 
Sign up using Clever
or

Username is available taken
show password


Make sure to remember your password. If you forget it there is no way for StudyStack to send you a reset link. You would need to create a new account.
Your email address is only used to allow you to reset your password. See our Privacy Policy and Terms of Service.


Already a StudyStack user? Log In

Reset Password
Enter the associated with your account, and we'll email you a link to reset your password.
focusNode
Didn't know it?
click below
 
Knew it?
click below
Don't Know
Remaining cards (0)
Know
0:00
Embed Code - If you would like this activity on your web page, copy the script below and paste it into your web page.

  Normal Size     Small Size show me how

Software Dev Fund 2B

MTA - Software Development Fundamentals 2B

QuestionAnswer
connection configuration a correct setup for a program to connect to a database includes: •the name of the database •the drive location of the database •the type of database •the port to connect through These all must be the same in order to pool the connections
fields the column names in a database correspond to each cell of data in a row; each cell is associated with a particular named column of data such as for a phone number or customer name
cardinality means the uniqueness of the data in a column or database; social security numbers are supposed to have high cardinality, so are email addresses and id's for account logins
one-to-one relationship unique pieces of data are supposed to refer to only one unique record, such as a customer account being associated with only one email address or a credit card number only supposed to be used by one account holder; it is NOT one-to-many or many-to-many
primitive data types byte, short, int, long, float, double, char, boolean (or bool in C#) are all primitives and are also called value types (C# capitalizes these)
String is an object, as a program runs any String is ALWAYS considered a reference type NOT a value type; in C# String can be string without the capital 'S'
declaration is the announcing of a new variable, it is done like: Thing thing1 = new Thing( ) The data type is always announced before the name of the variable for it
instantiation is the actual creating of a new copy of an object, it is done with the "new" keyword and ALWAYS includes the call to the constructor method immediately following the keyword "new"; the ONLY exception is for creating a new String
semi-colon is used at the very end of statements of code
stack an area of RAM memory where primitive variables are stored when they are initially declared in a local scope such as in a method or a loop; an example: public updatePosition(){ int newX = x + 10; } newX is saved in the stack area of memory
heap area of RAM memory where global variables are stored whether primitives or objects and where all object variables are stored whether local or global. Example: public makeLion( ){ Lion biglion1 = new Lion(); } biglion1 is stored in the heap area
loop conditions for a "while" loop or a "for" loop the condition must be met for the loop to actually process through an iteration; if it is not met the loop will cease iterating
iteration a single cycle through a repetitive process that could go through many cycles before finishing
Message Queuing Some programs need to talk to each other; Microsoft uses this to allow those messages to have: •guaranteed delivery •efficient routing, •security •prioritization it is particularly useful when needing to communicate with systems that are off-line
client-side any time you are developing for the display or for visual elements in a web application you are dealing with this area of programming
Created by: mightymaxmedia
Popular Computers sets

 

 



Voices

Use these flashcards to help memorize information. Look at the large card and try to recall what is on the other side. Then click the card to flip it. If you knew the answer, click the green Know box. Otherwise, click the red Don't know box.

When you've placed seven or more cards in the Don't know box, click "retry" to try those cards again.

If you've accidentally put the card in the wrong box, just click on the card to take it out of the box.

You can also use your keyboard to move the cards as follows:

If you are logged in to your account, this website will remember which cards you know and don't know so that they are in the same box the next time you log in.

When you need a break, try one of the other activities listed below the flashcards like Matching, Snowman, or Hungry Bug. Although it may feel like you're playing a game, your brain is still making more connections with the information to help you out.

To see how well you know the information, try the Quiz or Test activity.

Pass complete!
"Know" box contains:
Time elapsed:
Retries:
restart all cards