1 Answer

Answer :

Size of the final executable can be reduced using dynamic linking for libraries.

Related questions

Description : String Processing --- Write out a function that prints out all the permutations of a string. For example, abc would give you abc, acb, bac, bca, cab, cba.

Last Answer : void PrintPermu (char *sBegin, char* sRest) { int iLoop; char cTmp; char cFLetter[1]; char *sNewBegin; char *sCur; int iLen; static int iCount; iLen = strlen(sRest); if (iLen == 2) { iCount++; ... printf("\nEnter a string:"); scanf("%s%*c",sIn); memset(s,0,255); PrintPermu(s, sIn); }

Description : "union" Data Type What is the output of the following program? Why?

Last Answer : #include main() { typedef union { int a; char b[10]; float c; } Union; Union x,y = {100}; x.a = 50; strcpy(x.b,"hello"); x.c = 21.50; printf("Union x : %d %s %f n",x.a,x.b,x.c); printf("Union y : %d %s %f n",y.a,y.b,y.c); }

Description : Linked Lists -- Can you tell me how to check whether a linked list is circular?

Last Answer : Create two pointers, and set both to the start of the list. Update each as follows: while (pointer1) { pointer1 = pointer1->next; pointer2 = pointer2->next; if (pointer2) pointer2=pointer2->next ... before pointer1, or the item before that. Either way, its either 1 or 2 jumps until they meet.

Description : printf() Function- What is the difference between "printf(...)" and "sprintf(...)"?

Last Answer : sprintf(...) writes data to the character array whereas printf(...) writes data to the standard output device.

Description : malloc() Function- What is the difference between "calloc(...)" and "malloc(...)"?

Last Answer : 1. calloc(...) allocates a block of memory for an array of elements of a certain size. By default the block is initialized to 0. The total number of memory allocated will be (number_of_elements * ... calls malloc(...) in order to use the C+ + _set_new_mode function to set the new handler mode.

Description : What is the output of printf("%d")?

Last Answer : 1. When we write printf("%d",x); this means compiler will print the value of x. But as here, there is nothing after ï ½%dï ½ so compiler will show in output window garbage value. 2. When we ... an error without the proper number and type of arguments for things like printf(...) and scanf(...).

Description : What is C language?

Last Answer : The C programming language is a standardized programming language developed in the early 1970s by Ken Thompson and Dennis Ritchie for use on the UNIX operating system. It has since spread to ... language for writing system software, though it is also used for writing applications. ...

Description : Problems with using Lines of Code to measure the size of a product include(s) a) The creation of source code is only part of the development effort b) The Lines of Code (LOC) will differ between ... The final size (kLOC) can only be determined once the product is delivered e) All of the above.

Last Answer : e) All of the above.

Description : How do I reduce the size of a Final Cut file?

Last Answer : You could try some compression like zip (or some variant), but if your only need is to email it, you might try a free-large-email service like Dropsend .

Description : How do I unblock non-executable packages in Ubuntu?

Last Answer : answer:Well, you’ve already installed the Zune software haven’t you?, so running the installer again won’t accomplish much of use. Browse through your C_Drive folder and locate the .exe of the Zune software itself. Also, try Gnomad – it might work.

Description : Which of the following buttons do you click to pre-configure the fields in an executable transaction screen?

Last Answer : Variant

Description : Which of the following is the process of assembling program  components, data, and libraries, and then compiling and linking these to  create an executable system? a) System building b) Release management c) Change management d) Version management

Last Answer : a) System building

Description : contain library program have to be indicated to the loader. a. Externally defined b. Internally defined c. Executable file d. All of these

Last Answer : a. Externally defined

Description : When subroutine is called contents of program counter is location address of __ instruction following call instruction is stored on _ __and program execution is transferred to __ address. a. Non ... , Stack and Main program Cc. Executable, Queue and Subroutine d. Executable, Stack and Subroutine

Last Answer : d. Executable, Stack and Subroutine

Description : _______viruses infect executable program files: a) File Infector Viruses b) Macro Viruses c) Multi Partite Viruses d) None of These

Last Answer : a) File Infector Viruses

Description : A(n) _____ program is one that is ready to run and does not need to be altered in any way. a) Interpreter b) High level c) Compiler d) Executable e) None of these

Last Answer : d) Executable

Description : Compiling creates a(n)- 1) Program Specification 2) Algorithm 3) Executable Program 4) Subroutine

Last Answer : 3) Executable Program

Description : When the Captain cannot comply with an ATC clearance: a. The Captain must accept the ATC clearance, because it is based on a filed flight plan b. He/she may request an amended clearance and, if ... appropriate ATC must grant him/her that clearance d. He/she may suggest a new clearance to ATC

Last Answer : b. He/she may request an amended clearance and, if executable, he/she will accept that clearance

Description : The Octal number to be given alogn with chmod command to make a file readable, writable and executable to the owner, readable and executable to group and others is: A. 000 B. 755 C. 744 D. 555 E. None of the above

Last Answer : B. 755

Description : When the Captain cannot comply with an ATC clearance: a. The Captain must accept the ATC clearance, because it is based on a filed flight plan b. He/she may request an amended clearance and, if ... appropriate ATC must grant him/her that clearance d. He/she may suggest a new clearance to ATC

Last Answer : b. He/she may request an amended clearance and, if executable, he/she will accept that clearance

Description : Use of an executable model to represent the behavior of an object is called A. Simulation B. Software item C. Software feature D. None of the above

Last Answer : A. Simulation

Description : Verification performed without any executable code is referred to as A. Review B. Static testing C. Validation D. Sanity testing

Last Answer : B. Static testing

Description : Preparedstatement Object in JDBC is used to execute ........................... queries. A) executable B) simple C) high level D) parameterized

Last Answer : D) parameterized

Description : Prepared Statement object in JDBC used to execute........... queries. A) Executable B) Simple C) High level D) Parameterized

Last Answer : D) Parameterized

Description : State whether the following statement is true. i) A macro virus is platform independent. ii) Macro viruses infect documents, not executable portions of code. A) i-only B) ii-only C) Both i and ii D) Non i and ii

Last Answer : D) Non i and ii

Description : A ………………… attaches itself to executable files and replicates, when the infected program is executed, by finding other executable files to infect. A) Stealth virus B) Polymorphic Virus C) Parasitic Virus

Last Answer : C) Parasitic Virus

Description : ……………….. level is where the model becomes compatible executable code A) Abstract level B) Application level C) Implementation level D) All of the above

Last Answer : C) Implementation level

Description : The ............... transfers the executable image of a C++ program from hard disk to main memory. (A) Compiler (B) Linker (C) Debugger (D) Loader

Last Answer : (D) Loader

Description : The final step in the marketing control process is to A)take corrective action. B)establish performance standards. C)evaluate actual performance. D)compare actual performance and standards. E)reduce the difference between actual and desired standards.

Last Answer : E)reduce the difference between actual and desired standards.

Description : What is Dionne Warwick's best album and compilation CD?

Last Answer : I’m going to say Most Famous Hits on the basis of it having your favorite, “I Always Get Caught In The Rain” as well as most of her other known hits.

Description : What parts of this video compilation do you like, and which parts do you not like?

Last Answer : NASA should send that vid into deep space, if there are any hostile aliens out there they’ll either avoid us like a plague, or conclude there’s no intelligent life forms worth bothering with & move on anyway…a win, win situation if ever there was.

Description : Have you invented any proverbs worth adding to a compilation of wise sayings?

Last Answer : If you want sugar coating, go buy a doughnut.

Description : Do you know any great compilation CD to give as a gift for Christmas?

Last Answer : I always thought the Fear and Loathing Las Vegas sound track was pretty good….got a good christmasy vibe going on.

Description : How many times has the compilation of the Holy Quran been completed ?

Last Answer : Twice. Once Hazrat Abu Bakr. Hazrat Uthman once again in his time. In its time.

Description : Who wrote the first compilation of Ekushey and 'Bangladesh War of Independence: Documents' ?

Last Answer : Hasan Hafizur Rahman wrote the first compilation of Ekushey and 'Bangladesh War of Independence: Documents' .

Description : Grandmother's bag is a compilation of national compositions ?

Last Answer : Fairy tales.

Last Answer : Grandma The bag Fables , legends Or Folklore.

Description : [img] https:///wp-content/uploads/2018/02/k15.png [/ img]

Last Answer : A wild duck is swimming in the water

Description : Processor: AMD Athlon x2 370k 4ghz FM2. Video card: SAPPHIRE Radeon RX 550 2gb gddr5 128bit  

Last Answer : There wasn't much AMD procim yet, but what I saw on the video card was tested with better pockets and the mud was pretty good, so I think it'll be a bit CPU limited, but maybe not so dangerous. Here's a good example: https://www.youtube.com/watch?v=j0HldiYSqcY 

Description : I want to do something with myself. Who will plan my exercise plan and diet?

Last Answer : Exercise plan by some coach (fitter, sports club ... - I have no idea what you want to do with yourself). And either the same will advise you on the menu - or consult a dietitian (doctor !! - not some nutritionist).

Description : What is the root word for the word compilation?

Last Answer : Feel Free to Answer

Description : What are the stages in the compilation process? A) Feasibility study, system design and testing B) Implementation and documentation C) Lexical Analysis, syntax analysis, and code generation D) None of the above

Last Answer : Answer : C

Description : On successful compilation a file with the class extension is created. a) True b) False

Last Answer : a) True

Description : The best way to test the Project Management Plan (SPMP) is by a) Prototyping b) Inspection c) Simulation d) Compilation e) Debugging.

Last Answer : b) Inspection

Description : Evaluation process of proposed projects or groups of projects is known as: A. Project Analysis B. Project Compilation C. Project selection D. Project Documentation

Last Answer : C. Project selection

Description : What will happen if a predecessor description is generated that is satisfied by the initial state of the planning problem? a) Success b) Error c) Compilation d) Termination

Last Answer : d) Termination

Description : For assurance engagements regarding historical financial information, reasonable assurance engagements are called: a. Review engagements. b. Audit engagements. c. Compilation engagements. d. Agreed-upon procedures engagements

Last Answer : Audit engagements

Description : A report on factual findings is the end product of the auditor when performing: a. Audit. b. Review. c. Agreed-upon procedures. d. Compilation

Last Answer : Agreed-upon procedures

Description : The type of assurance that is provided by the CPA on a compilation report is: a. Limited assurance. b. No assurance. c. Low assurance. d. Negative assurance

Last Answer : No assurance

Description : Which of the following is incorrect regarding a compilation engagement? a. The CPA uses his auditing expertise to collect, classify and summarize financial information. b. The CPA should exercise due ... . d. The procedures performed do not enable the accountant to express any form of assurance.

Last Answer : The CPA uses his auditing expertise to collect, classify and summarize financial information