Answer:
The open source is the programming language that basically falls inside the parameters of the protocol of open-source convention. This fundamentally implies the language are not proprietary, with the specific arrangements (contingent upon the open source permit), can be adjusted and based upon in a way that is available to general society.
The python and ruby are the main examples of the open source programming language.
The disadvantage of the open source is that it is not much compatible as compared to all other software. It is not user friendly and easy for using the software.
The advantage of the open source programming is that it is available at low cost and it has high availability.
declared
B.
deallocated
C.
initialized
D.
All of the above
Answer:
A. declared
Explanation:
Before a structure can be used, it must be declared.
For example:
// Structure definition
struct s{
int a;
char b;
};
// Structure instantiation
struct s mystruct;
// This is where a structure instance called mystruct is created whose
// datatype is struct s.
mystruct.a = 10;
mystruct.b = 'c';
As we can see from the example definition precedes use for the structure.
Answer:
The answer is "Public Key".
Explanation:
PKI stands for public key infrastructure. It is a collection of functions, protocols, equipment, code, and procedures that require to create, maintain, transmit, store and cancel encrypted certs and handle the authentication of a public key.
Write a program that takes as inputs the hourly wage, total regular hours, and total overtime hours and displays an employee’s total weekly pay.
Below is an example of the program inputs and output:
Enter the wage: $15.50
Enter the regular hours: 40
Enter the overtime hours: 12
The total weekly pay is $899.0
Written here is a Python program that calculates the total weekly pay for an employee based on the given inputs:
python
# Get inputs from the user
hourly_wage = float(input("Enter the wage: $"))
regular_hours = float(input("Enter the regular hours: "))
overtime_hours = float(input("Enter the overtime hours: "))
# Calculate total weeklypay
regular_pay = hourly_wage * regular_hours
overtime_pay = 1.5 * hourly_wage * overtime_hours
total_weekly_pay = regular_pay + overtime_pay
# Display the result
print(f"The total weekly pay is ${total_weekly_pay:.1f}")
Copy and paste this code into a Pythoninterpreter or a script file, and run it. It will prompt you to enter the hourly wage, regular hours, and overtime hours, and then it will calculate and display the total weekly pay based on the given formula.
In the example you provided, the result was rounded to one decimal place. If you want a different level of precision in the output, you can adjust the formatting in the `print` statement accordingly.
Learn more about Program at:
#SPJ3
wage = float(input("Enter the wage: $"))
regular_hours = float(input("Enter the regular hours: "))
overtime_hours = float(input("Enter the overtime hours: "))
print(f"The total weekly pay is ${(regular_hours * wage) + ((wage*1.5) *overtime_hours)}")
I hope this helps!
B. Start menu
C. System tray
D. Desktop Arie is moving icons around and deleting shortcuts. He is working on the _____.
A. All programs submenu
B. Start menu
C. System tray
D. Desktop
Answer:
D. Desktop
Explanation:
If he's moving icons around and deleting shortcuts, he has to do that at the desktop.
Answer:
See the program code at explaination
Explanation:
CREATE PROCEDURE sp_Q1
atcountry1 NVARCHAR(15),
atcountry2 NVARCHAR(15)
AS
BEGIN
BEGIN
SELECT SupplierID, CompanyName, Phone, Country FROM suppliers
where Country in (atcountry1,atcountry2)
SELECT ProductID, ProductName, UnitPrice, SupplierID FROM Products
where SupplierID in(
SELECT SupplierID FROM suppliers
where Country in (atcountry1,atcountry2)) ORDER BY SupplierID
END
END
GO
-- Testing script.
DECLARE atRC int
DECLARE atcountry1 nvarchar(15)
DECLARE atcountry2 nvarchar(15)
-- Set parameter values here.
set atcountry1='UK'
set atcountry2='Canada'
EXECUTE atRC = [dbo].[sp_Q1]
atcountry1
,atcountry2
GO
Note: please kindly replace all the "at" with the correct at symbol.
The editor doesn't support it on Brainly.
O Fixed positioning is an offset placement from the normal element layout, while absolute positioning is the HTML
default element flow
Fixed positioning is relative to the browser window, while absolute positioning is located at a specific place on a
web page.
Fixed positioning is located at a specific place on a web page window, while absolute positioning is an offset
placement from the normal element layout.
Answer:
Fixed positioning is relative to the browser window, while absolute positioning is located at a specific place on a web page.
Answer:
c
Explanation: trust me bro