Answers with Explanations:
5 Products/Services Needed by People These Days.
1. Face mask/Surgical mask - The use of face mask is considered a common sense. Most countries mandate people to wear this every time they go out.
2. Food Delivery service - To prevent contracting corona virus, most people prefer to have their food delivered than to dine out. This increases the demand for the food delivery service.
3. Alcohol - It has become an important habit recently to disinfect hands and other things. This is also being advertised on TV, thus many people carry it along with them.
4. Infrared Forehead Thermometer - Many establishments use this in order to quickly check the temperature of people entering.
5. Internet service - The increase use of this service is due to online learning and remote-working situations.
We all need different product and services. In this pandemic time, the products/services needed by the people are;
Face mask or Surgical mask
All round Food Delivery service
Humanitarian gestures by people or firms and also Good Tv programs that are educative and one can watch with kids them.
Infrared Forehead Thermometer
Internet service
A product is known to be a tangible goods that one buys or acquisition, consume, etc. Service is known as an intangible item.
A key reason for any new development is to give the best or new value to the customer and in this present time. Helping those who have lost their jobs, having mask mask, etc., readily available will go a long way to help.
Learn more about Products from
https://brainly.com/question/10873737
Write function that ask for input from a user. Use this input as input for the countdown function that we wrote using the while loop. If the user types 'end', the program exits, otherwise it keeps going.
Answer:
Written in Python:
def myfunction():
userinput = input("User input: ")
while(userinput != "end"):
countdown(userinput)
userinput = input("User input: ")
Explanation:
This line defines the function
def myfunction():
This line prompts user for user input
userinput = input("User input: ")
The following while loop checks if userinput is not "end". It continues execution until user input "end"
while(userinput != "end"):
countdown(userinput) If yes, the input is passed to the countdown function for execution
This line prompts user for another user input
userinput = input("User input: ")
Please note the above code segment assumes that countdown() function has already been written and defined
This is my paragraph
. The type of color is ude in this code line is ..............................Vector testGrades contains NUM_VALS test scores. Write a for loop that sets sumExtra to the total extra credit received. Full credit is 100, so anything over 100 is extra credit.
Question:
Vector testGrades contains NUM_VALS test scores. Write a for loop that sets sumExtra to the total extra credit received. Full credit is 100, so anything over 100 is extra credit. Ex: If testGrades = {101, 83, 107, 90}, then sumExtra = 8, because 1 + 0 + 7 + 0 is 8.
#include <iostream>
#include <vector>
using namespace std;
int main() {
const int NUM_VALS = 4;
vector<int> testGrades(NUM_VALS);
int i = 0;
int sumExtra = -9999; // Assign sumExtra with 0 before your for loop
testGrades.at(0) = 101;
testGrades.at(1) = 83;
testGrades.at(2) = 107;
testGrades.at(3) = 90;
/* Your solution goes here */
cout << "sumExtra: " << sumExtra << endl;
return 0;
}
Answer:
Replace /* Your solution goes here */ with the following lines of code
sumExtra = 0;
do{
if(testGrades.at(i) > 100){
sumExtra = sumExtra + (testGrades.at(i) - 100);
}
i++;
}
while(i<NUM_VALS);
Explanation:
In the complete question posted, the variables sumExtra and i have already been declared an initialized.
So, the first thing we do in the solution is:
set sumExtra to 0 using sumExtra = 0;
Then iterate through vector testGrades using i as the iterating variable
Here, I made used of a do while loop and the explanation is as follows:
do{
This line checks if current element of the vector is greater than 100
if(testGrades.at(i) > 100){
If yes, the extra digits above 100 is added to the sumExtra
sumExtra = sumExtra + (testGrades.at(i) - 100);
}
The counter is increased, here
i++;
}
The loop is continued while the iterating variable i is less than NUM_VALS which is 4
while(i<NUM_VALS);
What are the economic, social, political and cultural effects of the West Indian Day Parade
PLSSSS SOMEONE THIS IS DUE TODAY
Answer:
Explanation:
The Carnival goes on for five days in September starting on the last Thursday before Labor Day. Its culmination and grand finale is the parade on Labor Day, which runs along Eastern Parkway from Utica Avenue to Grand Army Plaza. The parade is a spectacularly colorful affair where the most elaborate and creative costumes will strike your imagination. Each masquerade camp or “mas” tries to win a cash prize by introducing their theme. Some of the more exciting themes of past parades include: Tribute to Bob Marley, Jewels of the City, Seagate and Caribbeans Unite. The most coveted titles of the parade are the titles of king and queen. Naturally, their costumes are the most stunning.
Of course, the Carnival wouldn’t have its tremendous appeal without the variety of traditional Caribbean music and food made available. Attendees can enjoy various types of Caribbean music such as calypso, which evolved out of traditional folk music of Trinidad and Tobago; soca, a contemporary offsoot of calypso; reggae; rap; and the
Assume that we need to transmit a 1,440 X
900 uncompressed color image (using 16 bits
per pixel) over a computer network in less than
0.01 second. What is the minimal necessary
line speed to meet this goal?
Answer:
The answer is "[tex]247.19 \ \frac{MB}{sec}[/tex]".
Explanation:
over all pixels [tex]= 1,440 \times 900[/tex]
[tex]= 1,296,000\\\\= 1,296 \times 10^3[/tex]
[tex]time = 0.01 \ sec \\[/tex]
formula of time:
[tex]time= \frac{bits}{speed} \\\\speed= \frac{bits}{time}[/tex]
[tex]=\frac{1,296 \times 10^3 \times 16}{0.01}\\\\=20,736 \times 10^5 \ \frac{bytes}{second}\\\\=\frac{20,736 \times 10^5}{8} \ \frac{bytes}{second}\\\\= 2,592 \times 10^5 \ \frac{bytes}{second}\\\\= 247.19 \ \frac{MB}{sec}[/tex]
Help me! I’ll mark you brainly ! Please help me I need this now
Explanation: For number 3 I would say shade and darkness.
Which of these four things should not be included in a problem statement?
a
Creating a sketch
b
planning the process
c
Identify and validate
d
Understanding Criteria
A user can view
and
in the Reading pane.
Answer:
sorry,but I can't understand your question.
Answer:
email messaging and attachments
Explanation:
2023 edg 100%
Which XXX and YYY correctly output the smallest values? Vector user Vals contains integers (which may be positive or negative). Choices are in the form XXX/YYY. // Determine smallest (min) value int minval; XXX for (i = 0; i < uservals.size(); ++i) { if (YYY) { minval - userVals.at(i); cout << "Min: " << minval << endl; minval - uservals.at(); /uservals.at(i) < minval minval = 0; /userval > minval minval - uservals.at(); /uservals.at(i) > minval minval - 0; /userval < minval
Answer:
The answer is "minVal - userVals.at(0); /userVals.at(i) < minVal "
Explanation:
In the question, it uses minVal instead of XXX to hold the very first arra(userVal) element, and rather than YYY you choose a conditional statement to check which integer is lower than minVal to index of loop increment. It changes the value of the minVal if the condition is valid. It's completely different if we talk about another situation.
X333: countElements Given an array of integers and an integer target, return a count of the number of times the target value occurs in the array. Examples: countElements((25, 42, 18, 25, 38, 96, 25, 25〉, 25) -> 4 countElements (110, 20, 30, 40, 50, 99)-> θ 1 public int countElements (int[] nums, int target) 2 {34 }5
Answer:
The method written in java is as follows:
public static int countElements(int[] nums, int target){
int count=0;
for(int i =0;i<nums.length;i++){
if(nums[i] == target){
count++;
}
}
return count;
}
Explanation:
The method definition is not clear in the question you posted; so, I'll answer the question from scratch
This defines the method
public static int countElements(int[] nums, int target){
This initializes count to 0
int count=0;
This iterates through the array
for(int i =0;i<nums.length;i++){
This checks if the current array element is same as the target
if(nums[i] == target){
If yes, the count variable is incremented by 1
count++;
}
}
This returns the count
return count;
}
See attachment for complete program which includes the main
An IP packet to be transmitted by Ethernet is 60 bytes long, including all its headers. If LLC is not in use, is padding needed in the Ethernet frame, and if so, how many bytes?
Answer:
No padding
Explanation:
64 bytes is taken as the minimum Ethernet frame, this encompass checksum as well as addresses in the Ethernet frame header and length field. while the maximum Ethernet frame is 1518 bytes, any minimumEthernet frame that is short compare to that will need receiving stations to interpret it as a collision. The question specified that the IP packet to be transmitted by Ethernet as 60 bytes long. The header fields here can occupy 18 bytes, Then total frame size becomes 78 bytes. With the total frame size of 78 bytes(60 bytes+ 18 bytes) we can see it has exceeded the 64-byte minimum. Hence there is no padding used.
Information technology
Answer:
Study or use of systems
Explanation:
especially, computers, telecommunications for storing retrieving and sending some informations
Answer:
Information technology is the use of computers to store, retrieve, transmit and manipulate data, or information, often in the context of business or other enterpise.
What is payload?
a block of data inside the packet
a block of data transmitted across a network
the maximum amount of data a network can transmit
a 32-bit numeric address
Answer:
a block of data inside the packet
Allison is writing a program in Java and keeps getting an error. Which line of code is causing the error?
A. Int a = 0, b = 3, c;
B. for(i = 0, i <= 13, i++) {
C. c = (a * 2) + i;
D. System.out.println(c);
}
B will cause an error.
Allison needs to declare a type for variable i and use semi-colons.
The for statement should be for(int i = 0; i <=13; i++){
Help me will give brainliest. So can you do number 2 about gaming please
Answer: Some insights big data can provide about my hobby, gaming, is what year a certain game was created or the number of purchases made in a year. These insights can make things better for me by knowing what versions to receive first and what's the best game to get. Although, some ways big data can make it worse is by not understanding what the information is saying due to a lack of data or context. They can also make it worse by data and system errors, causing problems for me due to the decisions I make off of it.
I hope this helped!
Good luck <3
Assume the following variable declaration exists in a program:
double number = 123.456
Write a statement that uses System.out.printf to display the value of the number variable padded with leading zeros, in a field that is eight spaces wide, rounded to one decimal place. (Do not use comma separators).
Answer:
System.out.printf("%08.1f", number);
Explanation:
The complete lines of code is
public class MyClass {
public static void main(String args[]) {
double number = 123.456;
System.out.printf("%08.1f", number);
}
}
This line declares and initializes number to 123.456
double number = 123.456;
The second statement is analyzed as thus:
System.out.printf -> Used to print floating point numbers
"%08.1f" ->
%08 implies that the field is 8 field wide and all leading empty spaces would be replaced with 0.
.1f implies that the number be approximated to 1 decimal place
number -> The variable to be printed
Answer:
Explanation:
Answer:
System.out.printf("%08.1f", number);
Explanation:
The complete lines of code is
public class MyClass {
public static void main(String args[]) {
double number = 123.456;
System.out.printf("%08.1f", number);
}
}
This line declares and initializes number to 123.456
double number = 123.456;
The second statement is analyzed as thus:
System.out.printf -> Used to print floating point numbers
"%08.1f" ->
%08 implies that the field is 8 field wide and all leading empty spaces would be replaced with 0.
.1f implies that the number be approximated to 1 decimal place
Which of the following situations is least likely fair use
Answer:
Is there more to the question or is that it?
Which of the following is part of the process of publishing a website?
advertising a website on a search engine
printing a copy of all website pages
uploading its web pages to the host directory
creating web pages using templates
Part of the process of publishing a website is uploading its web pages to the host directory. The correct option is c.
What is a website?A website is a collection of web pages that typically contain hyperlinks that provide information to users, readers, and audiences.
The websites mentioned above are the most reputable and always contain accurate and legal information, with no fraudulent activities.
A website is a collection of linked web pages (along with the resources they contain) that share a unique domain name. Each web page of a given website contains explicit links—usually in the form of clickable text—that allow the user to navigate from one page of the website to another.
Therefore, the correct option is c, uploading its web pages to the host directory.
To learn more about the website, refer to the below link:
https://brainly.com/question/1009234
#SPJ2
Lab9A: Warmup. Write a program that contains three methods: Method max (int x, int y, int z) returns the maximum value of three integer values. Method min (int X, int y, int z) returns the minimum value of three integer values. Method average (int x, int y, int z) returns the average of three integer values. Note: for Java and C#, these methods must be public and static. Prompt the user for three numbers, then call these methods from main to print out the minimum, maximum and average of numbers that the user entered. Your program should behave like the sample output below. Sample output #1 Enter number 1: 5 Enter number 2: 9 Enter number 3: 2 Min is 2 Max is 9 Average is 5.33333 Sample output 2 Enter number : 45 Enter number 2 : 11 Enter number 3: -3 Min is-3 Max is 45 Average is 17.6667
import java.util.Scanner;
import java.util.Arrays;
public class JavaApplication30 {
public static int max(int x, int y, int z){
int[] arr = {x, y, z};
Arrays.sort(arr);
return arr[2];
}
public static int min(int x, int y, int z){
int[] arr = {x, y, z};
Arrays.sort(arr);
return arr[0];
}
public static double average(int x, int y, int z){
return (double) (x + y + z) / 3;
}
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter your first number");
int x = scan.nextInt();
System.out.println("Enter your second number");
int y = scan.nextInt();
System.out.println("Enter your third number");
int z = scan.nextInt();
System.out.println("Min is "+min(x,y,z));
System.out.println("Max is "+max(x,y,z));
System.out.println("Average is "+average(x,y,z));
}
}
I hope this helps! If you have any more questions, I'll try my best to answer them.
Who wants to play nitro type with me. My user is thievesGuildcuu
Answer:
I can
Explanation:
Answer:
Sure.
My user Name is: Queen Void.
In a student scheduling program, a variable HasFreePeriod is set as True or False. This variable is an example of?
an abstract data type.
a user defined type.
an array.
a scalar
Answer: a user defined type
Explanation:
Answer:
Hi
Explanation:
The answer would be A User Defined Type
The one who answered before me is right as well
Which of the following is NOT completed during the mastering process?
A)finalizing titles
B)sound mix added
C)special effects created
D)special effects added
Answer:
C
I need more context but I think this answer is right.
Dan is working on a printing project. Which important points must he consider while printing? document size texture printing stock color mode He must print in CMYK because that color mode retains all the colors. arrowRight He must keep the font size at 12 points to maintain proper readability. arrowRight He must use paper that’s glossy on one side and uncoated on the other to produce fine-quality prints. arrowRight He must avoid printing on colored stock to avoid distortion of the ink color.
Answer:
Down below
Explanation:
Color Mode - He must print in CMYK because that color mode retains all the colors.
Document Size - He must keep the font size at 12 points to maintain proper readability.
Texture - He must use paper that’s glossy on one side and uncoated on
the other to produce fine-quality prints.
Printing Stock - He must avoid printing on colored stock to avoid distortion of the ink color.
Colour Mode—He must print in CMYK because that colour mode retains all the colours. Document Size—He must keep the font size at 12 points to maintain proper readability. Texture—He must use paper that’s glossy on one side and uncoated on the other to produce fine-quality prints. Printing Stock—He must avoid printing on coloured stock to avoid distortion of the ink colour.
What is Texture?Felt-textured papers are frequently described as soft and having a woven or textile-like appearance.
In menus, stationery, and when searching for an artistic flourish to go with a design or image, the paper's surface can be employed to great effect when printing images.
Thus, the statement are matched above.
For more details about textured, click here:
https://brainly.com/question/14989874
#SPJ5
Input an int greater than 0 and print every multiple of 5 between it and 0 inclusive in descending order. If the number is not greater than 0 print "error". Print all numbers on one line with single spaces in between.
Example:
Enter a positive integer:
42
40 35 30 25 20 15 10 5 0
import java.util.Scanner;
public class JavaApplication42 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter a positive integer:");
int num = scan.nextInt();
if (num < 0){
System.out.println("error");
}
else{
while(num >=0){
if (num %5 == 0){
System.out.print(num+" ");
}
num--;
}
}
}
I hope this helps!
The program is an illustration of loops.
Loops are used to carry out repetition operations;
The program in Python, where comments are used to explain each line is as follows:
#This gets a positive integer from the user
num = int(input("Enter a positive integer: "))
#If the input is not greater than 0
if num <= 0:
#This prints Error
print("Error")
#If otherwise
else:
#This iteration is repeated until 0 is printed
while num>=0:
#If the current number is a multiple of 5
if num%5 == 0:
#The number is printed
print(num,end=" ")
#This decreases the number by 1, until it gets to 0
num-=1
The above program is implemented using a while loop
Read more about similar programs at:
https://brainly.com/question/20349503
Write a multi-way if statement that compares the double variable pH with 7.0 and makes the following assignments to the bool variables neutral, base, and acid:
Answer:
try:
pH = float(input("Enter number between 0 to 14: "))
except ValueError:
print("input must be a number")
if pH < 7:
print("pH is Acidity")
elif pH == 7:
print("pH is neutral")
else:
print("pH is Base/alkaline")(
Explanation:
The try and except statement is used to check if the input is a number, if its not, the print statement is displayed. The nested if statement compares the pH input to know if it is an acid, base or neutral.
Write a logical expression using only and, or and not that is equivalent to the Exclusive NOR (XNOR) gate on 2 inputs, called in1, in2: If both inputs are True or both inputs are False (i.e. inputs have same value), then your expression should evaluate to True. Otherwise your expression should evaluate to False.
Answer:
in1 = int(input("Enter value one: "))
in2 = int(input("Enter value two: "))
print(in1,type(in1), in2, type(in2))
if (in1 <=0 and in2 <=0) or (not in1 <=0 and not in2<=0):
print( True)
else:
print( False)
Explanation:
The if statement of the python source code is used to implement an Exclusive-NOR logic gate that gives a true or high value if both inputs are either true or false.
Shrink-wrap, box-top, and click-wrap agreements are inherent to e-commerce. How you feel about them often depends on whether you are the vendor or purchaser. What are the best practices to assure shrink-wrap, box-top, and click-wrap agreements are legal? What are the best ethical practices that the e-commerce industry should adopt?
Answer:
Shrink-wrap, Box-top, and Click-wrap Agreements
a) The best practices to assure that shrink-wrap, box-top, and click-wrap agreements are legal include
1) having e-commerce terms and conditions separate from the normal trade terms and conditions,
2) ensuring that customers agree to the terms before entering into a transaction, and
3) laying the code of conduct for all visitors interacting with your site or doing any business transaction on your site.
b) The best ethical practices that the e-commerce industry should adopt are:
1) Put additional layers of protection like a web application firewall to their websites.
2) Ensure they always adhere to PCI (Payment Card Industry) compliance guidelines.
3) They should not store customers' data which they do not need.
4) Ensure privacy and security of customers' data.
5) Establish trust by safeguarding intellectual property rights.
6) Consider some environmental issues (customers care about them).
Explanation:
a) Websites' Terms and Conditions (T&C) establish some form of legal contract between the organization and its clients.
b)To ensure that organizations that process, store, or transmit credit card information maintain secure online environment, they are required to comply with PCI DSS. It is a set of Payment Card Industry requirements for all organizations involved in the use of online cards for payment for their goods and services.
Which best explains the workplaces of employees in the Energy career cluster?
Employees work outdoors.
Employees can work in a wide variety of places.
Employees can work in a limited number of places.
Employees work indoors.
Answer: It’s Letter (B) the other ones just don’t fit.
Explanation:
Mark me as brainlest please?!!
Answer:
b
Explanation:
There is no danger of data collision with this topology.
bus
mesh
ring
star
Answer:
ring
Explanation:
We study computer____to become familiar with how circuits and signals collaborate to create working computer systems.
A) architecture
B) organization
C) layers
D) systems of linear equations
Answer:
Option B (Organization) would be the correct answer.
Explanation:
It communicates about either the simple interface provided to either the compiler as well as the OS by the digital hardware to accommodate customers' requirements. Computer company struggles through computer program hardware components, including input machines, processing elements (CPU), storage, as well as main memory systems.The other options offered aren't relevant to the scenario presented. So, the solution here is just the right one.