Partial preview of the text
Download CIS 106 Final Exam.ACTUAL QUESTIONS WITH VERIFIED SOLUTIONS|100% GUARANTEED PASS|RATED A+| and more Exams Computer Science in PDF only on Docsity!
The relational operator meaning inequality is VIF A general purpose programming language developed at Sun Microsystems and released in 1995 is VV is the mnemonic used to remember the order of operations. - VV BEMDAS In software testing, test data should be verified by checking the pseudocode to see if it produces correct results. - /VV} is a test before loop typically used when the number of iterations is NOT known before entering the loop. - Peat An interpreted high-level programming language for general purpose programming is VV A represents a logical result. - V/V BBeleen IPO in computer programming refers to the model. - VV Vinput process output A value that cannot be altered by the program during normal execution is a 7 Vv The result of trimming "" from "Hello world" is . - VV J Hello world is a branching statement that terminates the existing structure. - VV Vbreak An iteration control structure that places one loop inside another loop is known as .-VVVnesting is a phase in the System Development Life Cycle. - ¥¥Vplanning, analysis, design, implementation, maintenance A shows the relationship of various modules. - ¥VVhierarchy chart The data type of the value 3.14. - /VV string A parameter supplied by the caller can be affected by actions within the called function is known as call by .-VVVreference A is a character array. - /V Vstring An is an integer indicating the distance from the beginning of an object toa given element. - /V Voffset is a test before loop typically used when the number of iterations is known before entering the loop. - /V Vfor The result of using a lower function on the string "Hello" is .-VVVhello The value of True OR False is .- VV Vtrue The first action in defining a do loop is test an expression. - /V /False are used to identify a block of code in languages such as C++, C#, Java, and JavaScript. - /V/braces A general purpose programming language developed at Bell Labs starting in 1979 is -- VV SCH The division operator is .-VVV/ A is a variable used to store information that will normally be used to control the program. - /V Vflag Code made available across implementations of a programming language is known asa .- VV Vstandard library Evaluating a string literal containing one or more placeholders, yielding a result in which the placeholders are replaced with their corresponding values is :- vVVVinterpolation The first step in reading a comma-separated-values file is to read the header. - VV VFalse The relational operator meaning equality is VV V== is the operator used to access elements when indexing an array in current programming languages. - /V /square brackets describes the amount of system resources used by a program. - VJ Vefficiency A is a value provided as input to a function. - /V /argument A is a single-dimension array. - /V Vlist The modulus operator is .-VVV% Maximum numeric range of a 16-bit integer is 32,767. - /V/True A sequence of characters is a .-VVVstring To release access to a file is known as .- VV Vclose The addition operator is Vt Software testing includes verifying that the program responds correctly to all kinds of inputs. - ///True The process of removing errors from a program is .- VV / debugging is a control structure that allows some lines of code to be executed many times. - /V Viteration describes how often the results of a program are correct. - /V V reliability In , a Statement or block is executed until the program reaches a certain state, or operations have been applied to every element of a collection. - /V Viteration Maximum number of digits in a 32-bit floating-point value is .-VVV7 The result of replacing "H" with "j" in the string "Hello" is .-VVVjello Good programming practice follows the DRIP principle. - /V /False The result of joining ["Hello", "world"] using "" is . - VV V/Hello world An is a data structure consisting of a collection of elements (values or variables), each identified by at least one index. - /V Varray describes the ease with which a program may be modified. - ¥ JV maintainability is a reserved word used to represent a missing value. - /V Vnull The value of True AND True is .- VV Vtrue AND, OR, and NOT are operators. - V/V Vlogical A widely used approach in systems analysis and software engineering for describing the structure of an information processing program or other process is known as XML. - /VVFalse The value of False OR False is .-VVV false To move data from a memory location defined in your program to a device is known as .- VV write The result of reversing the string "Hello" is .- VV VJolleH An informal high-level description of the operating principle of a computer program or other algorithm is known as . - VV / pseudocode A is a sequence of program instructions that performs a specific task, packaged as a unit. - /V /function is an uncontrolled structure that allows the flow of execution to jump to a different part of the program. - /V/ branching The assignment operator is .-VVV= A software application that provides comprehensive facilities to computer programmers for software development. - /V VIDE A is a unit of code consisting of zero or more statements. - /V /block Parameter passing which allows functions to modify the contents of passed arrays is .- VV Vby reference A violation of the rules of a given programming language is a error. - VvJVsyntax The data type for the result of a function that returns normally, but does not provide a result value to its caller is .- VV Vvoid is an algorithm that puts elements of a list in a certain order. - /V/sort is a branching statement that causes a loop to stop its current iteration and begin the next one. - /V ¥continue is used to identify a block of code in Python. - /V V indentation The length of the string "Hello world" is .-VVV11 During the phase of the System Development Life Cycle, the System Analyst will document the inputs, processing and outputs of each program within the application. - /V V Design A programmer-readable explanation or annotation in the source code of a computer program is a .- ¥V¥ comment The relational operator meaning greater than is .-VVS> The first action in defining a while loop is test an expression. - V/V /False The standard output device is a .- ¥VJ/ monitor In case, each word is lowercase with underscores separating words. - VVVsnake The operator meaning assignment is .-VVV= Maximum numeric range of a character is 255. - /V/True The most popular version control system is .-VVVgit The value of True OR True is .-VVVtrue In the book examples, output functions typically had no parameters in and a retun value out. - /V /False The relational operator meaning less than is .-VVV< The value obtained by inverting all the bits in the binary representation of a number is the .- VV Jones complement To move data from a device into a memory location defined in your program is known as .-VVVread A causes execution to leave the current function and resume at the point in the code immediately after where the function was called. - /V /return statement An represents whole numbers. - /VVinteger The flowcharting symbol is used to designate input and output operations. - Vv JV parallelogram refers to the number of indicies needed to specify an element in an array. - ¥VVdimensions The value of True AND NOT False is .-VVVtrue is a software design technique that emphasizes separating the functionality of a program into independent, interchangeable modules, such that each contains everything necessary to execute only one aspect of the desired functionality. - v¥J/