1. Question:What do you mean by GOTOless programming? 

    Answer
    Programming without the use of branch instructions.

    1. Report
  2. Question:Write down a pseuducode of three numbers by sorting with desending to assending ? 

    Answer
    Read a,b,c 

    IF a<b THEN
    SET temp=a,a=b,b=temp
    END IF

    IF a<c THEN
    SET temp=a,a=c,c=temp
    END IF

    IF b<c THEN
    SET temp=b,b=c,c=temp
    END IF

    PRINT a,b,c

    1. Report
  3. Question:What is truth table ? 

    Answer
    The truth table is commonly used to represent the possible values of combinations of conditions.

    1. Report
  4. Question:What is AND oparation.? 

    Answer
    A Boolean operation,as in the statement A AND B, in which the statement is true only if both A and B are true.

    1. Report
  5. Question:What is N-S(Nassi-Shneiderman) Flowchart? 

    Answer
    A compact and easily understood technique for planning and documenting structured programs; includes no provision for branching.

    1. Report
  6. Question:What is sequence checking ? 

    Answer
    A method for verifying that a file is in order by comparing key fields of consecutive records.

    1. Report
  7. Question:What is function table? 

    Answer
    A table that contains values that are to be retrieved for use in processing.

    1. Report
  8. Question:What is OR oparator ? 

    Answer
    A Boolean operation,as in A OR B, in which the statement is true if either A or B(or both) is true.

    1. Report
  9. Question:What is NOT oparator ? 

    Answer
    A Boolean operation,as in NOT A , that changes the value of statement from true to false or from false to true.

    1. Report
  10. Question:Define hashing. 

    Answer
    Deriving the location for a record in a random file from the record key.

    1. Report
Copyright © 2024. Powered by Intellect Software Ltd