Question

Programming Language Explain why orthogonality is important but requires balance.

Programming Language

Explain why orthogonality is important but requires balance.

Homework Answers

Answer #1

If the operations change just one thing without affecting others, this is called as the orthogonality which is mainly used in programming.
Due to this orthogonality, we are able to make the different data structures present in the programming languages such as C. For example: If we consider the structures used in the C language they are also made due to the orthogonality which is used in programming.

Yes, it requires balance as well because orthogonality should not add the change in such a way that it starts affecting others.
Thus balance is needed in the orthogonality.

Thanks

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
C PROGRAMMING LANGUAGE The following code written in C programming language was run and displays 997705320....
C PROGRAMMING LANGUAGE The following code written in C programming language was run and displays 997705320. Explain why and how this program outputs this number. int main(void) { int a = 5, b =20; int* ptr = &a; int** ptr2 = &ptr; printf("%d\n", ((int)*ptr * (int)*ptr2)); return 0; }
FOR C PROGRAMMING LANGUAGE Which of the three C programming language functions are likely to cause...
FOR C PROGRAMMING LANGUAGE Which of the three C programming language functions are likely to cause problems in a program that calls them? For those causing problems, briefly explain why. int* f1(void) { int y = 10; return (&y); } int* f2(void) { int* ptr; *ptr = 10; return ptr; } int* f3(void) { int *ptr; ptr = (int *) malloc (sizeof(int)); *ptr = 10; return ptr; } f1: [explanation goes here] f2: [explanation goes here] f3: [explanation goes here]
Using the code as an example, explain why Python is a fixed format programming language. Describe...
Using the code as an example, explain why Python is a fixed format programming language. Describe what would be output for each of the print statements in the code listing.- Given the difference in output, explain the different roles of readLine(), readLines(), and read() functions. with open("rainfall.txt","r") as inFile:    aLine = inFile.readLine() with open("rainfall.txt", "r") as inFile:   lineList = inFile.readLines() with open("rainfall.txt", "r") as inFile:   fileString = inFile.read()) print(aLine) print(lineList) print(fileString)
Why is it important to study the implementation of programming languages?
Why is it important to study the implementation of programming languages?
Why are strings usually primitive (or near primitive) in modern programming language? a. efficiency b.readability and...
Why are strings usually primitive (or near primitive) in modern programming language? a. efficiency b.readability and writability c. readability d. readability, writability, efficiency
Explain why you think that learning a foreign language is important, especially if you have been...
Explain why you think that learning a foreign language is important, especially if you have been given an overseas assignment. What advantages does it give you in life, in your career, and with your specific overseas assignment.
FOR C PROGRAMMING LANGUAGE Consider the following C programming language declaration. Find the values of the...
FOR C PROGRAMMING LANGUAGE Consider the following C programming language declaration. Find the values of the following. If undefined write undefined. int A[2][3] = { {1, 2, 3}, {4, 5, 6} }; A[1][0]: [Value goes here] *A[0]: [Value goes here] *(*A + 1): [Value goes here] **(A + 1): [Value goes here] **(A + 2): [Value goes here]
What is a need assessment?Why is it important in community health promotion programming process?
What is a need assessment?Why is it important in community health promotion programming process?
What is a need assessment? Why is it important in community health promotion programming process?
What is a need assessment? Why is it important in community health promotion programming process?
Create an Infographic on the History of the Python Programming Language.
Create an Infographic on the History of the Python Programming Language.
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT