GradePack

    • Home
    • Blog
Skip to content
bg
bg
bg
bg

Author Archives: Anonymous

Using C, pseudo-C or pseudocode, solve the following problem…

Using C, pseudo-C or pseudocode, solve the following problem. Note that this means you do not need to define a main function, or worry about syntax. If you describe your answer in plain text, make sure you are detailed enough to demonstrate an understanding of programming concepts to solve a problem.  Even number: Write a function that takes a single int input and returns a 0 if the input variable was not even and a 1 if it was even. Hint: the modulo operator (%) may be useful

Read Details

For logical AND to be TRUE then….

For logical AND to be TRUE then….

Read Details

Convert the following from binary to hexadecimal: 1101 For r…

Convert the following from binary to hexadecimal: 1101 For reference, the exponents of 2 and hexadecimal letters 0 1 1 2 2 4 3 8   A 10 B 11 C 12 D 13 E 14 F 15

Read Details

Follow the code below to completion. At the end of the code…

Follow the code below to completion. At the end of the code what value is contained within the variable X? int squared(int n) {       return n * n; } void main() {      int X = 2;      X = squared(X); }

Read Details

The following is an example of what kind of loop? int i =0;…

The following is an example of what kind of loop? int i =0; while(i < 10) {      i++; }

Read Details

In the C language the while statement will repeat so long as…

In the C language the while statement will repeat so long as…

Read Details

A variable that increments a set amount within a loop is kno…

A variable that increments a set amount within a loop is known as…

Read Details

A binary variable with only two possible values, TRUE or FAL…

A binary variable with only two possible values, TRUE or FALSE, is known as….

Read Details

A byte is….

A byte is….

Read Details

The part of the function that defines the input is….

The part of the function that defines the input is….

Read Details

Posts pagination

Newer posts 1 … 44,523 44,524 44,525 44,526 44,527 … 85,611 Older posts

GradePack

  • Privacy Policy
  • Terms of Service
Top