Searching for "allocated"

Q:

In the following question, the sentence given with blank to be filled in with an appropriate word. Select the correct alternative out of the four and indicate it by selecting the appropriate option.

The government allocated Rs 1,000 Cr for __________________ of historical monuments.

A) resurrection B) revival
C) resumption D) restoration
 
Answer & Explanation Answer: D) restoration

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

Q:

Income taxes are allocated to

A) discontinued operations B) prior period adjustments
C) extraordinary items D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

Income taxes are allocated to extraordinary items, discontinued operations and prior period adjustments.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: AIEEE , Bank Exams , CAT

Q:

Can I increase the size of a dynamically allocated array? < Yes / No> if yes, how?

Answer

Yes, using the realloc() function as shown below:


main()


{


        int *p;


        p = ( int *) malloc (20) ;


        t = p;


        t = (int *) realloc ( p, 40);


        if ( t == NULL )


        Printf (" Cannot reallocate, leaves previous allocated region unchanged ");


       else


       {


              if ( p ==t )


              ;  / * the array expanded at the same region */


             else


            { 


                 free ( p ); / * deallocate the original array */


                 p = t;  /* set p to newly allocated region */


             }


      }


}  

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

Q:

How would you free the memory allocated by the following program?

#include "alloc.h"

#define MAXROW 3

#define MAXCOL 4

main()

{

     int **p, i;

     p = (int **) malloc (MAXROW * sizeof (int *));

      for ( i = 0; i < MAXROW ; i++)

            p[i] = (int *) malloc (MAXCOL * sizeof (int ));

}

Answer

for ( i=0; i < MAXROW ; i++)


free (p[i]);


free (p);

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

Q:

[CO-OM-CCA] Data from internal and external accounting should be reconcilable. Which is (are) correct?

A. The CO totals in the reconciliation ledger are not updated for the external postings.

B. External postings to FI with a cost accounting effect are transferred automatically to the appropriate Co application component.

C. If amounts are allocated within CO across company codes, functional areas or business areas, the information do not need to pass back to FI, the R/3 system sends this data automatically to the FI component.

D.    It is not possible to use the reconciliation ledger to generate a posting that brings FI into agreement with the CO postings.

Answer

Answer : B

Report Error

View answer Workspace Report Error Discuss

Subject: SAP CO

Q:

[CO-OM-CCA] Postings of costs an revenues to CO can result in real and statistical postings. Which of the following answers is(are) correct?

A. Real postings are for informational purposes only.

B. One, and only one, real posting is required in CO.

C. Statistical postings can be allocated or settled to other controlling objects.

D. Real postings cannot be managed.

Answer

Answer : B

Report Error

View answer Workspace Report Error Discuss

Subject: SAP CO

Q:

By whom will the unallocated memory that is no longer needed will be cleared in java?

A) Java Virtual Machine B) Garebage collector
C) Both A and B D) None
 
Answer & Explanation Answer: B) Garebage collector

Explanation:

The Java programming language provides a system-level thread to track memory allocation.

Garbage collection has the following characteristics:

• Checks for and frees memory no longer needed

• Is done automatically

• Can vary dramatically across JVM implementations

Report Error

View Answer Report Error Discuss

Filed Under: Java