Answer:
Only
Option: void f1(float array[], int size);
is valid.
Explanation:
To pass an array as argument in a function, the syntax should be as follows:
functionName (type arrayName[ ] )
We can't place the size of the array inside the array bracket (arrayName[100]) as this will give a syntax error. The empty bracket [] is required to tell the program that the value that passed as the argument is an array and differentiate it from other type of value.
Answer:
import java.util.Scanner;
public class num9 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter year");
int givenYear =in.nextInt();
if(givenYear>=2101){
System.out.println("Distant Future");
}
else if(givenYear>=2001){
System.out.println("21st Century");
}
}
}
Explanation:
The
data type is most suitable to define a password field.
Answer:
Data Type String
Explanation:
Hope it helps. pls mark as brainliest.
True
False
The statement the Internet is considered a WAN is true.
We are given that;
The statement about WAN
Now,
A WAN, or a wide area network, is a computer network that spans over a large geographic area, such as regions, countries, or even the world.
The Internet is the largest and most well-known example of a WAN, as it connects millions of devices across the globe using various communication protocols and technologies.
A WAN can also be composed of smaller networks, such as local area networks (LANs) or metropolitan area networks (MANs), that communicate with each other.
Therefore, by WAN the answer will be true.
To learn more about WAN visit;
#SPJ6
Answer:
true. internet is definitely wan
missing DLL files
installation issues
configuration issues
applications running slowly
kernel panic
power cords not being plugged in
The common problems experienced with software applications will be missing DLL files, installation issues, configuration issues, applications running slowly, and kernel panic. Then the correct options are B, C, D, E, and F.
Today's world depends heavily on technology. Technology now controls not just how businesses run but also how quickly many different sectors across the world are developing. The pace of technical development dictates the rate of development and company growth, leaving human progress and economic expansion at the whim of technology.
Some of the common problems are as follows:
The normal issues experienced with programming applications will be missing DLL documents, establishment issues, arrangement issues, applications running gradually, and part alarms. Then the right choices are B, C, D, E, and F.
More about the common problems with software applications link is given below.
#SPJ12
Answer:
All but the top and bottom on edge 2020
Explanation:
Answer:
Since Python is a scripting language, here is code in python.
#prompt user to give check
amount=float(input("Please Enter the check:"))
#prompt user to give service
service=input("Please Enter the service (good, fair or poor):")
# calculate tip on the basis of service
if service =="good":
tip=amount*0.2
elif service=="fair":
tip=amount*0.15
elif service=="poor":
tip=amount*0.05
#calculate total
total=amount+tip
#print tip
print("tip is equal to : {} ".format(tip))
#print total
print("total of the check is : {} ".format(total))
Explanation:
Prompt user to give check and service input.After taking the input from user, based on the service tip will be calculated. if service is "good" then tip will be 20% of the check, tip will be 15% if service is "fair" and tip will be 5% if service is "poor".
Output:
Please Enter the check:125
Please Enter the service (good, fair or poor):good
tip is equal to : 25.0
total of the check is : 150.0
To calculate percent of a total (i.e. calculate a percent distribution), you can use a formula that simply divides an amount by the total.
Note: you must format the result using the Percentage number format in Excel to see 25%, 10%, etc.
the reference to C11 is absolute (i.e. $C$11) so that it won't change when the formula is copied down the column.
As always in Excel, when you want to display a percentage, you need to use the Percentage number format, which will automatically display a decimal value as a percentage.
-dave bruns
Answer:
equations
this is the answer