Answer:
Temporary Internet Files folder
Explanation:
Assuming that your friend is using the Microsoft Windows 10 operating system, then this document would have gotten saved in the Temporary Internet Files folder within the operating system. This folder can be located within the following address in the operating system
C:\Users\[username]\AppData\Local\Microsoft\Windows\INetCache
Navigating to this address would help you find the folder and inside that should be the Microsoft Word document that you have used in your Internet Explorer Browser. This folder is where all browser files get saved when they are not explicitly downloaded to a specific folder but are still used within the browser.
Draw a Hierarchical input process output ( HIPO ) chart to represent a high - level view of the functions of the proposed system .
The format to use in drawing the Hierarchical input process output chart to show a high - level view of the functions of the proposed system is given in the image attached.
What is hierarchical input process output?An HIPO model is known to be a form of hierarchical input process output model that helps in systems analysis design and also in documentation .
Note that it is often used for depicting the modules of a system based on the use of hierarchy and for saving each module and thus by following the method used in the image attached, one can draw a Hierarchical input process output ( HIPO ) chart to represent a high - level view of the functions of the proposed system.
Learn more about HIPO from
https://brainly.com/question/2665138
#SPJ1
Input two numbers and work out their sim, subtraction, multiplication, division, remainder, average and sum of the squares of the numbers.
def ultimate_math (num1, num2):
try:
array_num = [num1, num2]
print (num1 + num2)
print (num1 - num2)
print (num1 * num2)
print (num1 / num2)
print (num1 % num2)
print ((num1 + num2) / (len(array_num)))
print ((num1**2) + (num2**2))
except ValueError:
return "Invalid Input"
user_num1 = float (input (" Please enter a num: "))
user_num2 = float (input (" Please enter a second num: "))
print (ultimate_math (user_num1, user_num2))
Question 21
What is the minimum sum-of-products expression for the following Kmap?
AB
00
01
11
10
CD
00
1
0
01
0
0
0
O
11
0
0
1
1
10
1
1
1
1
Answer:
1010010010001010
Explanation:
0100101010010101010
The following question uses a robot in a grid of squares. The robot is represented as a triangle, which is initially facing toward the top of the grid. Consider the goal of modifying the code segment to count the number of squares the robot visits before execution terminates. Which of the following modifications can be made to the code segment to correctly count the number of squares the robot moves to?
The modifications that can be made to the code segment to correctly count the number of squares the robot moves to: option 1: inserting the statement count ← count + 1 between line 6 and line 7.
What exactly is a C code segment?One of the sections of a program in an object file or in memory that includes executable instructions is referred to as a text segment, sometimes known as a code segment or simply as text.
An object file or the corresponding area of the virtual address space of the program that includes executable instructions is referred to as a code segment in computing, often known as a text segment or simply as text.
The only distinction that comes to mind is that you must close segments when using code segment while, as opposed to code and data segment/code segment directives. It's not required by code.
Learn more about code segment from
https://brainly.com/question/25781514
#SPJ1
See full question below
The following code segment moves the robot around the grid. Assume that n is a positive integer.
Line 1: count ←← 0
Line 2: REPEAT n TIMES
Line 3: {
Line 4: REPEAT 2 TIMES
Line 5: {
Line 6: MOVE_FORWARD()
Line 7: }
Line 8: ROTATE_RIGHT()
Line 9: }
Consider the goal of modifying the code segment to count the number of squares the robot visits before execution terminates. Which of the following modifications can be made to the code segment to correctly count the number of squares the robot moves to?
inserting the statement count ← count + 1 between line 6 and line 7
Inserting the statement count ← count + 2 between line 6 and line 7
Inserting the statement count ← count + 1 between line 8 and line 9
Inserting the statement count ← count + n between line 8 and line 9
What is a good slogan for digital citizenship?
Answer:
No matter where you are in the world you have a place to go to
Explanation:
In this world of globalization it makes sense you would be anywhere in the world and still have a place to go to.
Answer:
"If you are on social media, and you are not learning, not laughing, not being inspired or not networking, then you are using it wrong."
Explanation: (this is the freedom of speech not my words.) but there true even though and that we all (i dont know if its everyone but y'know) have to stay inside during this pandemic try to make the most of it!
I need help for javascript shopping cart
A program that creates a virtual online grocery website
The PHP file<html>
<head>
</head>
<body>
<?php
$servername = "localhost";
$username = "///";
$password = "///";
$dbname = "assignment1";
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) {
die("Connection error: " . $conn->connect_error);
}
$product_name = "";
$unit_price = "";
$unit_quantity = "";
$in_stock = "";
$itemId = "";
$showNoItem = "display: none";
$showItem = "";
if (isset($_GET['data'])) {
$itemId = $_GET['data'];
$sql = "SELECT product_id , product_name , unit_price, unit_quantity, in_stock FROM products where product_id=".$itemId;
$result = $conn->query($sql);
if ($result->num_rows > 0) {
$showNoItem = "display: none";
$showItem = "";
while($row = $result->fetch_assoc()) {
$product_name = $row["product_name"];
$unit_price = $row["unit_price"];
$unit_quantity = $row["unit_quantity"];
$in_stock = $row["in_stock"];
break;
}
} else {
$showNoItem = "";
$showItem = "display: none";
}
} else {
$showNoItem = "";
$showItem = "display: none";
}
?>
<div id="noItem" style="<?php echo $showNoItem?>">Select items from categories on the left.</div>
<div id="itemDiv" style="<?php echo $showItem?>">
<div class="item-title">
<span class="item-name"><?php echo $product_name?> </span>
(<span class="item-quatity"><?php echo $unit_quantity?></span>)
</div>
<div class="itemDetail">
<div class="item-desp">
<div class="in-stock-div">In Stock: <span class="item-in-stock"><?php echo $in_stock?> </span> </div>
<div class="price-tag-div">Price: <span class="item-price-red">$<?php echo $unit_price ?></span></div>
<p></p>
<form action="cart.php" method="get" target="cart" class="order-row" onsubmit="return validate_quantity">
<input type="number" class="item-quatity-input spin0" min="1" value="1" name="display" id="display" onkeyup="addCartButtonCtrl()" >
<input type="hidden" name="productId" value="<?php echo $itemId?>">
<input type="hidden" name="productInfo" value='<?php echo "$product_name($unit_quantity)"?>'>
<input type="hidden" name="productPrice" value="<?php echo $unit_price ?>" >
<div class="add-cart-div">
<input id="cart-button" class="btn btn-primary" type="submit" value="Add to Cart" title="Add to cart." onclick="updateShoppingCart()">
</div>
</form>
</div>
</div>
</div>
<?php
$conn->close();
?>
</body>
</html>
Adding the CartButtonaddCartButtonCtrl(){
$action = $_GET['action'];
switch ($action) {
case 'Add':
$product_id = $_GET['productId'];
$product_name = $_GET['productInfo'];
$unit_price = $_GET['ProductPrice'];
if(!isset($_SESSION['cart'])) {
$_SESSION['cart']=array();
}
$index = getItemIndex($product_id);
if ($index < 0) {
$item_array=array('product_id' => $product_id,
'product_name' => $product_name,
'unit_price' => $unit_price,
}
Read more about programming here:
https://brainly.com/question/23275071
#SPJ1
In the binary system, 1 and 0 are not known as digits. Instead, they are called
bits
switches
flow
variables
decimals
Answer:
Variables
Explanation:
I hope it helps
Answer:
C variables
Explanation:
Functional Interfaces and Lambda Expressions
Using IntCalculator.java from chapter 10 (page 684) of the Gaddis text, implement both an Anonymous Inner Class, and a Lambda Expression that returns the results of the following expressions:
// 1. given int parameter x, return the value of the polynomial
return x2 + 2x + 4;
// 2. given two double parameters x and y, return x to the y
return xy; // use Math.pow
// 3. given a double parameter, r, return ?*r2
return Math.PI * r * r;
// 4. given int parameter x, return x!, if x<= 0, just return 1
Notice that there should be both an anonymous inner class implementation, AND a lambda expression implementation for each of the 4 expressions. Include a separate class that has a public static main method that tests your four expression handlers. Place all of your java files into a single zip file and upload to Canvas.
Answer: the asnwer to this is poopyscoop
Explanation:
Question
What protocol is used to discover the hardware address of a node with a certain IP address?
Answer:
ARP is a simple query–response packet protocol used to match workstations hardware addresses to IP addresses. In other words, ARP is the protocol used to identify nodes in a LAN. ARP is described in RFC 826
This represents a group of Book values as a list (named books). We can then dig through this list for useful information and calculations by calling the methods we're going to implement. class Library: Define the Library class. • def __init__(self): Library constructor. Create the only instance variable, a list named books, and initialize it to an empty list. This means that we can only create an empty Library and then add items to it later on.
Answer:
class Library: def __init__(self): self.books = [] lib1 = Library()lib1.books.append("Biology") lib1.books.append("Python Programming Cookbook")Explanation:
The solution code is written in Python 3.
Firstly, we can create a Library class with one constructor (Line 2). This constructor won't take any input parameter value. There is only one instance variable, books, in the class (Line 3). This instance variable is an empty list.
To test our class, we can create an object lib1 (Line 5). Next use that object to add the book item to the books list in the object (Line 6-8).
Create a games that simulates rolling of two dice by generating two random numbers between 1 and 6 inclusive. The chooses a number between 2 and 12 (the lowest and the highest total possible for two dice). The player than roll two dice up three times. If the number choose by user comes up, the user wins and games end. If the number does not come up within three rolls, the computer wins.
Here's a Python implementation of the game:
The Programdef roll_dice():
return random.randint(1, 6), random.randint(1, 6)
def play_game():
number_to_guess = random.randint(2, 12)
print(f"Number to guess is {number_to_guess}")
for i in range(3):
dice1, dice2 = roll_dice()
print(f"Roll {i+1}: {dice1}, {dice2}")
if dice1 + dice2 == number_to_guess:
print("You win!")
return
print("Computer wins.")
play_game()
The roll_dice function utilizes two random numbers which lie between a range of 1 to 6, and the play_game method engages in a round of the game by picking an arbitrary number on the 2 to 12 spectrum followed by rolling two dice up to three times so that the randomly chosen number might be revealed.
Should the aforementioned number become realized, the player shall emerge victorious; otherwise, it is the computer's turn to bask in glory. Finally, the result of the game is discussed through production to the console.
Read more about programs here:
https://brainly.com/question/23275071
#SPJ1
How does technology improve productivity at work?
Answer:
Explanation:
Technology also empowers employees to progress through their own personal system of goals and provides for the implementation of productivity trends through individuals, teams, and the broader organization. This method of analyzing and tracking employee performance can also be used to foment friendly competition
Answer:
it helps you get things done faster and more eficiently by providing useful tools and helping you communicate and collaborate more easily
Explanation:
This software agent helps people improve their work, assist in decision making, and facilitate their lifestyle. A) chatbot B) enterprise chatbot C) deep AI D) virtual personal assistant
The steps to follow in order to produce a Pivot table would be as mentioned below is Opting the columns for a pivot table. Now, make a click on the insert option.
What is pivot table?This click is followed by opting for the pivot table and the data columns that are available in it. After this, the verification of the range of the table is made and then, the location for the pivot table has opted.
After this, the column is formatted and the number option is selected followed by the currency option, and the quantity of decimal places. A Pivot table allows one to establish a comparison between data of distinct categories(graphic, statistical, mathematical) and elaborate them.
Therefore, The steps to follow in order to produce a Pivot table would be as mentioned below Opting the columns for a pivot table. Now, make a click on the insert option.
Learn more about 'Pivot Table' here:
brainly.com/question/13298479
#SPJ1
What happens when QuickBooks Online doesn't find a rule that applies to a transaction?
QuickBooks employs the Uncategorized Income, Uncategorized Expense, or Uncategorized Asset accounts to hold transactions that it is unable to categorize. These accounts cannot be used to establish bank policies.
What is QuickBooks Online?A cloud-based financial management tool is QuickBooks Online. By assisting you with things like: Creating quotes and invoices, it is intended to reduce the amount of time you spend handling your company's money. monitoring the cash flow and sales.
While QuickBooks Online is a cloud-based accounting program you access online, QuickBooks Desktop is more conventional accounting software that you download and install on your computer.
QuickBooks is an accounting program created by Intuit whose products offer desktop, internet, and cloud-based accounting programs that can process invoices and business payments. The majority of QuickBooks' customers are medium-sized and small enterprises.
Thus, QuickBooks employs the Uncategorized Income.
For more information about QuickBooks Online, click here:
https://brainly.com/question/20734390
#SPJ1
QUESTION NO-1: The Highest quality printer is dot-matrix True False Prev
It is false that the Highest quality printer is basically dot-matrix.
What is dot-matrix?A dot matrix is a patterned 2-dimensional array used to represent characters, symbols, and images.
Dot matrices are used to display information in most types of modern technology, including mobile phones, televisions, and printers. The system is also used in the textile industry for sewing, knitting, and weaving.
Dot-matrix printers are an older technology that uses pins to strike an ink ribbon in order to print characters and images on paper.
While dot-matrix printers are capable of producing multi-part forms and have low operating costs, they are generally regarded as having lower print quality when compared to more modern printer technologies.
Thus, the given statement is false.
For more details regarding dot-matrix, visit:
https://brainly.com/question/4953466
#SPJ9
TRUE OR FALSE: COMPUTER SCIENCE!
Computer Software consists of system software and
application software.
True
False
Answer:true
Explanation:
Answer:
false it is not true.
it is different on its own
Research and build a chroot jail that isolates ssh users who belong to the restrictssh group. (You will also need to create the restrictssh group). Next, install an ftp server and configure it to allow anonymous logins. Create a second chroot jail that can be accessed by the anonymous account. You will probably need to create several new user accounts to facilitate testing your setups.
Answer:
Explanation:
#!/bin/bash
# This script can be used to create simple chroot environment
# Written by LinuxConfig.org
# (c) 2020 LinuxConfig under GNU GPL v3.0+
#!/bin/bash
CHROOT='/var/chroot'
mkdir $CHROOT
for i in $( ldd $* | grep -v dynamic | cut -d " " -f 3 | sed 's/://' | sort | uniq )
do
cp --parents $i $CHROOT
done
# ARCH amd64
if [ -f /lib64/ld-linux-x86-64.so.2 ]; then
cp --parents /lib64/ld-linux-x86-64.so.2 /$CHROOT
fi
# ARCH i386
if [ -f /lib/ld-linux.so.2 ]; then
cp --parents /lib/ld-linux.so.2 /$CHROOT
fi
echo "Chroot jail is ready. To access it execute: chroot $CHROOT"
A pop-up window is a small web browser window that
opens without your permission after opening a
website.
True
False
Answer:
Yes, that's true
Explanation:
Answer: Yes, this is true.
website is a collection of (a)audio files(b) image files (c) video files (d)HTML files
Website is a collection of (b) image files (c) video files and (d)HTML files
What is websiteMany websites feature a variety of pictures to improve aesthetic appeal and provide visual substance. The formats available for these image files may include JPEG, PNG, GIF, or SVG.
To enhance user engagement, websites can also introduce video content in their files. Web pages have the capability to display video files either by embedding them or by providing links, thereby enabling viewers to watch videos without leaving the site. Various formats such as MP4, AVI and WebM can be utilized for video files.
Learn more about website from
https://brainly.com/question/28431103
#SPJ1
Complete each of the following sentences by selecting the correct answer from the list of options.
The CPU converts
into information.
The CPU is the mastermind of the computer, controlling everything that goes on through a series of
.
Another name for the CPU is
.
The CPU converts instructions and data into information. The CPU is the mastermind of the computer, controlling everything that goes on through a series of electrical signals and calculations.
The CPU, or central processing unit, is the primary component of a computer that performs most of the processing inside the computer. It is often referred to as the "brain" of the computer.
The CPU interprets and executes instructions, performs calculations, and manages the flow of data within the computer system. It is responsible for coordinating and controlling the activities of other hardware components, such as memory, storage, and input/output devices, to carry out tasks and run programs.
Learn more about CPU on:
https://brainly.com/question/21477287
#SPJ1
Which of the following is the outline of all the stages games go through when
being developed?
(1 point)
production cycle
design cycle
scientific method
alpha stages
Product Cycle is all the stages games go through when being developed.
What's product cycle?
The product cycle is the period of time from the morning of processing to the finished product during which stocks( raw accoutrements , accoutrements ,semi-finished corridor, and finished factors) live in the manufacturing process. It takes up some of the manufacturing time and comprises of processing and halting phases.
Product cycle for developing a game :
Stage 1 of the game development process :
Although each step in the game development process is important, the original planning cycle has a direct impact on all posterior cycles. It's critical to begin the process of creating a computer game by gathering details about the willed end product, similar as technological specifications.
Stage 2 The product :
The product stage, which is broken down into multiple internal stages, is the stage that takes the longest and requires the topmost labor.
Stage 3 Quality control :
A game of any complexity needs to be tested to insure that it's error-free and bug-free. This is due to the fact that a single issue can have a negative impact on both the stoner experience and the overall enjoyment of a game. As a result, functional,non-functional, and beta testing are constantly carried out.
Stage 4 Launch :
The final stage of game product is the product debut, which is largely anticipated by all. But the story does not end with launch. Indeed after a game is finished, there are generally still enough bugs and faults, thus the game development platoon keeps adding new features and perfecting the game coincidently with its release. At the same time, testers gather the first stoner feedback to help inventors make significant adaptations.
Stage 5 Post-production :
Fixes and upgrades need to be continually covered after a game is released on the request to insure that it's stable and performing as intended. Studios should immaculately release updates constantly to cleave to the evolving specialized specifications of platforms.
Learn more about production cycle of game developement click here:
https://brainly.com/question/26006886
#SPJ1
NEED HELP 100 POINTS FOR CORRECT ANSWER
In the application activity, you had to choose between two options, Scenario 1: Building a Website or Scenario 2: Printing Band Posters.
Review the feedback you got for your answer, then enter your revised answer here.
Answer: I think number 1 would be best
Explanation: Number 1 because you would get noticed more often so people can but your products
Hope this helps :)
A pedometer treats walking 1 step as walking 2.5 feet. Define a function named feet_to_steps that takes a float as a parameter, representing the number of feet walked, and returns an integer that represents the number of steps walked. Then, write a main program that reads the number of feet walked as an input, calls function feet_to_steps() with the input as an argument, and outputs the number of steps. Use floating-point arithmetic to perform the conversion.
Ex: If the input is:
150.5
the output is:
60
Which part of the Result block should you evaluate to determine the needs met rating for that result
To know the "Needs Met" rating for a specific result in the Result block, you should evaluate the metadata section of that result.
What is the Result blockThe assessment of the metadata section is necessary to determine the rating of "Needs Met" for a particular outcome listed in the Result block.
The metadata includes a field called needs_met, which evaluates the level of satisfaction with the result in terms of meeting the user's requirements. The needs_met category usually has a score between zero and ten, with ten implying that the outcome entirely fulfills the user's demands.
Learn more about Result block from
https://brainly.com/question/14510310
#SPJ1
Select the correct answer.
What’s the name for the array of buttons that provides quick access to commonly used commands?
A.
menu bar
B.
toolbar
C.
ruler
D.
scroll bar
Match each decimal number to an equivalent number in a different system
Answer:
228
42
27
69
Explanation:
11100100 = 128+64+32+4 = 228
00101010 = 32+8+2 = 42
1B = 1*16+11 = 27
45 = 4*16+5 = 69
Which port doesn't exist in computer?
Answer:
okau
Explanation:
1.RAW
2.USB
3.parellel
4.com1/com2
NOTE: I FOUND THE ANSWERS FROM INTERNET
We love him, because he ."
Answer:
first, loved, us
Explanation:
Real Answer!
You’re investigating an internal policy violation when you find an e-mail about a serious assault for which a police report needs to be filed. What should you do? Write a two-page paper specifying who in your company you need to talk to first and what evidence must be turned over to the police.
The email specifying who in your company you need to talk to first and what evidence must be turned over to the police is written below.
The manager,
Robotics Plc.
Dear sir,
Issue of internal policy violationI wish to bring to your notice an issue of concern that has occurred in the company. All employees are mandated to work for the growth of the company and when things or due protocol are not being followed, it can bring an organization down.
I wish to bring to your notice an issue of internal policy violation that was done by Mr. Yusuf Thomas on December 2021 that has cost the company to loss about 2million dollars. He used the companies money and also took some of the companies client for himself.
He is still working and no sanction or steps have been taken to reprimand him. I wish that the issue be solved so that others will not follow the same steps.
Thanks and waiting for quick response.
Mary Gina.
Learn more about policy violation from
https://brainly.com/question/13198827
#SPJ1
what is the big-oh order of the following code fragment? the size of the problem is expressed as n. for (int i = 0; i < (int)Math.pow(2, n); i++)
System.out.println("what could could go wrong?"); //f(n) counts these
The big-O order of the code fragment is O(2^n). This is because the loop is iterating 2^n times, so it's running in exponential time.
In order to make the algorithm more efficient, it is possible to use other techniques such as memoization, dynamic programming, and divide and conquer. These techniques can help reduce the running time of the algorithm by breaking the problem into smaller subproblems and solving them independently. Additionally, the use of caching can help minimize the number of iterations needed to solve a problem.
Learn more about programming:
https://brainly.com/question/28338824
#SPJ4