Answer:
Explanation:
If I had to buy, let’s say an iPad, I would visit the official store. First of all, I would take a closer look at the product, revising it carefully, if it feels right and if it meets my needs. Then I would ask for the price if they have a discount or any sale upcoming or payment plan. If everything meets my requirements I would buy the item. On the other hand, if there weren’t any official stores around the place I live in, I would visit three different department stores, preferably where they have the product of my interest displayed, also I would ask about the price and/or payment plan or discounts and availability. I must mention that cost is an important aspect to make a decision on where to buy the item. All of this process would take about 1 or 2 days at most.
Advantages
-You can see, feel, check the product to dissipate any doubts, there are people willing to answer any question and help to make a better choice.
Get the product at the same moment you are paying for it and if you want to you can use/wear it immediately.
Disadvantages
If they are out of stock of the item of your interest, there is a chance you will have to wait a long time for it, although it could happen the store won’t have the product available again.
The offers are not as wide as on the web sites.
Shopping on the web or via a mobile app
It is almost the same as shopping in a traditional manner, the greater differences are that there are more virtual places/shops online to compare prices and availability and sometimes they have great offers, because of the competition. Generally, the items are cheaper than a department store.
This process could take about a week, especially if you are waiting for a specific offer.
Advantages
There are lots of options, lots of different online stores, that increase the chances to get a good offer or an item with better characteristics at the same price; if you don’t find availability in one web you can find it in another in no time.
There is no need to leave your house or put on pause your busy schedule, as you will receive the item at your door.
Disadvantages
You can’t check the product given they only display a few pictures of it and a brief description, there is no one to answer your doubts about the item, basically, the decision relies on your research and recommendations of the product.
After making your purchase, you will have to wait a few days to receive your item at home or the workplace. Sometimes happens the store confuses your order sending a different product or other with different characteristics, resulting in having to return the item and wait days to get what you order in the first place.
Explanation:
Which did I prefer and why?
Considering the advances in technology, I prefer to shop online, there I can find what I'm looking for and of course, they have a great offers, too. Besides, with day to day occupations I barely have time to go to a department store, so is easier to access using a computer or an app on the smartphone.
The graphical user interface (GUI) was pioneered in the mid-1970s by researchers at:
A) Apple Computer
B) Microsoft
C) Xerox
D) IBM
Answer:
its C actually
Explanation:
C) Xerox plus i had a quiz
Answer:
xerox
Explanation:
Please help its timed! Which of the following is an event? Select 4 options. adding three and four in a program. moving a mouse. clicking a mouse button. a sensor detecting the motion of an earthquake detector. scanning a credit card when you shop?
The option that is an event is known to be clicking a mouse button.
What is a computer event?An event, in a computing context, is known to be any kind of action that aim to know or is identified by a program and has a good importance for system hardware or software.
Events examples keystrokes and mouse clicks, program loading and others. so we can say that the option that is an event is known to be clicking a mouse button.
Learn more about program from
https://brainly.com/question/1538272
#SPJ1
explain the structure of c program with example
Answer:
A C program typically consists of a number of components, including preprocessor directives, function prototypes, global variables, functions, and a main function.
Explanation:
Here's an explanation of each component, followed by an example C program that demonstrates their usage:
Preprocessor Directives: Preprocessor directives are instructions to the C preprocessor, which processes the source code before compilation. They usually start with a '#' symbol. Some common directives are #include for including header files and #define for defining constants.
Function Prototypes: Function prototypes provide a declaration of functions that will be used in the program. They specify the function's name, return type, and the types of its parameters.
Global Variables: Global variables are variables that can be accessed by any function in the program. They are usually defined outside of any function.
Functions: Functions are blocks of code that can be called by name to perform specific tasks. They can accept input parameters and return a value. Functions are generally declared before the main function.
Main Function: The main function is the entry point of the program. It's where the execution starts and ends. It has a return type of int and typically takes command-line arguments via two parameters: argc (argument count) and argv (argument vector).
Here's an example C program that demonstrates the structure:
// Preprocessor directives
#include <stdio.h>
// Function prototypes
void print_hello_world(void);
// Global variable
int global_var = 10;
// Functions
void print_hello_world(void) {
printf("Hello, World!\n");
}
// Main function
int main(int argc, char *argv[]) {
// Local variable
int local_var = 20;
printf("Global variable value: %d\n", global_var);
printf("Local variable value: %d\n", local_var);
print_hello_world();
return 0;
}
This simple C program demonstrates the use of preprocessor directives, a function prototype, a global variable, a function, and the main function. When run, it prints the values of a global and a local variable, followed by "Hello, World!".
The system of rules that governs how we assign meaning to the morphemes we use is called __________. syntax semantics phonology regularization
Semantics
Explanation:In linguistics, syntax is the study of phrases and sentences. It also describes the set of rules of grammar that these sentences obey. It doesn't describe or govern the way meanings are assigned to morphemes - the smallest meaningful unit of a language.
Semantics on the other hand is the study of the meaning of sentences. It contains a system of rules governing how meanings are given to morphemes, phrases and sentences.
Phonology is a great branch in linguistics that deals with the study of speech sounds in languages.
Regularization is another branch in linguistics that observe languages in the bid to replace irregular forms in syntax, semantics and even morphology in that language with the regular forms.
Out of the described options, the one that has to do with meanings of morphemes is Semantics.
Answer:
Semantics is the correct answer.
What is the purpose of file extensions? A. They execute the mail merge function, B. They tell the operating system what kind of document you are creating. O C. They run the spelling checker and grammar checker features. D. They set up your files in an organized hierarchy.
Answer:The answer is D
Explanation:just took it. hope it helps..
Answer: it’s not D it’s B
Explanation:
ape-x
Ava is paraphrasing an article about cardiovascular disease. She has read the passage carefully and is confident that she understands it. What is her next step?
Reorder the sentences to the order you think makes more sense.
Identify the main points of what you have read.
Select a few key words to change to your own words.
Skim the original information to get a sense of what it is about.
Answer:
a
Explanation:
Answer:
ye it a
Explanation:
Write first 20 decimal dijits in the base 3
Answer:
first 20 decimal dijits in the base 3
Explanation:
i wrote what you said
a. Draw the hierarchy chart and then plan the logic for a program needed by Hometown Bank. The program determines a monthly checking account fee. Input includes an account balance and the number of times the account was overdrawn. The output is the fee, which is 1 percent of the balance minus 5 dollars for each time the account was overdrawn. Use three modules. The main program declares global variables and calls housekeeping, detail, and end-of-job modules. The housekeeping module prompts for and accepts a balances. The detail module prompts for and accepts the number of overdrafts, computes the fee, and displays the result. The end-of-job module displays the message Thanks for using this program.
b. Revise the banking program so that it runs continuously for any number of accounts. The detail loop executes continuously while the balance entered is not negative; in addition to calculating the fee, it prompts the user for and gets the balance for the next account. The end-of-job module executes after a number less than 0 is entered for the account balance.
Hierarchy chart and pseudocode required
The Hierarchy Chart for the program needed by Hometown Bank is given below:
Main Program
|
-------------
| |
Housekeeping module Detail module
| |
Prompts for balance Computes fee
and accepts input and displays result
|
-----------------
| |
End-of-job module Detail loop (while balance >= 0)
|
Displays message "Thanks for using this program"
Pseudocode for Main Program:Declare global variables
Call Housekeeping module
Call Detail module
Call End-of-job module
Pseudocode for Housekeeping Module:
Prompt for balance
Accept input for balance
Pseudocode for Detail Module:
Detail loop:
while (balance >= 0)
Prompt for number of overdrafts
Accept input for number of overdrafts
Compute fee: 1 percent of balance - 5 dollars * number of overdrafts
Display result
Prompt for balance
Accept input for balance
Pseudocode for End-of-job Module:
Display message "Thanks for using this program"
Read more about pseudocode here:
https://brainly.com/question/24953880
#SPJ1
1. What characteristics are common among operating systems? List types of operating systems, and
examples of each. How does the device affect the functionality of an operating system?
The fundamental software applications running upon that hardware allow unauthorized to the interface so much with the equipment because then instructions may be sent and result obtained.
Some characteristics of OS are provided below:
Developers provide technology that could be suitable, mismatched, or otherwise completely at odds with several other OS categories throughout various versions of the same similar OS.Throughout two different versions, the OS's are often 32 as well as 64-Bit.
Type of OS:
Distributed OS.Time-sharing OS.Batch OS.
Learn more about the operating system here:
https://brainly.com/question/2126669
User asks you to develop a program that calculates and then prints interest earned on a bank
balance. Program should print interest earned for the same balance when interest is accumulated
annually, semiannually and quarterly.
Interest earned yearly-balance * rate /100
Interest earned semiannually balance*rate/2/100
Interest earned quarterly= balance*rate/4/100
for annual
for semi annual
for quarterly
00 is Current (1) times resistance (R)
The program that calculates and then prints interest earned on a bank balance is given below:
The Program#include <bits/stdc++.h>
using namespace std;
int main()
{
double principle = 10000, rate = 5, time = 2;
/* Calculate compound interest */
double A = principle * (pow((1 + rate / 100), time));
double CI = A- principle;
cout << "Compound interest is " << CI;
return 0;
}
Read more about programming here:
https://brainly.com/question/23275071
#SPJ1
Which term refers to a slide that is generated by PowerPoint and includes Zoom links to multiple sections within a presentation?
A "Section Expand" slide is a PowerPoint slide that has Magnification links to various presentation sections.
How are slide presentations created?Tap the Ribbon's Slide Show tab. Choose either From Slide or From Starting. The slide show button in the status bar or the F5 key on your keyboard can also be used to launch the presentation. Clicking the Options button will let you leave the presentation and go back to normal viewing.The presentation title and the complete name ought to be on the first slide. The audience can get ready for your speech by viewing it up until the start of the presentation.The opening establishes the overall tone of the presentation and provides information about what the audience should take away from it.To learn more about slide presentation, refer to:
https://brainly.com/question/23714390
Performance assessments are conducted periodically and .
Performance assessments are conducted periodically and systematically.
What are performance assessments ?Periodic and structured evaluations are essential to maintain accurate assessments of performance. These reviews usually occur regularly, such as once or twice a year, and follow a systematic process designed to examine an individual's job-related skills consistently using objective standards.
A typical appraisal procedure generally includes establishing clear aims and goals for the employee, offering regular coaching along with feedback throughout the appraisal term, compiling data related to their task progress, and then conducting a comprehensive review at the end of that period to analyze and assess it thoroughly.
Find out more on performance assessments at https://brainly.com/question/1532968
#SPJ1
Select the correct text in the passage.
Which computer applications can Mr. Crowell use to make the classroom learning more stimulating and interesting?
Mr. Crowell has been teaching in a school for years with the help of traditional teaching methods. Recently, the school authorities have
recommended the use of computer programs and applications to facilitate a better learning experience for their students. Mr. Crowell wants to make
the classroom learning stimulating and interesting. He will have to use a few of the several computer applications available to him. These applications
include email, multimedia presentations, spreadsheets, word processing software] videos, and simulations,
rights reserved.
Reset
Next
The computer applications can Mr. Crowell use to make classroom learning more stimulating and interesting are:
b) Multimedia presentationsc) Spreadsheetsd) Word processing softwaref) SimulationsWhat are computer applications?Email, spreadsheets, and word processing software would not be good choices for him to utilize in his class as his pupils cannot interact with these tools. His major objective is to provide a better learning experience.
Mr. Crowell should think about adding multimedia presentations, movies, and simulations to augment his current teaching techniques since he wants to add more interesting computer applications to his classroom.
Therefore, the correct options are b, c, d, and f.
To learn more about computer applications, refer to the link:
https://brainly.com/question/8224724
#SPJ9
The question is incomplete. The missing options are given below:
Options:
-multimedia presentations
-spreadsheets
-word processing software
-videos
-simulation
What is your opinion of nanotechnology and its impacts? What does this mean for IT? What should next steps be? What other areas should be a concern? What are the ethical issues here?
My opinion on nanotech is that it has a great future as tech that can be harnessed for good.
What is Nanotechnology?Nanotechnology is a field of research and development that involves manipulating and engineering materials at the nanometer scale, which is on the order of billionths of a meter.
It has the potential to have a significant impact on a wide range of industries, including electronics, medicine, energy, and materials science.
In the field of IT, nanotechnology could enable the development of smaller and more powerful electronic devices, as well as new forms of data storage and processing.
The next steps in the development of nanotechnology will likely involve further research and experimentation to better understand the potential benefits and risks of this technology, as well as the development of regulations and guidelines to ensure its safe and responsible use.
Other areas of concern include the potential environmental and health risks associated with the use of nanomaterials, as well as the potential for the technology to be used for military or surveillance purposes.
There are also ethical issues related to nanotechnology, such as concerns about the potential for unequal access to the benefits of this technology and the potential for it to be used to control or manipulate living organisms.
Overall, the development of nanotechnology is a complex and multifaceted issue that will require ongoing research and dialogue to ensure that it is used in a responsible and ethical manner.
Read more about nanotechnology here:
https://brainly.com/question/22082928
#SPJ1
Part A
In PyCharm, write a program that prompts the user for their name and age. Your program should then tell the user the year they were born. Here is a sample execution of the program with the user input in bold:
What is your name? Amanda
How old are you? 15
Hello Amanda! You were born in 2005.
Write the program. Format your code using best practices. Refer to the zyBooks style guide, if needed, to use proper naming conventions for variables and methods. Use the most appropriate statements with minimal extraneous elements, steps, or procedures.
Run the program.
Debug the program. Be sure your code produces the correct results.
Save and submit your file.
Part B
While you don’t need an IDE to write a program, there are some features that make it desirable. What did you notice when using PyCharm to develop a simple program? For instance, you might have noticed how color is used. Identify two to three features that could make coding easier for programmers, and briefly explain why.
Using the knowledge in computational language in python it is possible to write a code that write a program that prompts the user for their name and age.
Writting the code:def born_yr(age):
return 2020-age
if __name__=="__main__":
name = input("What is your name?")
age = int(input("How old are you?"))
born=born_yr(age)
print("Hello", name + "!", "You are born in " + str(born) + ".");
See more about python at brainly.com/question/18502436
SPJ1
How to become a software tester?
Answer:
by gaining knowledge taking information from experience person
What is computer hardware tools?
Answer: Well, in basic terms, they are what makes a computer work. Such as the CPU, GPU, Graphics Card, Motherboard, SSD, and HHD.
Explanation:
What does influence mean in this passage i-Ready
In the context of i-Ready, "influence" refers to the impact or effect that a particular factor or element has on something else. It suggests that the factor or element has the ability to shape or change the outcome or behavior of a given situation or entity.
In the i-Ready program, the term "influence" could be used to describe how various components or aspects of the program affect students' learning outcomes.
For example, the curriculum, instructional methods, and assessments implemented in i-Ready may have an influence on students' academic performance and growth.
The program's adaptive nature, tailored to individual student needs, may influence their progress by providing appropriate challenges and support.
Furthermore, i-Ready may aim to have an influence on teachers' instructional practices by providing data and insights into students' strengths and areas for improvement.
This can help educators make informed decisions and adjust their teaching strategies to better meet their students' needs.
In summary, in the context of i-Ready, "influence" refers to the effect or impact that different elements of the program have on students' learning outcomes and teachers' instructional practices. It signifies the power of these components to shape and mold the educational experiences and achievements of students.
For more such questions element,Click on
https://brainly.com/question/28565733
#SPJ8
The Contact entity has a LegalReports array. The LegalReportsLV List View displays the elements of the array.
Which two steps must be taken as part of the configuration to allow the user to add/remove rows to/from the LegalReportsLV?
These two steps must be taken as part of the configuration to allow the user to add/remove rows to/from the LegalReportsLV
1. Specify the Row Iterator widget's toRemove property
2. Specify the Iterator Buttons widget's toAdd property.
What is an array?An array is a collection of elements, such as numbers, images, or physical objects, formatted into rows and columns according to their nature. An array, also referred to as a database system, is a group of things, or data, that are stored together in one or more contiguous memory locations.
Multiple data items of the same type should be stored together in an array. The commutative property of multiplication, which shows that you can shuffle the factors or elements and the result of the shuffle remains the same, can be demonstrated mathematically using an array.
By assigning an offset to every value in an array, you can use computer programming to find and identify where you stored each piece of information, or element.
Learn more about array
https://brainly.com/question/28565733
#SPJ4
Write a loop that continually asks the user what pets the user has until the user enters stop, in which case the loop ends. It should acknowledge the user in the following format. For the first pet, it should say You have one cat. Total # of Pets: 1 if they enter cat, and so on.
Sample Run
What pet do you have? lemur
What pet do you have? parrot
What pet do you have? cat
What pet do you have? stop
Sample Output
What pet do you have? lemur
You have one lemur. Total # of Pets: 1
What pet do you have? parrot
You have one parrot. Total # of Pets: 2
What pet do you have? cat
You have one cat. Total # of Pets: 3
What pet do you have? stop
Answer:
#include <iostream>
using namespace std;
int main() {
/*
What pet do you have? lemur
parrot
What pet do you have? cat
What pet do you have? stop
*/
string pet;
int num=1;
while (pet!="stop"){
cin>>pet;
cout<<"What pet do you have?";
if (pet!="stop"){
cout<<"you have one "<< pet<<" total numof # is "<<num++<<endl;
}
else{
cout<<"stop";
}
}
}
Explanation:
you did not specify the language so i went with c++
i used while loop which will keep asking the user for an input until he/she write stop in order to break the loop
first i declared the data type of the input
used it as a conditionin the while loop
then printed the input everytime the loop runs
which of the following is a personal benifit of earning a college degree?
A) you have more friends
B) you are more likely to exercise
C) you are more likely to vote for the right candidate.
D) you have a longer life expectancy
Answer:
you have a longer life expectancy
Explanation:
Does anyone know what type of Chromebook this is?
Answer: Its............ A Chromebook type of Chromebook...??
Explanation:
Ion know I aint a geek, geezer -_- (Thats a lie)
i have been looking for like 20 mins now and cant find the answers to test 3 on edhesive. does anybody have an clue to where i can find it? it is a 20 question test.
Answer:
Try looking it up. If not, go with your gut!
What is the data type of the following variable?
name = "John Doe"
In computer programming, a variable is a storage location that holds a value or an identifier. A data type determines the type of data that can be stored in a variable. The data type of the following variable, name = "John Doe" is a string data type.
In programming, a string is a sequence of characters that is enclosed in quotes. The string data type can store any textual data such as names, words, or sentences.The string data type is used in programming languages such as Java, Python, C++, and many others. In Python, the string data type is denoted by enclosing the value in either single or double quotes.
For instance, "Hello World" and 'Hello World' are both strings.In conclusion, the data type of the variable name is string. When declaring variables in programming, it is important to assign them the correct data type, as it determines the operations that can be performed on them.
For more such questions on variable, click on:
https://brainly.com/question/28248724
#SPJ8
Does the fact ¬Spouse(George,Laura) follow from the facts Jim ≠ George and Spouse(Jim,Laura)? If so, give a proof; if not, supply additional axioms as needed. What happens if we use Spouse as a unary function symbol instead of a binary predicate?
Yes, based on the facts Jim, George, and Spouse, the fact Spouse (George, Laura) follows.(Jim, Laura).The axioms would need to be changed if Spouse were to be used as a unary function symbol rather than a binary predicate because it would only accept one input rather than two otherwise.
What operators are unary operators?A unary operator in the C programming language is a single operator that performs an operation on a single operand to create a new value. Operations like negation, increment, decrement, and others can be carried out by unary operators.
Binary: Is it a unary?Binary and unary operators are the two categories of mathematical operations. Unary operators only require a single operand to accomplish an action. With two operands, binary operators can perform operations. The order of evaluation in a complex expression (one with two or more operands) is determined by precedence rules.
To know more abut unary visit:
https://brainly.com/question/30531422
#SPJ1
what a register in cpu does ?
Answer:
CPU register) is one of a small set of data holding places that are part of the computer processor. A register may hold an instruction, a storage address, or any kind of data (such as a bit sequence or individual characters). Some instructions specify registers as part of the instruction.
Is it possible to beat the final level of Halo Reach?
Question 18
Which of the following is true?
a = 1
b = 10
a
b<= a or a >= b
a>bor a == b
a band a == b
Answer:
None
Explanation:
Logical operators:
'and' indicates that the statement is true if both conditions are true.
'or' indicates that the statement is true if one or both conditions are true.
Given that a = 1 and b = 10:
The first statement is false (1×10 <= 1 is false, 1 >= 10 is also false)
The second statement is false (1>10 is false, a does not equal b)
The third statement is false (a does not equal b)
None of these statements are true.
Hope this helps :)
1 There are several applications to assist you to surf through the internet, mention
three (3 marks)
uses of computer in communication
Uses of computers in communication:
1) Transfer of data
2)Transfer of information
3) Wireless message communication
4)Video service
5)E-mail
6) Internet and Fax
What is the use of computers in communication?
The mainstay of information technology, computers are essential for communication. Early in the 1990s, the first homes began to utilize the Internet, which eventually led to the widespread use of email, websites, blogs, social networking, and Voice-Over-Internet Protocol.
Above listed ones are the uses of computers in communication.
To know more about the information about computers in communication
https://brainly.com/question/26152499
#SPJ1