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
Copyright © 2025. Powered by Intellect Software Ltd