Answer: jpeg becauuse itss correct
What is the processing speed of the first generation computer ?
Answer:
Millisecond
Explanation:
We might know millisecond is very small and it is
not used now as computer speed
Write a query to display (product_class_desc, product_id, product_desc, product_quantity_avail ) and Show inventory status of products as below as per their available quantity: a. For Electronics and Computer categories, if available quantity is <= 10, show 'Low stock', 11 <= qty <= 30, show 'In stock', >= 31, show 'Enough stock' b. For Stationery and Clothes categories, if qty <= 20, show 'Low stock', 21 <= qty <= 80, show 'In stock', >= 81, show 'Enough stock' c. Rest of the categories, if qty <= 15 – 'Low Stock', 16 <= qty <= 50 – 'In Stock', >= 51 – 'Enough stock' For all categories, if available quantity is 0, show 'Out of stock'. Hint: Use case statement.
Answer:
Assuming we have the following tables:
products: contains information about products
product_classes: contains information about product classes and their descriptions
inventory: contains information about the inventory status of each product
Here is the SQL query to display the requested information:
Explanation:
SELECT pc.product_class_desc, p.product_id, p.product_desc, i.product_quantity_avail,
CASE pc.product_class_desc
WHEN 'Electronics' THEN
CASE
WHEN i.product_quantity_avail = 0 THEN 'Out of stock'
WHEN i.product_quantity_avail <= 10 THEN 'Low stock'
WHEN i.product_quantity_avail <= 30 THEN 'In stock'
ELSE 'Enough stock'
END
WHEN 'Computer' THEN
CASE
WHEN i.product_quantity_avail = 0 THEN 'Out of stock'
WHEN i.product_quantity_avail <= 10 THEN 'Low stock'
WHEN i.product_quantity_avail <= 30 THEN 'In stock'
ELSE 'Enough stock'
END
WHEN 'Stationery' THEN
CASE
WHEN i.product_quantity_avail = 0 THEN 'Out of stock'
WHEN i.product_quantity_avail <= 20 THEN 'Low stock'
WHEN i.product_quantity_avail <= 80 THEN 'In stock'
ELSE 'Enough stock'
END
WHEN 'Clothes' THEN
CASE
WHEN i.product_quantity_avail = 0 THEN 'Out of stock'
WHEN i.product_quantity_avail <= 20 THEN 'Low stock'
WHEN i.product_quantity_avail <= 80 THEN 'In stock'
ELSE 'Enough stock'
END
ELSE
CASE
WHEN i.product_quantity_avail = 0 THEN 'Out of stock'
WHEN i.product_quantity_avail <= 15 THEN 'Low stock'
WHEN i.product_quantity_avail <= 50 THEN 'In stock'
ELSE 'Enough stock'
END
END AS inventory_status
FROM products p
JOIN product_classes pc ON p.product_class_id = pc.product_class_id
JOIN inventory i ON p.product_id = i.product_id;
What is an accessory?
A.a security setting that controls the programs children can use
B.a tool that provides proof of identity in a computing environment
C.a set of programs and applications that help users with basic tasks
D.a set of gadgets and widgets that makes it easier to create shortcuts
Answer:
C
Explanation:
Accessories are in Microsoft windows, a set of programs and applications that help users with some basic tasks
PLS HELP: Identify the correct CSS syntax to link an external style sheet??
Answer:
See Explanation
Explanation:
This question required options. Since there are none, I'll answer on a general terms.
To link to an external style sheet in CSS, use the following syntax:
<link rel = "stylesheet" type = "text/css" href = "link to css file">
As seen above, the link tag is used to achieve this tax.
The rel attributes shows the relationship between the css file and the html file.
In this case, the css file is a stylesheet; hence, rel = "stylesheet"
Next, is the type attribute which shows the content of the file to be linked. In other words, the file type
Lastly, the link to the css file.
Take for instance, the file name is example.css and it is in the same directory as the current document, the following will be used.
href = "example.css"
However, if example.css is in a different directory, the link to the file directory will be stated.
Conclusively, one syntax to use for a file named example.css is:
<link rel = "stylesheet" type = "text/css" href = "exampl.css">
In order to average together values that match two different conditions in different ranges, an excel user should use the ____ function.
Answer: Excel Average functions
Explanation: it gets the work done.
Answer:
excel average
Explanation:
List the factors that affect the CPU performance?
what is the difference between onlinenews and printed newspaper
Answer:
The difference between onlinenews and printed newspaper are that one of them is representing topics about the world and the other one just basically proves facts about why the world is a nasty place at this point.
Explanation:
Answer:
I would just think the materiel on what it is looking online news is still the same as newspaper news just one is digital and the other is paper. But everything is still the same you would just find more information on online newspaper. Hope this helps :)
Explanation:
2. A computer is using a fully associative cache and has 216 bytes of memory and a cache of 64 blocks, where each block contains 32 bytes.(15 points) a. How many blocks of main memory are there
Answer:
2048 blocks
Explanation:
From the information given:
The memory size of a computer with fully associative cache = 2¹⁶ bytes
The no. of blocks in a single cache = 64
In which each block size = 32 bytes
The no of blocks in the main memory = memory size ÷ block size
The no of blocks in the main memory = 2¹⁶ ÷ 32
The no of blocks in the main memory = 2¹⁶ ÷ 2⁵
The no of blocks in the main memory = \(2^{16-5}\)
The no of blocks in the main memory = 2¹¹
The no of blocks in the main memory = 2048 blocks
"Wake up to reality! Nothing ever goes as planned in this world. The longer you live, the more you realize that in this reality only pain, suffering and futility exist.
Where is this quote from
Answer:
Naruto Shippuden and from madara uchiha
Explanation:
Answer:
Madara to Obito in Naruto Shippuden after Obito regains conscious from passing out under the rock from the third graet ninja war
Explanation:
Which of the following tactics can reduce the likihood of injury
The tactics that can reduce the likelihood of injury in persons whether at work, at home or wherever:
The Tactics to reduce injury risksWearing protective gear such as helmets, knee pads, and safety goggles.
Maintaining proper body mechanics and using correct lifting techniques.
Regularly participating in physical exercise and strength training to improve overall fitness and coordination.
Following traffic rules and wearing seatbelts while driving or using a bicycle.
Ensuring a safe and well-lit environment to minimize the risk of falls or accidents.
Using safety equipment and following guidelines in sports and recreational activities.
Being aware of potential hazards and taking necessary precautions in the workplace or at home.
Read more about injuries here:
https://brainly.com/question/19573072
#SPJ1
The binary number system is suitable for computer system. Give reason.
Answer: It enables devices to store, access, and manipulate all types of information directed to and from the CPU or memory.
THIS DOES NOT BELONG TO ME!
Explanation:
. Write a program to calculate the square of 20 by using a loop
that adds 20 to the accumulator 20 times.
The program to calculate the square of 20 by using a loop
that adds 20 to the accumulator 20 times is given:
The Programaccumulator = 0
for _ in range(20):
accumulator += 20
square_of_20 = accumulator
print(square_of_20)
Algorithm:
Initialize an accumulator variable to 0.
Start a loop that iterates 20 times.
Inside the loop, add 20 to the accumulator.
After the loop, the accumulator will hold the square of 20.
Output the value of the accumulator (square of 20).
Read more about algorithm here:
https://brainly.com/question/29674035
#SPJ1
What are Render Modes? How different render modes can be used in different contexts?
Answer:
Rendering is the process that allows obtaining digital images taken from the three-dimensional model, through dedicated software. These images are intended to photorealistically simulate environments, materials, lights, objects in a project and a 3D model. In Computer Graphics Imagery , this process is developed in order to imitate a 3D space formed by polygonal structures, light behavior, textures, materials (water, wood, metal, plastic, cloth, etc.) and animation, simulating environments and credible physical structures. One of the most important parts of the programs dedicated to Computer Graphics Imagery are the rendering engines, which are capable of performing complex techniques or algorithms such as radiosity, raytrace (ray tracer), alpha channel, reflection, refraction or global illumination.
Explanation:
Rendering is a complex calculation process developed by a computer equipment designed to generate a 2D image from a 3D scene. Real-time rendering is preferably used in games and interactive graphics, it is made up of images or animations rendered at a speed that makes the fact that the computer takes time to calculate them imperceptible to the end user, therefore there will be graphic hardware dedicated to ensure rapid image processing. Offline rendering is used in those cases in which a very high speed of use of the images created is not so important, as it happens in animation works or those whose complexity and level of photorealism are much higher. Another of the applications of 3D rendering is in the world of graphic design, since it gives the designer an almost unlimited range of perspectives on the object he is designing. In addition to this, it allows a complete redesign from an initial image. Thus, designers have a tool that allows them to unleash their imagination.
You are a systems analyst. Many a time have you heard friends and colleagues complaining that their jobs and businesses are being negatively impacted by e-commerce. As a systems analyst, you decide to research whether this is true or not. Examine the impact of e-commerce on trade and employment/unemployment, and present your findings as a research essay.
E-commerce, the online buying and selling of goods and services, has significantly impacted trade, employment, and unemployment. This research essay provides a comprehensive analysis of its effects.
What happens with e-commerceContrary to popular belief, e-commerce has led to the growth and expansion of trade by breaking down geographical barriers and providing access to global markets for businesses, particularly SMEs. It has also created job opportunities in areas such as operations, logistics, customer service, web development, and digital marketing.
While certain sectors have experienced disruption, traditional businesses can adapt and benefit from e-commerce by adopting omni-channel strategies. The retail industry, in particular, has undergone significant transformation. E-commerce has empowered small businesses, allowing them to compete with larger enterprises and fostered entrepreneurial growth and innovation. However, there have been job displacements in some areas, necessitating individuals to transition and acquire new skills.
Read mroe on e-commerce here https://brainly.com/question/29115983
#SPJ1
Product reviews are written by:
OA. people with specialized knowledge.
B. clever advertising copywriters.
C. consumers who may use the product.
OD. people on social networking sites.
Product reviews can be written by all of the above. People with specialized knowledge, clever advertising copywriters, consumers who may use the product and people on social networking sites can all write product reviews.
1. Railroad tracks present no problems for a motorcyclist.
A. O TRUE
B. O FALSE
2. Which of the following is considered to be a vulnerable road user?
A. Bicyclists
B. Motorcyclists
C. Pedestrians
D. all of the above
Answer: 1 is A
2 is D
Explanation:
A vulnerability assessment solution is hosted in the cloud. This solution will be used as an accurate inventory data source for both the configuration management database and the governance, risk, and compliance tool. An analyst has been asked to automate the data acquisition. Which of the following would be the BEST way to acquire the data?
API or SOAR?
Since the analyst has been asked to automate the data acquisition process, the best way to acquire this data is: C. API.
What is an API?API is an abbreviation for application programming interface and it can be defined as a software application intermediary (computing interface) that is made up of tools, set of executable codes, and protocols that is designed and developed to help software applications and computers to function properly, as well enable the exchange of data.
In Computer technology, an application programming interface (API) allows a computer network device and a cloud-based server or two cloud-based servers to share data and functionality within the cloud.
In conclusion, a software developer is saddled with the responsibility of integrating an application programming interface (API) into the software.
Read more on API here: brainly.com/question/20910074
#SPJ1
Complete Question:
A vulnerability assessment solution is hosted in the cloud. This solution will be used as an accurate inventory data source for both the configuration management database and the governance, risk, and compliance tool. An analyst has been asked to automate the data acquisition. Which of the following would be the BEST way to acquire the data?
A. CSV export
B. SOAR
C. API
D. Machine learning
All of the following are true of using the database approach to managing data except Group of answer choices Decentralized management of data Minimal data redundancy Data integration and sharing
Answer:
Decentralized management of data
Explanation:
The database management approach is one approach based on the improved standard file solution with the use of DBMS and allows for the stimulus access of data with a large number of users.Use the code above to write a program that, when run, draws 1000 points at random locations on a frame as it runs. For an added challenge, have the 1000 points be randomly red, green, or blue.
The code to write a program that, when run, draws 1000 points at can be in explanation part.
What is coding?We connect with computers through coding, often known as computer programming. Coding is similar to writing a set of instructions because it instructs a machine what to do.
You can instruct computers what to do or how to behave much more quickly by learning to write code.
The program for the given scenario can be:
import simplegui
import random
def draw_handler(canvas):
for x in range(1000):
colorList = ["Yellow", "Red", "Purple", "White", "Green", "Blue", "Pink", "Orange"]
c = random.choice(colorList)
x = random.randint(1,600)
y = random.randint(1,600)
canvas.draw_point([x, y], c)
frame = simplegui.create_frame('Testing', 600, 600)
frame.set_canvas_background("Black")
frame.set_draw_handler(draw_handler)
frame.start()
Thus, this is the code for the given scenario.
For more details regarding coding, visit:
https://brainly.com/question/17293834
#SPJ9
Your question seems incomplete, the missing part is:
ode practice edhisive
You should see the following code in your programming environment:
Import simplegui
Def draw_handler(canvas):
# your code goes here
Frame = simplegui.creat_frame(‘Testing’ , 600, 600)
Frame.set_canvas_background(“Black”)
Frame.set_draw_handler(draw_handler)
Frame.start()
Do you think it's easier to be mean online than offline? why?
Answer:
Yes because on online we can talk all we want and they don't know us irl so it's funny lol
Explanation:
Types of information available on the internet?
Answer:
The Internet carries a vast range of information resources and services, such as the inter-linked hypertext documents and applications of the World Wide Web (WWW), electronic mail, telephony, and file sharing.
Explanation:
John typed 350 word in 25 minute. What is his typing speed.
Answer:
14 works per min
Explanation:
350 divided by 25 equals 14
editing and execution of r code is best done in what tool? 1 point jupyter notebooks / jupyterlab rstudio notepad both a and b are correct
The correct answer is option (d) Both a and b are correct.
Why is this true?Both Jupyter Notebooks/JupyterLab and RStudio are popular tools for editing and executing R code.
While some users may prefer one tool over the other, both are widely used and can be effective for working with R.
Notepad, on the other hand, is a basic text editor and may not have the same level of functionality or convenience as the other two tools specifically designed for working with R.
Therefore, the correct answer is option (d) Both a and b are correct.
Read more about coding here:
https://brainly.com/question/23275071
#SPJ1
Hey tell me more about your service
Answer:
look below!
Explanation:
please add more context and I’ll be happy to answer!
System testing – During this stage, the software design is realized as a set of programs units. Unit testing involves verifying that each unit meets its specificatio
System testing is a crucial stage where the software design is implemented as a collection of program units.
What is Unit testing?Unit testing plays a vital role during this phase as it focuses on validating each unit's compliance with its specifications. Unit testing entails testing individual units or components of the software to ensure their functionality, reliability, and correctness.
It involves executing test cases, evaluating inputs and outputs, and verifying if the units perform as expected. By conducting unit testing, developers can identify and rectify any defects or issues within individual units before integrating them into the larger system, promoting overall software quality.
Read more about System testing here:
https://brainly.com/question/29511803
#SPJ1
In Scratch, what option in the Sounds tab would you select if you wanted to use a sound file already on your local computer?
Choose a Sound
Record
Surprise
Upload
Answer:
upload
Explanation:
For this assignment, you will code one song in EarSketch, each incorporating the following Python commands:
You must use some form of randomization in your songs, using the randint() function.
You must use a conditional statement in your songs, using an if, else, elif statement.
You must use both of the EarSketch functions fitMedia() and setEffect() for an effect in your script (such as a fade or distortion).
You must use string operations (concatenation or splicing) to create your own beat, using the EarSketch function makeBeat().
You must use for loops to add repetition to your code
Each song must be at least 16 measures long.
Each song should have at least three tracks.
Each song should include different elements unique to a music genre (different beats, instruments, or sound clips that would allow a listener to tell songs apart from one another).
Answer:
edit your question and send a screenshot of the question
Explanation:
What are some options available when inserting an address block? Check all that apply. previewing postal code full address label margins matching fields company name paragraph formatting
Answer:
A. previewing
B. postal code
C. full address
E. matching fields
F. company name
Answer: A, B, C, E, F
Explanation:
Your welcome :)
What is one lighting technique that is used to simulate a strong sun?
Answer:
Heat lamp.
Explanation:
Like the sun, a heat lamp gives off light and heat, mimicking the actions of a sun. To simulate a strong sun, turn the heat lamp up higher to create brighter light and warmer heat.
Hope this helps!
In this lab, you use what you have learned about parallel arrays to complete a partially completed C++ program. The program should:
Either print the name and price for a coffee add-in from the Jumpin’ Jive Coffee Shop
Or it should print the message Sorry, we do not carry that.
Read the problem description carefully before you begin. The file provided for this lab includes the necessary variable declarations and input statements. You need to write the part of the program that searches for the name of the coffee add-in(s) and either prints the name and price of the add-in or prints the error message if the add-in is not found. Comments in the code tell you where to write your statements.
Instructions
Study the prewritten code to make sure you understand it.
Write the code that searches the array for the name of the add-in ordered by the customer.
Write the code that prints the name and price of the add-in or the error message, and then write the code that prints the cost of the total order.
Execute the program by clicking the Run button at the bottom of the screen. Use the following data:
Cream
Caramel
Whiskey
chocolate
Chocolate
Cinnamon
Vanilla
A general outline of how you can approach solving this problem in C++.
Define an array of coffee add-ins with their corresponding prices. For example:
c++
const int NUM_ADD_INS = 7; // number of coffee add-ins
string addIns[NUM_ADD_INS] = {"Cream", "Caramel", "Whiskey", "chocolate", "Chocolate", "Cinnamon", "Vanilla"};
double prices[NUM_ADD_INS] = {1.50, 2.00, 2.50, 1.00, 1.00, 1.25, 1.00}
What is the program about?Read input from the user for the name of the coffee add-in ordered by the customer.
c++
string customerAddIn;
cout << "Enter the name of the coffee add-in: ";
cin >> customerAddIn;
Search for the customerAddIn in the addIns array using a loop. If found, print the name and price of the add-in. If not found, print the error message.
c++
bool found = false;
for (int i = 0; i < NUM_ADD_INS; i++) {
if (customerAddIn == addIns[i]) {
cout << "Name: " << addIns[i] << endl;
cout << "Price: $" << prices[i] << endl;
found = true;
break;
}
}
if (!found) {
cout << "Sorry, we do not carry that." << endl;
}
Calculate and print the total cost of the order by summing up the prices of all the add-ins ordered by the customer.
c++
double totalCost = 0.0;
for (int i = 0; i < NUM_ADD_INS; i++) {
if (customerAddIn == addIns[i]) {
totalCost += prices[i];
}
}
cout << "Total cost: $" << totalCost << endl;
Read more about program here:
https://brainly.com/question/26134656
#SPJ1