Give 2 examples of a code optimization?

Answers were Sorted based on User's Feedback



Give 2 examples of a code optimization?..

Answer / mms zubeir

I would like to quote two things from the same area.

1. Read/Write chunks from/into a file instead of byte by
byte reading.

2. Aquire resources late and relieve it early. Example, if
you want to use a file, open the file as late as possible
and release it as early as possible after use.

Is This Answer Correct ?    12 Yes 1 No

Give 2 examples of a code optimization?..

Answer / maria

http://en.wikipedia.org/wiki/Modulo_operation

Is This Answer Correct ?    1 Yes 0 No

Give 2 examples of a code optimization?..

Answer / maria

1) For checking modulo use

num1&(num2-1)

instead:

num1%num2

2) For multiplying or dividing by 2 use left and right shift
accordingly.

3) In loop use, if code allows it, decrement,like this:
for(int i = MAX_VALUE ; i > 0 ; i--)
instead:
for(int i = 0 ; i < MAX_VALUE; i++)

Is This Answer Correct ?    7 Yes 7 No

Give 2 examples of a code optimization?..

Answer / sudheer

How this num1&(num2-1) replaces num1%num2. Execute and
check before posting some thing...

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More C++ General Interview Questions

Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement

0 Answers  


Why Pointers are not used in C++?

0 Answers   Global Logic,


Is c++ harder than java?

0 Answers  


What is a wchar_t in c++?

0 Answers  


Enter n no. of element and delete value from desire position

1 Answers  






What is the use of class in c++?

0 Answers  


What are the three forms of cin.get() and what are their differences?

0 Answers  


Explain function overloading

0 Answers  


What are the advantages and disadvantages of using inline and const?

2 Answers   Polaris, TCS, Zimmer Biomet,


Why can’t you call invariants() as the first line of your constructor?

0 Answers  


How to give an alternate name to a namespace?

0 Answers  


Explain what are mutator methods in c++?

0 Answers  


Categories