[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

09/03/2009 at 09:59AM PDT, ID: 24705240
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.2

C Programming

Asked by cprogramm in C Programming Language

Tags: C Programming QUIZ

C Programming  Quiz


This quiz consists of 20 multiple-choice questions.  Please use the answer sheet at the end to enter the appropriate answer for each question (T, F, A, B, C etc).  



1.      The following pseudocode is an example of __________.
if conditionA is true then
   if conditionB is true then
      perform actions
   endif
endif
      A) a nested conditional structure
B) a simple conditional structure
C) a nested if-else-if conditional structure
D) none of the above

2.      __________ is the standard symbol for representing a conditional structure in flowcharts?
      A) diamond (or rhombus)
B) rectangle
C) circle
D) arrow

3.      Which of the following is not a conditional operator in C?
      A) !=
B) =
C) <
D) >

4.      In C coded programs it is a syntax error to not properly indent code in nested conditional statements.
      T) True
F) False

5.      The following pseudocode is an example of __________.
if conditionA is true then
  perform actionsA
else
  perform actionsA
endif
      A) a simple conditional structure
B) an error in logic (semantic error)
C) Both of the above

6.      Which of the following is equivalent to not ( a < b ) ?
      A) a < b
B) a = b
C) a > b
D) a >= b

7.      Which of the following is equivalent to ( x < 3 ) ?
      A) not ( x >= 3 )
B) not ( x = 3 )
C) not ( x > 3 )
D) not ( x <= 3 )

8.      What is the output of the following pseudocode? (Assume the user enters 21 and all output is displayed on the same line)
input myNumber
if myNumber > 4 then
   display myNumber
else
   increase myNumber by 1
endif
display myNumber
      A) 21
B) 2121
C) 2122
D) 2222

9.      If P is true, Q is false and R is true which of the following expressions is false?
      A) P or ( Q and R )
B) P or Q and R
C) P and Q or R
D) P and ( Q  or R )
E) None of the above

10.      The following C coded conditional statement is an example of __________.
if ( (age <= 17) && (age >= 21) ) {
  printf("Hello Customer!\n");
}
      A) a switch structure
B) a nested conditional statement
C) a semantic error
D) None of the above

11.      The switch/case structure is a better alternative to __________ structures.
      A) if-then-if
B) if-else-if
C) all nested conditional structures
D) if-then-if structures, but only when discrete logic paths have to be taken.

12.      What will be the output of the following C coded program?
customerAge = 43;
if ( (customerAge <= 21) )
  printf("%d ", customerAge);
  printf("Hi ");
printf("customer!");
      A) customer!
B) Hi customer!
C) 43 Hi customer!
D) None of the above

13.      A __________ coded in C contains no main() function.
      A) software library
B) function definition
C) function declaration
D) None of the above; all C coded programs must have a main() function.

14.      printf() and scanf() are examples of programmer defined functions.
      T) True
F) False

15.      The following C statement is an example of a __________.
float convertToUSD(float, float);
      A) Standard C Library function
B) function definition
C) function prototype
D) None of the above

16.      A function is a(n) __________ program component that __________ some functionality which can be __________ without necessarily knowing its implementation details.
      A) small, implements, hidden
B) complex, hides, reused
C) unknown, promotes, developed
D) stand-alone, encapsulates, reused

17.      Which of the following statements is true?
      A) Functions must always have input parameters.
B) Functions are ideal for promoting parallel implementation of a complex software system.
C) Functions make debugging extremely difficult since they require completion of the whole implementation before testing them.
D) Good function names are unimportant as long as good variables names as used.

18.      sizeof is a valid name for a programmer defined function coded in C.
      T) True
F) False

19.      A function documentation prologue (aka routine level comments) is a form of internal documentation. The least amount of information it should include is:
      A) description of the functions purpose in one or two sentences
B) description of the functions input parameters
C) description of the functions output data
D) all of above

20.      __________ programming enables programmers to break complex systems into manageable components.
      A) Structured
B) Division
C) Application
D) None of the above
 

[+][-]09/03/09 10:02 AM, ID: 25252617

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/03/09 10:02 AM, ID: 25252618

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09/03/09 10:03 AM, ID: 25252629

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09/03/09 10:03 AM, ID: 25252638

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/03/09 10:11 AM, ID: 25252718

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09/03/09 10:13 AM, ID: 25252741

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/03/09 10:22 AM, ID: 25252821

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09/03/09 10:31 AM, ID: 25252909

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/03/09 10:56 AM, ID: 25253128

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09/03/09 11:56 AM, ID: 25253739

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/03/09 12:30 PM, ID: 25254088

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09/04/09 06:53 AM, ID: 25259672

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/06/09 05:15 PM, ID: 25272117

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/08/09 01:38 AM, ID: 25279753

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09/08/09 11:13 AM, ID: 25284545

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/08/09 11:15 AM, ID: 25284557

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09/08/09 11:37 AM, ID: 25284739

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/08/09 12:39 PM, ID: 25285419

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: C Programming Language
Tags: C Programming QUIZ
Sign Up Now!
Solution Provided By: Infinity08
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20090824-EE-VQP-74 - Hierarchy / EE_QW_3_20080625