Answer Posted / salim
structured programming language enforces logical structure
of the program being written to make it more easy to
understand and modify.It deploys top-down design model.
A defined function or a set of similar functions are coded
in separate module or submodule which means that code can
be loaded in memory more efficiently and modules can be
used in other programs more efficiently.
Structured languages support several looping constructs
such as for,while,do-while etc.
In structured language the use of goto is either prohibited
or discouraged and is not the common form of program
control.
A structured language allows you to place statements
anywhere on a line and doesn't require a strict field
concept.
Eg Pascal,Ada,C++,C,Java,Modula-2.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain how do you determine the length of a string value that was stored in a variable?
What is local and global variable in c?
What is anagram in c?
What is void main ()?
Why is structure important for a child?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What are the advantages of union?
What are examples of structures?
How can I automatically locate a programs configuration files in the same directory as the executable?
What are control structures? What are the different types?
What will be your course of action for a push operation?
Explain output of printf("Hello World"-'A'+'B'); ?
Define C in your own Language.
Explain what is a 'locale'?
How can you increase the allowable number of simultaneously open files?