how much money you will make if you work 40 hours at $13.00 and 10 hours at time and a half?

Use the interactions pane to calculate


The pay would be $715.00.

Computer Science & Information Technology

You might also like to view...

What is the output from this program?

``` #include #include using namespace std; void doSomething ( int&, int ); int main () { int first; int second; first = 1; second = 2; doSomething( second, first ); cout << setw(4) << first << setw(4) << second << endl; return 0; } void doSomething( int& this, int that ) { int theOther; theOther = 5; that = 2 + theOther; this = theOther * that; } ``` a. 35 2 b. 1 35 c. 35 7 d. 1 2

Computer Science & Information Technology

If a long-running calculation were to be performed synchronously in a GUI app, ________.

a) the GUI app would split off the long-running calculation into a separate thread. b) the GUI would freeze until the calculation completed and the user would not be able to interact with the app c) the app would terminate d) the app would deadlock

Computer Science & Information Technology

How many items can be selected from a ComboBox at a time?

a. 0 b. 1 c. 2 d. Unlimited

Computer Science & Information Technology

When you use the form tool to create a form, Access analyzes relationships between tables, and automatically adds a(n) ________, which displays records with foreign key values that match the primary key value in the main form

Fill in the blank(s) with correct word

Computer Science & Information Technology