Searching for "WAP"

Q:

Consider the following statements about National Wildlife Action Plan (NWAP) of India for 2017-2031 :

1. This is the Third National Wildlife Action Plan.

2. The NWAP is unique as this is the first time India has recognized the concerns relating to climate change impact on wildlife.

3. The NWAP has ten components. Which of the statements given above is/are correct?

A) 1 only B) 1 and 2 only
C) 2 and 3 only D) 1, 2 and 3
 
Answer & Explanation Answer: B) 1 and 2 only

Explanation:

India unveiled the third National Wildlife Action Plan for 2017-2031. The plan was unveiled by environment minister Dr Harsh Vardhan on the inaugural day of the Global Wildlife Programme (GWP) conference The third National Wildlife Action Plan is unique as this is the first time India has recognised the concerns relating to climate change impact on wildlife and stressed on integrating actions that need to be taken for its mitigation and adaptation into wildlife management planning processes. The plan adopts a “landscape approach”in conservation of all wildlife.The government has also underlined an increased role of private sector in wildlife conservation. The plan has 5 components, 17 themes, 103 conservation actions and 250 projects.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

Q:

Indicate what would the SWAP macro be expanded to on preprocessing. Would the code compile?

#define SWAP (a, b, c ) (c t; t = a, a = b, b = t; )

main()

{

    int x = 10, y = 20;

    SWAP (x, y, int );

    printf ( " %d%d ", x, y);

}

Answer

( int t ; t = a, a = b, b = t ;);


This code won't compile since declaration of t cannot occur within parentheses.


 

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

Q:

Which IEEE committee has been sanctioned by WAP and is called WPA2?

Answer

The IEEE 802.11i standard has been sanctioned by WPA and is termed WPA version 2.

Report Error

View answer Workspace Report Error Discuss

Subject: CCNA

Q:

Swap two variables without using third variable.

Answer

#include<stdio.h>
int main(){
    int a=5,b=10;
    a=b+a;
    b=a-b;
    a=a-b;
    printf("a= %d  b=  %d",a,b);
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

Q:

What scheme does the Kernel in Unix System V follow while choosing a swap device among the multiple swap devices?

Answer

Kernel follows Round Robin scheme choosing a swap device among the multiple swap devices in Unix System V.

Report Error

View answer Workspace Report Error Discuss

Subject: Operating Systems Exam Prep: GATE

Q:

A Map is an Array,which contains the addresses of the free space in swap device that are allocatable resources,and the number of the resource unit available there.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

The given statement is clearly true.

Report Error

View Answer Workspace Report Error Discuss

Subject: Operating Systems
Exam Prep: GRE

Q:

Which among the following are not the children of Swapper or Scheduler?

A) Process Dispatcher B) Vhand
C) Dbflush D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

Process Dispatcher,Vhand,Dbflush are the children of Scheduler

Report Error

View Answer Report Error Discuss

Filed Under: Operating Systems
Exam Prep: GATE