• Home
  • Blog
  • multiple choice and written answerd

multiple choice and written answerd

0 comments

Order with us and get your paper done by an expert

QUESTION 11.  Global variables are known to the entire class. True FalseQUESTION 21.  You can write as many constructors for a class as you want, as long as they all have different ____ lists. A.object B.data field C.method D.parameterQUESTION 31.  Everything is an object, and every object is a member of a ____. A.class B.method C.case D.processQUESTION 41.  Methods are sometimes called ____. A.segments B.modules C.classes D.routinesQUESTION 51.  Libraries are collections of classes that serve related purposes. True FalseQUESTION 61.  Creating multiple methods with the same name, which will act differently and appropriately when used with different types of objects, is known as polymorphism. True FalseQUESTION 71.  The memory location known as the ____ is where the computer stores the list of method locations to which the system must return. A.method stack B.location stack C.call stack D.store locationQUESTION 81.  When a main() method needs to use another method, it calls, or invokes it. True FalseQUESTION 91.  Write a method that will perform the a division operation (divide by) on the numbers passed to it in two variables (numerator, denominator) and outputs the results. Use a try-catch pair to output an error message if the illegal operation of divide by 0 occurs. Path: pWords:0QUESTION 101.  A constructor may require ____. A.parameters B.methods C.objects D.inheritanceQUESTION 111.  What is the screen output of the following code segment? Explain the reasoning behind your answer.Test1 = 70  Test2 = 80  Test3 = 84 NumberOfTests = 3  Average = (Test1 + Test2 + Test3) / NumberOfTestsIF Average >= 90 THEN  Output “Great job”  Output “Your average is: ”, AverageELSEIF Average >= 80 or Average <=89 THEN   Output “Nice work”  Output “Your average is: “, AverageELSE  Output : “Your Average is:”, Average  Output “, You will do better next time!”ENDIF Path: pWords:0QUESTION 121.  An object is a category of things. True FalseQUESTION 131.  A catch block consists of four different elements: the keyword catch, followed by parentheses that contain an exception type and identifier, statements that take action to handle the error condition, an endcatch statement, and a return statement. True FalseQUESTION 141.  A parent class is the same thing as a base class. True FalseQUESTION 151.  A ____ is a segment of code that can handle an exception that might be thrown by the try block that precedes it. A.catch method B.throw block C.catch block D.throw statementQUESTION 161.  The ability to use methods without knowing the details of their contents is a feature of ____. A.abstraction B.encapsulation C.inheritance D.constructionQUESTION 171.  Programmers refer to hidden implementation details as existing in a ____. A.white box B.white hole C.black box D.black holeQUESTION 181.  A(n) ____ statement indicates the end of the catch block in the pseudocode. A.finalcatch B.finally C.endcatch D.stopQUESTION 191.  ____ is the process of creating a new, derived class from a base class. A.Accessibility B.Encapsulation C.Inheritance D.PolymorphismQUESTION 201.  When a data field is private, it is said to be ____ to any class other than the one in which it is defined. A.uninheritable B.implicit C.unreachable D.inaccessibleQUESTION 211.  When a variable is declared within a method, it ceases to exist when the method ends. True FalseQUESTION 221.  Class diagrams are a type of ____ diagram. A.Unified Illustration Language B.Unified Modeling Language C.Object-Oriented Modeling Language D.Unified Pseudocode LanguageQUESTION 231.  Unreachable code statements are program statements that only execute if there is an exception. True FalseQUESTION 241.  ____ variables and constants are those that are known to an entire class. A.Global B.Local C.Universal D.ComprehensiveQUESTION 251.  Overloaded methods have the same name and parameter lists. True FalseQUESTION 261.  An instance method or constructor may be overloaded by providing the same name and ____ argument list. A.a different B.the same C.a larger D.a smallerQUESTION 271.  What is one item that must be included in a method’s header if it can receive a parameter? A.local parameter name B.global parameter name C.parameter’s client D.return data structureQUESTION 281.  A method’s ____ consists of the method’s statements. A.body B.space C.space D.groupQUESTION 291.  The object-oriented techniques to manage errors such as dividing a value by 0 comprise the group of methods known as ____. A.exception handling B.error handling C.exception processing D.error processingQUESTION 301.  A method can be used more than once within a program or in other programs. True FalseQUESTION 311.  The call stack is where the computer stores the list of exceptions. True FalseQUESTION 321.  Methods can be ____ correctly by providing different parameter lists for methods with the same name. A.updated B.tested C.overloaded D.passedQUESTION 331.  Design a class named CustomerRecord that holds a customer number, name, and address. Include methods to set the values for each data field and output the values for each data field. Create the class diagram and write the code (not language specific, ie. psuedocode) that defines the class. Path: pWords:0QUESTION 341.  What will be the output of the below program? List what will be outputed to the screen and explain your answer.class Class_name  main()      // Declarations    num index    num SIZE = 10    num numbers[SIZE] = 0,0,0,0,0,0,0,0,0,0  index = 0  while index < SIZE  numbers[index]= index * 10  index = index + 1  endwhile   output “The Output is: ”  while index > 0  index = index – 1  output numbers[index]  endwhile  returnendClass Path: pWords:0QUESTION 351.  A(n) ____ is one instance of a class. A.method B.object C.instantiation D.attributeQUESTION 361.  A class diagram consists of a ____ divided into three sections. A.square B.rectangle C.circle D.triangleQUESTION 371.  When illegal division by 0 takes place, an Exception object is not created automatically by the object-oriented language application. True FalseQUESTION 381.  Simple non-array variables are usually passed to methods by ____. A.value B.reference C.type D.classQUESTION 391.  A child class contains all the data fields and ____ of its parent. A.parameters B.classes C.methods D.proceduresQUESTION 401.  When appropriate, specialized ____ classes provide an elegant way for you to handle error situations. A.Exception B.Error C.Constructor D.EventQUESTION 411.  A method is a program module that contains a series of statements that carry out a task. True FalseQUESTION 421.  Multiple inheritance is the capability to inherit more than one method from a parent class. True FalseQUESTION 431.  A ____ reference is an automatically created variable that holds the address of an object and passes it to an instance method whenever the method is called. A.key B.public C.that D.thisQUESTION 441.  A ____ is one that sends an exception object out of a method so it can be handled elsewhere. A.catch statement B.throw method C.catch block D.throw statement Do you need a similar assignment done for you from scratch? We have qualified writers to help you. We assure you an A+ quality paper that is free from plagiarism. Order now for an Amazing Discount! Use Discount Code “Newclient” for a 15% Discount!NB: We do not resell papers. Upon ordering, we do an original paper exclusively for you. The post multiple choice and written answerd appeared first on Custom Nursing Help.”Do you need a similar assignment done for you from scratch? We have qualified writers to help you with a guaranteed plagiarism-free A+ quality paper.Discount Code: SUPER50!”order custom paper

About the Author

Follow me


{"email":"Email address invalid","url":"Website address invalid","required":"Required field missing"}