Answer:
New Zealand may use some of these solutions to prevent air pollution
Explanation:
Using public transports.
Recycle and Reuse
No to plastic bags
Reduction of forest fires and smoking
Use of fans instead of Air Conditioner
Use filters for chimneys
Avoid usage of crackers
Answer:
0.667 per day.
Explanation:
Our values here are

Degradation constant=k and is unknown.
We calculate the concentration through the formula,

Replacing values we have

That is the degradation constant of Z-contaminant
Answer:
Using linkedlist on C++, we have the program below.
Explanation:
#include<iostream>
#include<cstdlib>
using namespace std;
//structure of linked list
struct linkedList
{
int data;
struct linkedList *next;
};
//print linked list
void printList(struct linkedList *head)
{
linkedList *t=head;
while(t!=NULL)
{
cout<<t->data;
if(t->next!=NULL)
cout<<" -> ";
t=t->next;
}
}
//insert newnode at head of linked List
struct linkedList* insert(struct linkedList *head,int data)
{
linkedList *newnode=new linkedList;
newnode->data=data;
newnode->next=NULL;
if(head==NULL)
head=newnode;
else
{
struct linkedList *temp=head;
while(temp->next!=NULL)
temp=temp->next;
temp->next=newnode;
}
return head;
}
void multiplyOddPosition(struct linkedList *head)
{
struct linkedList *temp=head;
while(temp!=NULL)
{
temp->data = temp->data*10; //multiply values at odd position by 10
temp = temp->next;
//skip odd position values
if(temp!= NULL)
temp = temp->next;
}
}
int main()
{
int n,data;
linkedList *head=NULL;
// create linked list
head=insert(head,20);
head=insert(head,5);
head=insert(head,11);
head=insert(head,17);
head=insert(head,23);
head=insert(head,12);
head=insert(head,4);
head=insert(head,21);
cout<<"\nLinked List : ";
printList(head); //print list
multiplyOddPosition(head);
cout<<"\nLinked List After Multiply by 10 at odd position : ";
printList(head); //print list
return 0;
}
Answer:
Video game designers typically have a bachelor's degree in game design, computer engineering, or computer science which takes four to five years to complete. Courses in a game design degree program may include project management, integrated video design and technology, game prototyping and level design.
Answer:
change in storage = -310,500 ft^3
intital storage= 3.67 acre ft
Explanation:
Given data:
Rate of inflow = 350 cfs
Rate of outflow = 285 cfs
After 90 min, rate of inflow = 250 cfs
Rate of outflow = 200 cfs
final storage = 10.8 acre-ft
calculating the average inflow and outflow
average inflow 
average outlow 
total amount of water drain during the period of one hour
= (average outflow - average inflow) *60*90
= (242.5 - 300)*60*90 = -310,500
change in storage is calculate as
= -310,500 ft^3
in cubic meter
= -310500/35.315 = 8792.30 cm^3
in acre-ft
= -310,500/43560 = 7.13 acre ft
initial storage = 10.8 - 7.13 = 3.67 acre ft