Answer:
Applets
Explanation:
Defintion from Windows - A window containing several small Windows utility programs called applets that are used to manage hardware, software, users, and the system. Accessed through Control Panel, used to set the date and time in Windows.
Software designed to facilitate conversation between a computer and a human end user is called?.
Answer:
User interface
Explanation:
I believe this would be referring to a user interface (or UI).
User interface is defined as a Software designed to facilitate conversation between a computer and a human end user.
What is the User interface?The user interface (UI) of a device is the point of human-computer contact and communication. Keyboards, Display displays, mice, and the look of a desktop are all examples of this.
An interface in computing is a common boundary that allows two or more distinct components of a computer system to communicate information.
It is also the method through which a user interacts with a program or a website. A user interface is a piece of software that is meant to enable communication between a computer and a human end user.
Therefore, it is user interface.
Learn more about the User interface, refer to:
https://brainly.com/question/28351003
#SPJ2
What does a good résumé help you do?
A. hide your contact details
B. emphasize your best skills and accomplishments
C. highlight only your most recent projects
D. highlight only your academic qualifications
Answer:
b, emphasize your best skills and accomplishments
Explanation:
think of an acting resume!!
A _______ is a group of elements that you want to style in a particular way.
a. id
b. element
C. class
a id is a group of elements of that you want to style in a particular way
Answer:
Brainliest
Explanation:
C. class
True or false: A local area network is a group of computers, printers, and other devices connected to the same network and covers a large geographic range such as a city, a county, or a state.
Answer:
True.
Explanation:
Hope this helps you!
easy python question, no explanation just right answer
Answer:
See the code below.
Explanation:
def sumOfTwo(a, b, v):
output = False
for i in a:
for j in b:
sum = i + j
if sum == v:
output = True
print(output)
sumOfTwo([-4, 6, 1], [10, .5, 30], 6)
You can use any online python ide to check the code.
the oppurtunity cost of earning an advanced college degree is that
You can use it to win arguments on the internet
Answer:
you like to say hi
Explanation:
new ppl are wihn
How did the introduction of illustrations and photos into design impact the newspaper?
A. It caused a national craze in purchasing cameras.
B. It detracted from the overall look of the paper, making it less interesting to customers.
C. It was quickly removed from the layout due to the negative reaction of the public.
D. It appealed to a new base of customer, making the newspaper more successful.
The introduction of illustrations appealed to a new base of customer, making the newspaper more successful.
What is the importance of graphics in newspaper?Graphics through the use of illustrations is one that helps to communicates a kind of messages even to those who do not know how to read.
Note that the introduction of illustrations appealed to a new base of customer, making the newspaper more successful as it also draws in the attention of readers.
Learn more about illustrations from
https://brainly.com/question/1504175
#SPJ1
How can you connect and access data from the database?
Answer:
In order to access data in a given database, you must first connect to the database. When you start SQL*Plus, you normally connect to your default Oracle database under the username and password you enter while starting.
The _____ method is similar to the apply() method except that the argument values are placed in a comma-separated list of values instead of an array.
The value method is similar to the apply() method except that the argument values are placed in a comma-separated list of values instead of an array.
What is this method about?
The values() method is known to be a method that acts by returning a new array iterator object that has or is made up of the values for all the index in the array.
Note that the value method is very much like the apply() method except that the argument values are placed in a comma-separated list of values instead of an array.
Learn more about Array from
https://brainly.com/question/24275089
Which of the following is an example of reducing? (waste management)
- printing on both sides of a piece of paper instead of just one
-processing use paper into new sheets of paper
-writing a report about the benefits of reusing paper
-emailing a document instead of printing and mailing it
Answer:
emailing a document instead of printing and mailing it
A method of capturing only the changes that have occurred in the source data since the last capture is called ________ extract.
A method of capturing only the changes that have occurred in the source data since the last capture is called Static extract.
What is Static extract?This is known to be a given method that is often used in getting only the alterations that have taken place in the source data since its last capture.
Note that in full extraction, there is data extraction and loading and as thus A method of capturing only the changes that have occurred in the source data since the last capture is called Static extract.
Learn more about source data from
https://brainly.com/question/26928042
#SPJ1
In flowcharts the rectangle shape represents a process or assignment statement?
A. True
B. False
The other term for template document is _______.
A. DATA FILE
B. DATA SOURCE
C. MAIN DOCUMENT
D. MAIN MENU
James, an IT manager, expresses a concern during a monthly meeting about weak user passwords used on company servers and how they may be susceptible to brute-force password attacks. Which concept can James implement to make the weak passwords stronger
Answer:
James could implement the use of symbles and numbers in the passwords so its less easy to brute-force it, and a maximum amount of characters and symbles
Explanation:
a password that looks like: invisable man (invisableman), is easy to guess unlike a password that looks like this: &31invisable#man%^2
or you could go with something like this: 1nv1548!3 m4n (or add random caps+numbers (maybe symbles))
Why is my phone not notifying me when i get text messages?.
what is the answer
i don't know how to decode this, could i get the answer without any links
Answer:
Try the Cesar cypher
Explanation:
The Cesar cypher shifts the letters one side
The representation of the content, relationships, and constraints of the data needed to support the system requirements is the ________.
The representation of the content, relationships, and constraints of the data needed to support the system requirements is the data model.
What is system relationship data model?The system or Entity Relationship Model (ER Modeling) is known to be a kind of graphical method that is used in database design.
It is known to be a form of high-level data model that helps one to state out the data elements and their linkage for a specific software system. An ER model is often employed to stand for real-world objects.
Learn more about system requirements from
https://brainly.com/question/26420125
_________ is a method of encoding data so that it is unreadable to unauthorized individuals. The data can only be decoded if the receiver of the encoded message has access to a special key.
Answer:Encryption
Explanation:I took my test for CIS 110 and guessed and got this question right.
Exercise 1.7.4: Remove From Line4 points
You are given an array of names of people who are in line for movie tickets. Use the remove element
to remove the first person from the line twice, as if you have just given them their tickets.
var line = ["Sam", "Lisa", "Laurie", "Bob", "Ryan"];
You should write a function to print everyone in line. Then print the line before and after removing the people.
The console should print this:
Sam, Lisa, Laurie, Bob, Ryan
Laurie, Bob, Ryan
When I run the program it does not match the desired result because I don't have spaces.
Use the knowledge in computational language in python to write a code with array of names of people who are in line for movie tickets.
How to define an array in python?Arrays are similar data structures to Python lists, but not as flexible. In an array all elements must be of the same type, typically numeric, such as int or float. Also, the size of an array cannot be modified, unlike lists that can grow dynamically. In contrast, using arrays is much more efficient and makes it easier to compute large volumes of numerical data. This makes arrays particularly useful in scientific computing.
So in an easier way we have that the code is
function start(){
var line = \["Sam", "Lisa", "Laurie", "Bob", "Ryan"\];
for(var i = 0; i < line.length; i++)
{
if(i + 1 == line.length){
println(line[i]);
}else{
print(line[i] + ", ");
}
}
var elim = line.remove(1);
var elim2 = line.remove(0);
for(var i = 0; i < line.length; i++){
if(i + 1 == line.length){
print(line[i]);
}else{
print(line[i] + ", ");
}
}
}
See more about python at brainly.com/question/18502436
How many internet browser sessions can you have open at one time?.
In the context of customer relationship management (CRM) applications, which approach is chosen by organizations with an established IT infrastructure
In the context of customer relationship management (CRM) applications, On-premises CRM approach is chosen by organizations with an established IT.
What is on-premise CRM?This is known as On-Premise software. It is also called CRM. This is regarded as a software that has its infrastructure, hardware, operating system etc. found on the client's premises.
Note that this implies that any form of maintenance, repairs, updates, etc. must be done a personal own IT member or staff.
Learn more about customer relationship from
https://brainly.com/question/25656282
What is a menu?
another name for a window
a section that allows you to choose settings
a set of commands that provides quick access to a tool
a list of commands and options for working with a program
Answer:
a list of commands and options for working with a program
Explanation:
Digital Print Project
For this project, explore techniques, new equipment, and software features surrounding one type of digital-printing technology that interests you. Here are some suggestions:
photo retouching
3D printing
multi-function machines
CAD printing machines
T-shirt printing machines
desktop engravers
If you have access to the machine and software connected with your printing technology choice, do some hands-on work to learn more about its features and to improve your skills. If you do not have access to the digital-design software or are interested in professional technologies like 3D printing, you may concentrate on the equipment and process through an online user’s manual.
You should have two kinds of data backing up your report:
DATA COLLECTED HANDS-ON from a physical machine in one or more of these locations:
a school
a public library workshop
a knowledgeable friend or teacher
print professionals
INFORMATION COLLECTED THROUGH ONLINE RESEARCH from at least two of the following:
company websites
free tutorials
designers’ websites
publishing websites
Remember, your report must include both hands-on data and online research information.
Present your project as a three-five page report, plus either:
an eight- to ten-slide presentation, or
• an actual final print that you have made and a digital file of your result.
Your written presentation should clearly explain:
why you chose your selection,
how you actually worked with your selection,
what equipment, software versions, and print interfaces you used,
what you researched that proved helpful,
what type of training or degree program is required working in a field using your chosen digital printing technology,
what you learned about available schools, tutorials, or courses that will sufficiently prepare someone interested in a job using that technology,
whether you like your choice and what you have concluded as a result of your research.
TOPIC: BIOLOGICAL MACROMOLECULES
answer !
1. Define proteins, nucleic acids, carbohydrates and lipids
2. Summarize the general characteristics of each biomolecule and
3. Appreciate the importance of eating a balance diet
What is bookbinding printing? Letterpress or book printing refers to a certain specialized printing process that produces letterpress stationery. Letterpress, also a type of relief printing, is the process of cutting out the surface and printing from the raised residue. You may have seen letterpress paper before. Most modern letterpress papers can be recognized by their distinctive look on thick paper. Today, letterpress printing products are known for their high quality and unparalleled sophistication. Most people are unaware of the long history behind typographic techniques and tools. Modern letterpress products would not have been possible without a combination of centuries of refinement of old letterpress methods and modern polymer plate technology. Get a behind-the-scenes look at how Minted pays tribute to this centuries-old art form, and learn why book printing is a unique fusion of past and present. Browse Minted's hundreds of gorgeous typographic Christmas cards and typographic wedding invitations to find one that fits your style.
history of printing
"Letterpress" or "letterpress" refers to a printing technique developed by German innovator Johannes Gutenberg in the 15th century. Gutenberg was dissatisfied with modern printing methods and saw an opportunity to develop more effective printing techniques. Gutenberg was also driven by his desire to make books more accessible to the general public and improve literacy. Before the invention of the printing press, printing was time consuming, labor intensive and tedious. The pages of the book he carved into individual wooden panels, one at a time. The letters were left intact while the remaining space was clipped, resulting in raised letters. To further complicate this, printing resulted in a mirror version of the stamp or plate used, so all letters and words were upside down. The lettering in relief is then inked and the paper is lightly touched against the wooden panel where the craftsman has inked it. Because of this, the original typography never quite got the embossed look and feel that is so popular today. This made one page of the book. Gutenberg's attempt to change this method began with a small plate containing a single upside-down letter. These panels, called movable types, can be placed on a sturdy wooden frame to form any word or sentence. However, certain images and designs had to be freely engraved on wood or metal plates. Gutenberg used his knowledge from his background in blacksmithing to invent this wooden-framed printing press. There, the letters were coated with a permanent ink that he had prepared. This is another of his famous inventions. The rotating handle of the press allowed the paper to be scrolled. This paper is flattened and pressed against the inked letters on the crate to create the final product. Hence, this process has rightly earned the name "book printing".
letter printing today
Today, typography is making a comeback in high-quality wedding invitations, wedding dates, Christmas and holiday cards, birth announcements, and more. This revival, especially in the last 30 years, is due not only to unique aspects of modern book printing that cannot be replicated by other printing methods, but also to the support of people like Martha Stewart. Stewart praised 1990s typographic products, especially wedding invitations. Consumers saw a tangible quality of the design pressed into the cardboard, called embossing, in the image of the typographic product Stewart was promoting. This has increased the demand for book printing products. However, this was not the intention of the original book publishers. It's actually a result of the recent use of polymer plates. As such, this handmade tactile typographic stationery is notorious for not being representative of historical typographic products. A modern addition to centuries-old typographic technology, this feature embodies a bridge between classical craftsmanship and modern technology. Today, you might also see letterpress variations such as foil stamping and embossing. One of the only drawbacks of modern letterpress technology is that it loses the uniqueness of the original letterpress product. You can print many identical sheets of polymer from one design on your computer, producing indistinguishable products. This consistency may be desirable in some cases. B. Wedding invitations. However, modern letterpress stationery will never have the rare quality of printing made from unique carved panels of wood or metal. I need to print on very thick paper. Cotton paper is ideal for letterpress printing because of its soft feel, texture, and thickness. Also, cotton paper is more environmentally friendly than paper made from trees. Another modern variation of historical typography is blind printing. In blind letterpress printing, the polymer plate is not inked prior to printing.
The following flowchart symbol is used to repeat instructions:
A. Rectangle
B. Square
C. Circle
D. Hexagon
d
Explanation:
⇛σ=
n
∑f(x−
x
)
2
Find f(x-x^-)²
It's
313.29+806.45+474.32+72.9+58.19+532.9+605.16+0+497.29
3360.5
Now
\begin{gathered}\\ \rm\Rrightarrow \sigma=\sqrt{\dfrac{3360.5}{50}\end{gathered}
\begin{gathered}\\ \rm\Rrightarrow \sigma=\sqrt{67.21}\end{gathered}
⇛σ=
67.21
\begin{gathered}\\ \rm\Rrightarrow \sigma=8.2\end{gathered}
⇛σ=8.2
question in the attached img. pls help me thank you in advance
Answer:here you go miss
Explanation:
1.A title bar is a graphical user interface (GUI) component of a software application or Web page.
2. A menu bar is a row or strip of menu items titles that, when clicked, display dropdown menu of other items or commands.
3. The toolbar, also called bar or standard toolbar, is a row of buttons, often near the top of an application window, that controls software functions.
4. Apache Axis (A pache e X tensible I nteraction S ystem) is an open-source, XML based Web service framework.
5. A status bar is located at the bottom of Internet browser windows and many application windows and displays the current state of the web page or application being displayed.
6. VCB box Type in value and press Enter to apply the
value to the active tool (no click required).
ERP customers will store most of their data on cloud servers managed by cloud vendors and store sensitive data on servers they manage themselves. This is known as the _______
ERP customers will store most of their data on cloud servers managed by cloud vendors and store sensitive data on servers they manage themselves. This is known as the cloud ERP.
What is ERP (Enterprise Resource Planning)?The Enterprise Resource Planning or ERP is the software which is used by the organization to manage its essential elements such as sales, marketing, accounting etc.
The cloud used to manage this sensitive data is called the Cloud ERP.
Cloud ERP is the system which runs on the cloud platform of a vendor.This system allow the customers and organization to store and manage their sensitive data.ERP customers will store most of their data on cloud servers managed by cloud vendors and store sensitive data on servers they manage themselves. This is known as the cloud ERP.
Learn more about the Enterprise Resource Planning here;
https://brainly.com/question/14635097
#SPJ1
A(n) _________ database is used to collect data that will be used for spotting trends that offer insights for tactical and strategic business decisions.
An operational database is used to collect data that will be used for spotting trends that offer insights for tactical and strategic business decisions.
What is an operational database?An operational database is known to be a kind of a database management system where one can save and processes data using real- life time.
Therefore, an Operational databases often saves manage and monitors real-time business data . For example, a firm can use their operational database to monitor their warehouse or their stock quantities.
Learn more about database from
https://brainly.com/question/26096799
What is the advantage of selecting the only create connection option when importing data?.
The advantage of selecting the only create connection option when importing data is that there would be no tables or reports that will show in your workbook.
What is only create connection about?The Only Create Connection option only is known to be an option given to a user so that they can save the script in the Excel workbook only.
Conclusively, If a user uses the select the option that is Only Create Connection, a form of data connection will be set up between the database and the workbook that you are working on and then there will be no tables or reports showing in the workbook.
Learn more about data from
https://brainly.com/question/19243813
A distinguishing feature of methods that have the reserved word void in the method header is that they have:.
Answer:
no return statements
Explanation:
A distinguishing feature of methods that have the reserved word void in the method header is that they have no return statement.
What is reserved word?Reserved words are expressions that have been designated for a certain purpose but cannot be used when naming variables. For instance, "print" is a reserved term since it is used to display text on a screen in many different languages.
Operating systems employ reserved words as a way to designate a device file or another service. The MS-DOS and Windows operating systems' reserved terms are listed below.
For instance, if you try to save a file as CON or CON.txt, you can get an error saying the file already exists or that the name is reserved.
Therefore, A distinguishing feature of methods that have the reserved word void in the method header is that they have no return statement.
To learn more about no return statement, refer to the link:
https://brainly.com/question/14894498
#SPJ2
You can access elements in a list by using an index the same way that you can index a character from a.
One can access elements in a list by using an index the same way that you can index a character from indexing into the string.
What is String Indexing?Strings are known to be a form of ordered method of character data, 00:15 and the specific characters of a string.
They can be accessed straight through the use of numerical index. String indexing in Python is known to be a kind of zero-based in nature.
Learn more about indexing from
https://brainly.com/question/4692093