Answer:
import java.util.Arrays;
public class num2 {
public static void main(String[] args) {
int []intArray = new int[100];
for(int i=0; i<intArray.length; i++){
intArray[i] = i+1;
}
System.out.println(Arrays.toString(intArray));
}
}
Explanation:
Firstly create an array of size 100 with this statement
int []intArray = new int[100];
Using a for loop add elements into the array starting at i=0+1 (to acheive an asceending order) since i will run from 0-99.
see the attached code and output
Answer:
I think option C is correct
Answer:
Factors influencing population growth
Economic development. ...
Education. ...
Quality of children. ...
Welfare payments/State pensions. ...
Social and cultural factors. ...
Availability of family planning. ...
Female labour market participation. ...
Death rates – Level of medical provision
Answer:
D. The Active Directory Users and Computers
Explanation:
The Active Directory Users and Computers (ADUC) is one of the many tools used to administer the Active Directory and it is the most common tool that Windows admins use on the domain controller. It provides most of the admins functions such as
i. resetting of password
ii. unlocking users
iii. delegating of permissions to users to manage group policy
iv. managing Active Directory objects - users, computers, contacts, groups - and their attributes.
Other tools are Active Directory Component Services (allows to manage component services), Active Directory Domains and Trusts (allows to manage trusts between forests and domains), Active Directory Administrative Center (allows to manage password policies and even get the history of PowerShell logs).
<em>Hope this helps!</em>