Answer:
C. The source code has to be translated into object code.
describe source code escrow
Answer:
Source code escrow is the deposit of the source code of software with a third-party escrow agent.
Write full forms of the following: a. CPU b. GHz C. GIGO f. DVD h. CBT k. GUI d. E-mail 1. ICU e. CD j. ECG В CAT
Answer:
A) Central processing unit
B)Gigahertz
C)garbage in, garbage out
f)digital versatile disc
h)Cognitive-behavioral therapy
k)Graphical user interface
d)electronic mail
1)interface converter unit
e)compact disc
j)electrocardiogram
B cat)Brief Cognitive Assessment Tool
write a java program using switch that allow the user to input length and width and check if it is square or rectangle.
import java.util.Scanner;
class check_rectorsq {
public static void main(String[] args) {
System.out.println("Enter length and width: ");
Scanner idx = new Scanner(System.in);
int x = idx.nextInt();
int y = idx.nextInt();
int f = (x==y) ? 1 : 0;
switch(f) {
case 1:
System.out.println("This is a square!");
break;
case 0:
System.out.println("This is a rectangle!");
break;
default:
;;
}
}
}
I need help finishing this coding section, I am lost on what I am being asked.
Answer:
when cmd is open tell me
Explanation:
use cmd for better explanatios
Pls awnser right awnsers only
Answer:
2, 4, and 5
Explanation:
PLEASE HELP IN C++
Integer numInputs is read from input. Given the integer vector dailySalary with the size of numInputs, write a for loop to initialize the second half of dailySalary with the remaining integers read from input.
Ex: If the input is
8
63 78 90 108
then the output is:
0 0 0 0 63 78 90 108
A possible solution in Python:
num_inputs = int(input())
daily_salary = [0] * num_inputs
for i in range(num_inputs // 2, num_inputs):
daily_salary[i] = int(input())
print(daily_salary)
First, we read the integer num_inputs from input.
Then, we create a list daily_salary with num_inputs elements, all initialized to 0.
Next, we use a for loop with the range num_inputs // 2 to num_inputs - 1 (i.e., the second half of the list) to read the remaining integers from input and store them in the corresponding positions of the list.
Finally, we print the resulting list daily_salary.
A for loop is used to initialize the second half of a given integer vector with the remaining integers read from input, where the input specifies the size of the vector and the first half is initialized to 0.
The above mentioned code is a possible solution.
For more questions on Python, visit:
https://brainly.com/question/26497128
#SPJ11
Which of the following functions does a consumer-grade access point combine into a single device? (Select two.)NATAESWAPSSIDWPA
A single access point made for consumers is often built to accommodate 30 to 50 devices.
What is Consumer data point?
On the other hand, an enterprise network system that makes use of numerous interconnected access points may support as many devices as are present on a college campus.
Small businesses are in the rare position of being able to choose between consumer grade and enterprise wireless solutions since they fall somewhere in the center. Making the right choice for your company, though, depends on a number of things.
Small businesses may typically get by with simply a consumer-grade wireless router if they use WiFi for online browsing or multimedia streaming.
Therefore, A single access point made for consumers is often built to accommodate 30 to 50 devices.
To learn more about Consumer grade, refer to the link:
https://brainly.com/question/13419836
#SPJ1
Select all the correct answers
Which TWO statements describe the functions of wireless media?
The two functions are :
- used for network connectivity on cell phones, iPads, and laptops.
- data is carried through radio, infrared and microwave signals.
What is wireless media ?
- Unguided media or unbounded transmission media are other names for wireless communication.
- The transmission of electromagnetic signals in this form is not dependent on any physical medium. When communicating wirelessly, we can send our message by infrared, radio, or microwave waves through the air, water, or vacuum.
Therefore, functions of wireless media include network connectivity on cell phones, iPads, and laptops and radio, infrared and microwave signals to carry data.
You can learn more about wireless media from the given link:
https://brainly.in/question/12459910
#SPJ13
HELP
Which programming language is best suited for designing mobile applications?
A) Python
B) Ruby
C) HTML5
D) PHP
Answer: python
Explanation:
I find it easiest to work with
Pendant Publishing edits multi-volume manuscripts for many authors. For each volume, they want a label that contains the author’s name, the title of the work, and a volume number in the form Volume 9 of 9. For example, a set of three volumes requires three labels: Volume 1 of 3, Volume 2 of 3, and Volume 3 of 3. Design an application that reads records that contain an author’s name, the title of the work, and the number of volumes. The application must read the records until eof is encountered and produce enough labels for each work.
I've seen psuedo-code, I've seen the flowchart. Yet no one explains how to accurately translate it into the programing program called raptor. I'm asking for help on translating the psuedocode I have into the raptor program.
java question
please provide with answer and explanation
Using the codes in computational language in JAVA it is possible to write a code that write a method the parameter arraylist hold a class.
Writting the code:import java.util.ArrayList;
import java.util.Iterator;
import java.util.Scanner;
public class {
public static void main(String[] args) {
Scanner ler = new Scanner(System.in);
ArrayList<String> agenda = new ArrayList();
agenda.add("Juca Bala;11 1111-1111");
agenda.add("Marcos Paqueta;22 2222-2222");
agenda.add("Maria Antonieta;33 3333-3333");
agenda.add("Antônio Conselheiro;44 4444-4444");
int i;
See more about JAVA at brainly.com/question/18502436
#SPJ1
Are AWS Cloud Consulting Services Worth The Investment?
AWS consulting services can help you with everything from developing a cloud migration strategy to optimizing your use of AWS once you're up and running.
And because AWS is constantly innovating, these services can help you keep up with the latest changes and ensure that you're getting the most out of your investment.
AWS consulting services let your business journey into the cloud seamlessly with certified AWS consultants. With decades worth of experience in designing and implementing robust solutions, they can help you define your needs while executing on them with expert execution from start to finish! AWS Cloud Implementation Strategy.
The goal of AWS consulting is to assist in planning AWS migration, design and aid in the implementation of AWS-based apps, as well as to avoid redundant cloud development and tenancy costs. Project feasibility assessment backed with the reports on anticipated Total Cost of Ownership and Return on Investment.
Learn more about AWS consulting, here:https://brainly.com/question/29708909
#SPJ1
What can toxic substances do to your body?
Select all that apply.
Answer:
burn you, affect your whole body
Explanation:
hope this helps :) !!!
java
Type two statements using nextInt() to print two random integers between 0 and 9. End with a newline. Ex:
5
7
Note: For this activity, using one statement may yield different output (due to the compiler calling nextInt() in a different order). Use two statements for this activity.
import java.util.Scanner;
import java.util.Random;
public class DiceRoll {
public static void main (String [] args) {
Random randGen = new Random();
int seedVal = 0;
randGen.setSeed(seedVal);
/* Your solution goes here */
return;
}
}
Answer:
Here are the two statements which use nextInt() to print two random integers between 0 and 9:
System.out.println(randGen.nextInt(10));
System.out.println(randGen.nextInt(10));
Explanation:
Here is the complete program:
import java.util.Scanner; //to accept input from user
import java.util.Random; // use to generate random numbers
public class DiceRoll { //class definition
public static void main (String [] args) {//start of main function
Random randGen = new Random(); // creates a Random class object randGen
int seedVal = 0; //sets starting point for generating random numbers
randGen.setSeed(seedVal); //sets the seed of random number generator
System.out.println(randGen.nextInt(10)); //generates and prints the first random integer between 0 and 9 (10 is the range from 0 to 9) using nextInt method, which is used to get next random integer value from the sequence of random number generator
System.out.println(randGen.nextInt(10)); //generates and prints the second random integer between 0 and 9 (10 is the range from 0 to 9) using nextInt method
return; } }
Another way to write this is to initialize two int variables:
int integer1;
int integer2;
Now use two print statements to print these random integers between 0 and 9 as:
System.out.println(integer1= randGen.nextInt(10));
System.out.println(integer1= randGen.nextInt(10));
Another way to write this is:
Set the value of integer1 to a random number from 0 to 9 and same for integer2
int integer1 = randGen.nextInt(10);
int integer2 = randGen.nextInt(10);
Now use two print statements to print these random integers between 0 and 9 as:
System.out.println(integer1);
System.out.println(integer2);
And office now has a total of 35 employees 11 were added last year the year prior there was a 500% increase in staff how many staff members were in the office before the increase
There were 5 staff members in the office before the increase.
To find the number of staff members in the office before the increase, we can work backward from the given information.
Let's start with the current total of 35 employees. It is stated that 11 employees were added last year.
Therefore, if we subtract 11 from the current total, we can determine the number of employees before the addition: 35 - 11 = 24.
Moving on to the information about the year prior, it states that there was a 500% increase in staff.
To calculate this, we need to find the original number of employees and then determine what 500% of that number is.
Let's assume the original number of employees before the increase was x.
If we had a 500% increase, it means the number of employees multiplied by 5. So, we can write the equation:
5 * x = 24
Dividing both sides of the equation by 5, we find:
x = 24 / 5 = 4.8
However, the number of employees cannot be a fraction or a decimal, so we round it to the nearest whole number.
Thus, before the increase, there were 5 employees in the office.
For more questions on staff members
https://brainly.com/question/30298095
#SPJ8
In this assignment, you will develop a C++ program and a flowchart that calculates a cost to replace all tablets and desktop computers in a business. Customers paying cash get a ten percent discount applied to the total cost of the computers (desktop and tablets). Customers financing the purchase incur a fifteen percent finance charge based on the total cost of the computers (desktop and tablets). Tablets costs $320.00 each and desktops costs $800.00 each. The tax is 75% (.075).
Requirements:
⦁ Use the following variables of the appropriate type: name of company selling the computers, the cost per each type of computer, number of computers to be purchased, discount if paying cash, sales tax rate. Tablets =$320 each and desktop computers = $800.00 each. Sales Tax Rate = .075, Discount Percent = .10, and Finance Charge = .15.
⦁ Variable names must be descriptive.
⦁ Use additional variables to hold subtotals and totals.
⦁ For customers paying cash, the discount should be subtracted from the total computer cost.
⦁ For customers financing the purchase, the finance charge should be added to the total computer cost.
⦁ The body of your program must use variables only; there should not be any "hard coded" values in the output statements. An example of hardcoding is
***Cost of tablets = 4 * 320****.
⦁ Use cout to output the values of the variables to the console. Your cout statement MUST use the variables to display the values
⦁ Display the cost of the computers, tax and average cost per computer. The average cost will be the total cost divided by the number of computers purchased. Display the discount if the customer decides to pay cash or the finance charge if the customer finances the purchase.
⦁ Output must be labelled and easy to read as shown in the sample output below.
⦁ Program must be documented with the following:
⦁ // Name
⦁ // Date
⦁ // Program Name
⦁ // Description
⦁ Develop a flowchart
Hints:
Total cost of computers = cost per tablet * number of tablets purchased + cost per desktop * number of desktops purchased
Calculate the cost if paying cash or financing
Calculate the tax
Average cost per computer = Total computer cost divided by the number of computers purchased
Answer:
Explanation:
The objective of this program we are to develop is to compute a C++ program and a flowchart that calculates a cost to replace all tablets and desktop computers in a business.
C++ Program
#include<iostream>
#include<iomanip>
using namespace std;
/*
⦁ // Name:
⦁ // Date:
⦁ // Program Name:
⦁ // Description:
*/
int main()
{
const double SalesTaxRate = .075, DiscountPercent = .10, FinanceCharge = .15;
const double TABLET = 320.00, DESKTOP = 800.00;
double total = 0.0, subTotal = 0.0,avg=0.0;
int numberOfTablets, numberOfDesktop;
cout << "-------------- Welcome to Computer Selling Company ------------------ ";
cout << "Enter number of tablets: ";
cin >> numberOfTablets;
cout << "Enter number of desktops: ";
cin >> numberOfDesktop;
subTotal = TABLET * numberOfTablets + numberOfDesktop * DESKTOP;
char choice;
cout << "Paying cash or financing: (c/f): ";
cin >> choice;
cout << fixed << setprecision(2);
if (choice == 'c' || choice == 'C')
{
cout << "You have choosen paying cash." << endl;
total = subTotal - subTotal * DiscountPercent;
cout << "Discount you get $" << subTotal * DiscountPercent<<endl;
cout << "Sales Tax: $" << SalesTaxRate * total << endl;
total = total + total * SalesTaxRate;
cout << "Total computers' Cost: $" << total << endl;
avg = total / (numberOfDesktop + numberOfTablets);
cout << "Average computer cost: $ " << avg << endl;
}
else if (choice == 'f' || choice == 'F')
{
cout << "You have choosen Finance option." << endl;
total = subTotal + subTotal * FinanceCharge;
cout << "Finance Charge $" << subTotal * FinanceCharge << endl;
cout << "Sales Tax: $" << SalesTaxRate * total << endl;
total = total + total * SalesTaxRate;
cout << "Total computers' Cost: $" << total << endl;
avg = total / (numberOfDesktop + numberOfTablets);
cout << "Average computer cost: $ " << avg << endl;
}
else
{
cout << "Wrong choice.......Existing.... ";
system("pause");
}
//to hold the output screen
system("pause");
} }
OUTPUT:
The Output of the program is shown in the first data file attached below:
FLOWCHART:
See the second diagram attached for the designed flowchart.
How many bits are reserved for the Transmission Control Protocol (TCP) flags?
evolution of management
Answer:
Evolution of Management and Evolution of Management Science. ... Evolution of the management thought is a process that began in the earlier days of humans. It began when the man found the need to live in the groups. Then, mighty men soon organized the masses and distributed them among the groups.
Explanation:
HOPE IT HELPS
Your answer → - Evolution of management thought is a process that began in the earlier days of humans. -
Write a pseudo code to calculate the area of a circle
Answer:
Here is a simple example of how to calculate the area of a circle using pseudo code:
// Define the radius of the circle
radius = 5
// Define the value of pi
pi = 3.14159
// Calculate the area of the circle using the formula A = pi * r^2
area = pi * radius * radius
// Print the area of the circle
print("The area of the circle is: " + area)
In this pseudo code, we first define the radius of the circle as radius = 5. We then define the value of pi as pi = 3.14159. Using the formula for the area of a circle A = pi * r^2, we calculate the area of the circle with area = pi * radius * radius. Finally, we print the area of the circle using the print() function.
Note that this is just a simple example of how to calculate the area of a circle using pseudo code. In a real program, you would typically input the radius from the user or from a data source, and would also include error handling and other features to make the program more robust.
Question 1
1 pts
Ideally, your user should never be more than_clicks or taps from the information they are
looking for.
Explanation:
so, what do you think ?
I am sure you have used a computer or a smart phone yourself.
how many clicks or taps do you want to do before you you get what you were looking for ?
hmmmm ?
as few a possible, right ?
ideally, of course, this is one (1) click or tap.
Which of the following is the best example of a purpose of e-mail?
rapidly create and track project schedules of employees in different locations
easily provide printed documents to multiple people in one location
quickly share information with multiple recipients in several locations
O privately communicate with select participants at a single, common location
Answer:
The best example of a purpose of email among the options provided is: quickly share information with multiple recipients in several locations.
While each option serves a specific purpose, the ability to quickly share information with multiple recipients in different locations is one of the primary and most commonly used functions of email. Email allows for efficient communication, ensuring that information can be disseminated to multiple individuals simultaneously, regardless of their physical location. It eliminates the need for physical copies or face-to-face interactions, making it an effective tool for communication across distances.
Explanation:
The movie polar express was critically acclaimed due to the unbelievably lifelike movements of Tom Hanks character
Answer:
False
Explanation:
In cell H7, insert the IFS function to identify the shipping cost based on the airport code and the applicable shipping rates in the range G2:G4. Use relative and mixed references correctly. Copy the function to the range H8:H35.
Use the values in the range A7:A8 to extend the list of years to the range A9:A11 and Use Ctrl + select A7: A8 and drag till A9: A11 : This will extend the list.
What is the format that should be applied to the cells?Apply format immediately to the cells A9: H11 below with the help of Auto Fill Handle. Using Auto fill button we can able to a cell format to the cell bellow of active cell by just double clicking on the auto fill button.
In cell B8, create a formula without using a function that multiplies the value in cell B7 by the value in cell B6 and then adds the value in B7. Update the cell reference to cell B6, from a relative reference to a mixed reference by making an absolute reference to row.
Therefore, Use the values in the range A7:A8 to extend the list of years to the range A9:A11 and Use Ctrl + select A7: A8 and drag till A9: A11 : This will extend the list.
Learn more about values on:
https://brainly.com/question/14316282
#SPJ1
What’s the output of the following code?
The output for the given program is 3.
What is a Computer Program?This refers to the set of instructions that a programmer gives to a computer that is converted from the source code to machine-readable format in order to perform a specific task.
Hence, it can be seen that from the given code:
C = 1
sum = 0
Then, the conditional statement while ( c < 10), is given which means that the next lines of code are valid if the values of c ranges from 1 to 9.
But if it is from 10 and above, it would terminate at that line.
Then, c= c + 2
Which means the value of c would be added to 2
Which is 1 + 2 = 3
Then sum is sum + the value of c which is 3
Recall that sum = 0
Thus, 0 + 3 is 3
Read more about computer programs here:
https://brainly.com/question/23275071
#SPJ1
What does NOT match with Agile Manifesto?
Select the correct option(s) and click Submit.
Processes and tools over individuals and interactions
Working software over comprehensive documentation
Responding to change over following a plan
ent...
ed!
e Ai...
Contract negotiation over customer collaboration
Answer:
yes
Explanation:
HURRY PLEASE
Maria is creating a game that will need a random number. Which line of code should be included in this program?
import random
print(random number)
1num = random
create random
Answer:
import random
Explanation:
Using the random module in python you could generate a random number.
Answer: Import
Explanation:
_________ of the right to privacy might argue that a department store with video cameras violates an implicit contract with its patrons, but does not violate a supposed right to privacy.
a. Those who are unaware
b. Proponents
c. Creators
d. Opponents
Answer: D. Opponents
Explanation:
give one major environmental and
one energy problem kenya faces as far as computer installations are concerned?
One considerable predicament that Kenya encounters pertaining to the utilization of computers is managing electronic waste (e-waste).
Why is this a problem?The mounting number of electronic devices and machines emphasizes upon responsibly discarding outdated or defective hardware in order to avoid environmental degradation.
E-waste harbors hazardous materials such as lead, mercury, and cadmium which can pollute soil and water resources, thereby risking human health and ecosystem sustainability.
Consequently, a significant energy drawback with computer use within Kenya pertains to the insufficiency or instability of electrical power supply.
Read more about computer installations here:
https://brainly.com/question/11430725
#SPJ1
You are designing a simple calculator program for young children to use. Right now, if they do something that the program didn’t expect, a message appears that reads, “User input deemed invalid.” What changes could you make so that the message would be more suitable for this audience?
In Python, you can use a try-except statement and raise an exception with a custom message.
For example:
try:
x = int(input())
except:
raise Exception("User input deemed invalid")
In JavaScript, you can try using a try-catch statement. You can use the 'throw' keyword to handle the error.
Why is internet censorship important ?
If it's not explain why not
If it is important explain why and how
Internet censorship is important because it can help to protect society from harmful or inappropriate content.
What is Internet Censorship?Internet censorship controls or suppresses what can be accessed, published, or viewed on the Internet. Governments, organizations, or individuals can carry it out.
Hence, it can be seen that Internet censorship can be implemented for various reasons, such as to protect national security, prevent the spread of misinformation or harmful content, protect children from inappropriate material, or maintain public order.
However, others argue that internet censorship can be used as a tool to suppress freedom of expression and the free exchange of ideas. They argue that censorship can be used to silence dissenting voices and to control the flow of information in society.
Read more about internet censorship here:
https://brainly.com/question/29235345
#SPJ1