Questions

Q:

Which of the following statements about the Ordinance-making power of the Governor is/are correct?1. It is a discretionary power.2. The Governor himself is not competent to withdraw the Ordinance at any time.Select the correct answer using the code given below.

A) 1 only B) 2 only
C) Both 1 and 2 D) Neither 1 nor 2
 
Answer & Explanation Answer: D) Neither 1 nor 2

Explanation:

The State Executive has temporary law-making power in emergent situations under the Constitution of India. And the Governor is the head of the State Executive. So, the ordinance making power confers on him by the Constitution itself. But this is not a discretionary power. The ordinance making power of the Governor is co-extensive with the legislative power of the State Legislature to make laws. He can promulgate ordinances only on the subjects on which the State Legislature has power to make laws under the Constitution.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

1 2094
Q:

Why the temporary registers W and Z are named so i mean we start from A, B, C, D, E then H and L coz H stands for higher bit and L for lower bit of the address pinted by memory pointer.. but wats W and Z for?

Answer

As W and Z alphabets are not widely used similarly as W and Z is internally used they would have been named so

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2093
Q:

Mutual Funds are regulated in India by

A) SEBI B) RBI
C) RBI & SEBI both D) Stock Exchanges
 
Answer & Explanation Answer: A) SEBI

Explanation:

Mutual Funds are regulated in India by SEBI (Securities and Exchange Board of India). It was founded in 1992. In 1996, SEBI formulated the Mutual Fund Regulation.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2093
Q:

The first Olympiad was held in Greece in the year

Answer

776 BC

Report Error

View answer Workspace Report Error Discuss

Subject: World History

2 2092
Q:

What would be the output of the following program, if the array beigns at address 65486?

main()

{

    int arr[] = {12,14,15,23,45};

    printf ("%u %u", arr, &arr);

}

Answer

65486  65486

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2092
Q:

C program to find whether a number is palindrome or not.

Answer

 #include<stdio.h>
int main(){
    int num,r,sum=0,temp;

    printf("Enter a number: ");
    scanf("%d",&num);

    temp=num;
    while(num){
         r=num%10;
         num=num/10;
         sum=sum*10+r;
    }
    if(temp==sum)
         printf("%d is a palindrome",temp);
    else
         printf("%d is not a palindrome",temp);

    return 0;
}

Sample output:
Enter a number: 131
131 is a palindrome

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2092
Q:

From a container of milk, 5 litres of milk is replaced with 5 litres of water. This process is repeated again. Thus in two attempts the ratio of milk and water became 81 : 19. The initial amount of milk in the container was

A) 50 litres B) 45 litres
C) 25 litres D) 20 litres
 
Answer & Explanation Answer: A) 50 litres

Explanation:
Report Error

View Answer Report Error Discuss

3 2092
Q:

Project Communications Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Performance Reporting?

Answer

I. Inputs



  • Work performance information

  • Performance measurements

  • Forecasted completion

  • Quality control measurements

  • Project management plan


                - Performance measurement baseline



  • Approved change requests

  • Deliverables


II. Tools and Techniques



  • Information presentation tools

  • Performance information gathering and compilation

  • Status review meetings

  • Time reporting systems

  • Cost reporting systems


III. Outputs



  • Performance reports

  • Forecasts

  • Requested changes

  • Recommended corrective actions

  • Organizational process assets (updates)

Report Error

View answer Workspace Report Error Discuss

0 2091