There are different kinds of computer language. The above is an example of Machine language. It is also a kind of input devices.
Why machine language?Machine language is known to be a type of language that can only be understood by a computer. It is therefore very difficult for a person to understand as it is the only thing that the computer system can use.
When a person is trying to find a machine that is needed to access the data, it will be be difficult as one is not familiar with the machine language and what can be the best tool to use.
Learn more about Machine language from
https://brainly.com/question/5045657
Jason is working on a Microsoft Excel worksheet and he wants to create a Print Preview shortcut. His teacher asks him to access the Customization option to create the new shortcut. Which two tabs should Jason select to place the Print Preview shortcut on the worksheet toolbar?
Answer:
New Tab (Custom) and New Group (Custom)
Explanation:
In order to accomplish this Jason needs to use New Tab (Custom) and New Group (Custom). The New Tab (Custom) will allow Jason to add a new tab with the Print Preview shortcut as a brand new tab in the software. Then using the New Group (Custom) tab, Jason can group the Print Preview shortcut with the worksheet toolbar so that it appears as part of the original toolbar with the rest of the tools available in the toolbar.
State what the code will do:
int("76423")
The thing that the code will do: Int("76423"), Asc(" T ") and 12 Mod 5 are:
Take the string "76423" and return the integer 76423.Return the ASCII number for the character "T"Returns the remainder when 12 is said to be divided by 5, i.e. 2.What is Coding?Coding is the process of writing instructions in programming languages for computers, according to the definition. Programming is used to create the websites, apps, and other technologies that we use on a daily basis.
Note that ASCII is the foundation for all character sets used in HTML, on the Internet, and in contemporary computers.
Learn more about ASCII number from
https://brainly.com/question/13143401
#SPJ1
See full question below
State what the code will do: Int("76423"), Asc(" T") and 12 Mod 5.
apa guidelines require that documents are to be aligned___________________.
Documents must be left aligned per Apa guidelines. You should leave the right margin ragged.
The American Psychological Association uses the APA style for referencing sources. The social sciences, including psychology, anthropology, and sociology, as well as other subjects like education, frequently adopt this style of research paper writing. The following sections make up an APA-style paper: title page, abstract, introduction, method, results, discussion, and references. Your essay may also contain a table or numerous figures. Each of the components, as described below, addresses different types of study-related information. An APA in-text citation contains the author's last name and the year of publication (also known as the author-date system). If you're citing a specific section of a source, give a location, such as a page number or timestamp.
Learn more about Apa guidelines here
https://brainly.com/question/9073148
#SPJ4
Write an expression that evaluates to true if the value of the int variable widthOfBox is not divisible by the value of the int variable widthOfBook. Assume that widthOfBook is not zero. ("Not divisible" means has a remainder.)
Answer:
The expression is:
if widthOfBox % widthOfBook != 0
Explanation:
Given
Variables:
(1) widthOfBox and
(2) widthOfBook
Required
Statement that checks if (1) is divisible by (2)
To do this, we make use of the modulo operator. This checks if (1) is divisible by 2
If the result of the operation is 0, then (1) can be divided by (2)
Else, (1) can not be divided by (2)
From the question, we need the statement to be true if the numbers are not divisible.
So, we make use of the not equal to operator alongside the modulo operator
___1. What is the first thing you should do if you received a package?
a. count the number of items c. accept it immediately then leave
b. check out the whole package d. check for the delivery receipt
________2. What should you do with the copy of your request for inspection?
a. return to the delivery man c. dispose it immediately
b. keep the copy of your request letter d. do not accept the letter
________3. What form is used to request for tools and equipment to be used for a
particular job written instruction to perform a work?
a. job order / order forms c. inventory of Materials forms
b. borrower’s forms d. purchase requisition
a control unit consists of a central processing unit (cpu) with an arithmetic logic unit (alu) and registers.
A control unit consists of a central processing unit (CPU) with an arithmetic logic unit (ALU) and registers: True.
What is a CPU?CPU is an abbreviation for central processing unit and it can be defined as the main components of a computer because it acts as the “brain” of a computer and does all the processing, arithmetic calculations, and logical computation (control).
What is a control unit?A control unit (CU) can be defined as a component of a computer's central processing unit (CPU) that is designed and developed to direct the operation of the processor such as processing, arithmetic calculations, and logical computation (control).
In this context, we can reasonably infer and logically deduce that a control unit (CU) typically consists of a central processing unit (CPU) with an arithmetic logic unit (ALU) and then registers.
Read more on control unit here: brainly.com/question/15607873
#SPJ1
Complete Question:
A control unit consists of a central processing unit (CPU) with an arithmetic logic unit (ALU) and registers. True or False?
Write a code in python that guesses a hardcoded answer and keeps on asking the user until the user gets the answer correct. The cmputer should be telling the user if the number they are guessing is too low or too high.
import random
#You can change the range.
answer = random.randint(1,1000)
counter = 0
while(True):
guess = int(input("Make a guess: "))
message = "Too high!" if guess>answer else "Too low!" if guess<answer else "You won!"
print(message)
if(message=="You won!"):
print("It took",counter,"times.")
break
else:
counter+=1
Select the correct navigational path to freeze the top row of your worksheet. Select the panes you wish to freeze. Click the tab on the ribbon to enter the gallery. Then, select the drop-down menu to freeze the panes.
Yeah, Your steps ar correct. Let's analyse those steps more easily by the following steps:
\( \Large{ \boxed{ \bf{ \color{aqua}{Freeze \: panes:}}}}\)
Freeze panes is a feature in spreadsheet applications, such as Microsoft Excel, LibreOffice Calc, and Google Sheets. It "freezes" a row or column, so that it is always displayed, even as you navigate the spreadsheet.
❍ Freezing panes is especially useful if your spreadsheet has a header row, that you want to always be visible.
Select the row below the row(s) you want to freeze. In our example, we want to freeze rows 1 and 2, so we'll select row.Click the View tab on the Ribbon.Select the Freeze Panes command, then choose Freeze Panes from the drop-down menu. ...The rows will be frozen in place, as indicated by the gray line.━━━━━━━━━━━━━━━━━━━━
Answer:
Select the correct navigational path to freeze the top row of your worksheet.
Select the panes you wish to freeze.
Click the ✔ View tab on the ribbon to enter the ✔ Window gallery.
Then, select the drop-down menu ✔ Freeze Panes
to freeze the panes.
Explanation:
Why must you be careful when writinga function template that uses operators such as with its parameters?
When writing a function template that uses operators with its parameters, you must be careful because the behavior of the operators can vary depending on the data types of the parameters.
1. Data type compatibility: Operators have different meanings and behaviors when used with different data types. For example, the '+' operator can be used for both addition and string concatenation. So, if your function template uses the '+' operator with its parameters, you need to ensure that the parameters are compatible with data types.
2. Operator overloading: In C++, operators can be overloaded to perform different operations for different data types. This means that the behavior of an operator can be customized for specific classes or types. If your function template uses an overloaded operator, you need to make sure that the operator is defined and behaves correctly for the data types you are using.
3. Type promotion and conversion: When using operators with different data types, implicit type promotion, and conversion may occur. This can lead to unexpected results if not handled properly. For example, if your function template uses the '/' operator with integer parameters, it performs integer division and truncates the result. To avoid this, you might need to explicitly cast the parameters to the desired data types.
To summarize, when writing a function template that uses operators with its parameters, you must be careful about data type compatibility, operator overloading, and type promotion/conversion to ensure the expected behavior and avoid unexpected results.
To learn more about function templates: https://brainly.com/question/1415456
#SPJ11
1. Which of the following statements is true? a. Interpreted programs run faster than compiled programs. b. Compilers translate high-level language programs into machine language programs. c. Interpreter programs use assembly language as input. d. None of the above
The correct option is b. Compilers translate high-level language programs.
How compilers, interpreted programs, and assembly language are related to each other?
Interpreted programs: Interpreted programs are programs written in high-level languages and are translated to machine code line by line by an interpreter. The code is executed as soon as it is translated into machine code.
Assembly language: Assembly language is a low-level language used by a computer system to communicate with the hardware. Assembly language programs are more efficient than high-level language programs but are more difficult to code. It is because the assembly language involves writing code in binary format.
Compilers: A compiler is a program that translates high-level language programs into machine language programs. The compiler goes through the entire program and converts it into machine code all at once. The resulting code is then executed by the computer to perform the intended task. It is a time-consuming process, but it is more efficient than interpreting code line by line.
The following statement is true regarding the relationship between interpreted programs, assembly language, and compilers: Compilers translate high-level language programs into machine language programs. Hence, the correct option is b.
Learn more about Compilers:
https://brainly.com/question/28390894
#SPJ11
For ul elements nested within the nav element, set the list-style-type to none and set the line-height to 2em.
For all hypertext links in the document, set the font-color to ivory and set the text-decoration to none.
(CSS)
Using the knowledge in computational language in html it is possible to write a code that For ul elements nested within the nav element, set the list-style-type to none and set the line-height to 2em.
Writting the code:<!doctype html>
<html lang="en">
<head>
<!--
<meta charset="utf-8">
<title>Coding Challenge 2-2</title>
</head>
<body>
<header>
<h1>Sports Talk</h1>
</header>
<nav>
<h1>Top Ten Sports Websites</h1>
<ul>
</ul>
</nav>
<article>
<h1>Jenkins on Ice</h1>
<p>Retired NBA star Dennis Jenkins announced today that he has signed
a contract with Long Sleep to have his body frozen before death, to
be revived only when medical science has discovered a cure to the
aging process.</p>
always-entertaining Jenkins, 'I just want to return once they can give
me back my eternal youth.' [sic] Perhaps Jenkins is also hoping medical
science can cure his free-throw shooting - 47% and falling during his
last year in the league.</p>
<p>A reader tells us that Jenkins may not be aware that part of the
least-valuable asset.</p>
</article>
</body>
</html>
See more about html at brainly.com/question/15093505
#SPJ1
How do i fix this? ((My computer is on))
Answer:
the picture is not clear. there could be many reasons of why this is happening. has your computer had any physical damage recently?
Answer:your computer had a Damage by u get it 101 Battery
and if u want to fix it go to laptop shop and tells him to fix this laptop
Explanation:
How do science, mathematics, and technology each influence engineering
Answer:
In order to start engineering you must know the basics Science, Math, and Technology. For example you need math to get all the parts in the right place and fix any pieces that need to be angled right, science because you need to know what happens if you put this with that if it’ll spark break or anything, and technology because you need to know the different pieces and their purpose, hope it helps!
Explanation:
Answer:
Math: By using numbers and some problems are really hard and they like solving them makes some kids want to do engineering
Science: By do expirments and getting kids excited about doing something like engineering
Technolgy: I think this speaks for itself by saying that if you like computers and dealing with technogly you would want to do engineering
Explanation:
state the difference between Ms Word 2003, 2007 and 2010
Answer:
Difference of File Menu between Word 2003, Word 2007 and Word 2010 There is a few difference of the File menu between Classic Menu for Word 2007/2010 and Word 2003. The File drop down menu in Word 2007 and 2010 includes 18 menu items, while 16 menu items in Word 2003.
Explanation:
Think about the different costs for magazine ads. Why do you think it would cost more to have an ad placed on the front or back of the magazine instead of having it inside?
There are two main types of hard drive available to a computer. State what they are and describe their use.
(best answer gets to be the brainliest!)
Answer:
Hard disk drives (HDD), which use one or more rotating discs and rely on magnetic storage, and solid-state drives (SSD), which have no moving mechanical parts, but use flash memory like the kind found in USB flash drives.
Explanation:
Income
Name
Popular
YES/NO
Production Worldwide
Budget(s) Income(5)
Profit
Tax
138.00
150.00
125.00
Spider Man
4 Ben Ten
5 The Avengers
Black Panther
120.00
450.00
400.00
200.00
247.00
7 Bat Man
91.00
100.00
• Doctor Strange
315.00
378.00
Jiron Man 3
200.00
248.00
50.00
100.00
49.00
113.00
10 Mr Maker
* Elmo
142.00
152.00
12 Ant Man
140.00
176.00
1) Thor
Answer:
what-
Explanation:
Just as SQL is the query language for relational databases, _________ is the query language for Mongo databases.
Answer:
MongoDB Query Language (MQL)
Explanation:
A database management system (DBMS) can be defined as a collection of software applications that typically enables computer users to effectively and efficiently create, store, modify, retrieve, centralize and manage data or informations in a database. Thus, it allows computer users to efficiently retrieve and manage their data with an appropriate level of security.
Generally, a database management system (DBMS) acts as an intermediary between the physical data files stored on a computer system and any software application or program.
A relational database can be defined as a type of database that is structured in a manner that there exists a relationship between its elements.
A structured query language (SQL) can be defined as a domain-specific language designed and developed for managing the various data saved in a relational or structured database.
Just as structured query language (SQL) is the query language for relational databases, MongoDB Query Language (MQL) is the query language for Mongo databases.
Some of the basic operations used in MongoDB are create, index, update, delete, and find record.
What is the total number of counts for
one whole note plus one dotted half
note plus two quarter notes minus one
half note multiplied by one half note?
Answer:
i belive your answer would be 32 because
Explanation:
whole note =4 beats
dotted half note =3 beats
and 2 quarter notes get =8 beats
all of that added together equals 18 minus half note =2 beats
which=16 times a half note which =2 would give you your answer 32
Answer:
I would say its 32 because
Explanation:
whole note =4 beats
dotted half note =3 beats
and 2 quarter notes get =8 beats
all of that added together equals 18 minus half note =2 beats
which=16 times a half note which =2 would give you your answer 32
what is game development
video game development is the process of developing a video game
Explanation:
the effort undertaken by the developer ranging from single person to an entire team
Answer:
Game Development is about creating games. It describes about the design, and how it was developed and released. It may involve concept generation, design, build, test and release. While you create a game, it is important to think about the game mechanics, rewards, player engagement and level design.
a hard disk is a _ storage device
electro-mechanical data storage device
To collaborate on a project using Pinterest, students can___
A group of hackers obtains access to an organization's information network and temporarily shuts it down so that no users can access the network. This is an example of a) Sabotage
b) Cyberespionage
c) Spear phishing
d) Denial of service
Denial of service. A group of hackers obtains access to an organization's information network and temporarily shuts it down so that no users can access the network is an example of a Denial of service attack (DoS). The correct option is D. Denial of service.
In this type of attack, an attacker aims to overwhelm a server, website, or network with traffic to make it unavailable to users and legitimate traffic.The other options are not the correct answers:
Sabotage: Sabotage is a deliberate act of destruction or damage to an organization's infrastructure, assets, or resources to interrupt operations and cause economic damage. It can be done physically or electronically.
Cyberespionage: It is an act of stealing valuable information from an organization by unauthorized access. Cyber espionage involves spying on a target organization's online activities, such as data, confidential information, intellectual property, or proprietary data.
Spear phishing: It is an attack aimed at a particular individual, organization, or entity, which trick the target into revealing confidential information, such as login credentials, bank account numbers, credit card information, or sensitive data.
To know more about network visit:
https://brainly.com/question/33577924
#SPJ11
Which of the following statements tests if students have a grade of 70 or above, as
well as fewer than five absences? (5 points)
if (grade > 70 or daysAbsent <= 5):
if (grade > 70 and daysAbsent <= 5) :
if (grade >= 70 and daysAbsent <= 5):
if (grade >= 70 or daysAbsent <= 5) :
Let's try to find a relationship between Y and X in the graph
0 - 95
1 - 85
2 - 90
The following statements tests if students have a grade of 70 or above, as well as fewer than five absences. Between these three points we see that (95 + 85) / 2 = 90
3 - 80
4 - 70
5 - 75
What placed between the points?Between these three points we see that (80 + 70) / 2 = 75
Wese e that the difference between the value 2 and value 3 is : 90 - 80= 10
So, the sixth value will be 75 - 10 = 65
The seventh value is (75 + 65)/2 = 70
The seventh value will probably be 70
well as fewer than five absences if (grade > 70 or daysAbsent <= 5): if (grade > 70 and daysAbsent <= 5) : if (grade >= 70 and daysAbsent <= 5):if (grade >= 70 or daysAbsent <= 5)
Therefore, The following statements tests if students have a grade of 70 or above, as well as fewer than five absences. Between these three points we see that (95 + 85) / 2 = 90
3 - 80
4 - 70
5 - 75
Learn more about points on:
https://brainly.com/question/1590611
#SPJ1
Which security option should be used to ensure the integrity and validity of an Access database?
digital signature
database password
trust center options
start-up options
Answer:
The best security which could be used to ensure integrity and validity of Access database is:
O. database password
Explanation:
Database password is the only option that best guarantee the integrity of an Access database due to the fact that, it limits the number of people who would be able to have access to it. This password is an administrative right given to those who are meant to access it and it is expected to be renewed every few months (probably every 3 months).
Without the password, no other person can be able to login. Also, no two individual can be able to login in same time using same credential login details assigned (that is, in scenario of using the same Username and password)
Answer:
A) digital signature
Explanation:
Explain the application of artificial applications.
Explanation:
AIAI or artificial intelligence is the simulation of human intelligence processes by machines, especially computer systems. These processes include learning, reasoning and self-correction. Some of the applications of AI include expert systems, speech recognition and machine vision. Artificial Intelligence is advancing dramatically. It is already transforming our world socially, economically and politically.
AI was coined by John McCarthy, an American computer scientist, in 1956 at The Dartmouth Conference where the discipline was born. Today, it is an umbrella term that encompasses everything from robotic process automation to actual robotics. AI can perform tasks such as identifying patterns in the data more efficiently than humans, enabling businesses to gain more insight out of their data. With the help from AI, massive amounts of data can be analyzed to map poverty and climate change, automate agricultural practices and irrigation, individualize healthcare and learning, predict consumption patterns, streamline energy-usage and waste-management.
Answer:
May not be as long as the other answer but here is what I got
Explanation:
AI or artificial intelligence is the simulation of human intelligence processes by machines, especially computer systems. These processes include learning, reasoning and self-correction. Some of the applications of AI include expert systems, speech recognition and machine vision.
Please mark as brainliest
For questions 1-3, consider the following code:
x = int (input ("Enter a number: "))
if x 1 = 7:
print("A")
if x >= 10:
print("B")
if x < 10:
print("C")
if x % 2 == 0:
print("D")
Answer:
A
Explanation:
Which device used as input, output and storage?
A computer can be used as an input, output and storage device.
What are the inputs, outputs and storage devices are used in the computer? The inputs, outputs and storage devices used in a computer are essential components of the system. Inputs are used to provide data and instructions to the computer, while outputs are used to present the results of the computer's processing. Storage devices are used to store and retrieve data and programs.Inputs come in many forms, including a keyboard, mouse, microphone, touch screen, scanner, and camera. Outputs include monitors, speakers, and printers. Storage devices include hard disks, solid state drives, USB drives, DVDs, and tape drives.Inputs, outputs, and storage devices are all necessary for a computer to do its job. Without them, the user would not be able to provide instructions to the computer or receive the results of its processing. Storage devices are also necessary for the user to store data and programs for later use.To learn more about storage refer to:
https://brainly.com/question/24227720
#SPJ4
11. Mrs Lowery prefers ta insert her own eve droph. As you ebse fow hef deine so, what key aspects of the administration procedure should she be doing to ensure coerect techinizue? 12. Mrs. Loweryrefuses the extenderor spacer for her Combinent inhaler, telling you, "7t's too much trouble, "How would you explain the benefits of its use to her?
To ensure correct technique when inserting her own eye drops, Mrs. Lowery should follow these key aspects of the administration procedure:
1. Wash hands: Mrs. Lowery should thoroughly wash her hands with soap and water before handling the eye drops to prevent any potential contamination.
2. Tilt head back: Mrs. Lowery should tilt her head back slightly, looking up towards the ceiling. This helps to create a clear pathway for the eye drops to enter the eye.
3. Pull down lower eyelid: Using a clean finger, Mrs. Lowery should gently pull down her lower eyelid to create a small pocket.
4. Administer drops: With the eye drop bottle held close to her eye, Mrs. Lowery should squeeze the bottle to release a single drop into the lower eyelid pocket. It's important to avoid touching the eye or eyelashes with the dropper tip.
5. Close eyes gently: After applying the eye drops, Mrs. Lowery should close her eyes gently and keep them closed for a few minutes. This allows the medication to spread evenly across the eye's surface.
6. Avoid blinking excessively: Mrs. Lowery should try to minimize blinking immediately after applying the eye drops to prevent the medication from being expelled from the eye.
12. The extender or spacer for the Combinent inhaler offers several benefits that Mrs. Lowery should consider:
1. Improved medication delivery: The extender or spacer helps to ensure that the medication is properly delivered to the lungs. It increases the effectiveness of the inhaler by allowing more time for the medication to be inhaled.
2. Reduced side effects: Using the extender or spacer can help reduce the risk of side effects such as sore throat or oral thrush. It prevents the medication from directly contacting the mouth and throat.
3. Increased ease of use: While Mrs. Lowery may find it troublesome initially, using the extender or spacer can actually make it easier to use the inhaler. It provides a larger surface area for the medication to disperse, making it simpler to inhale.
4. Better coordination: The extender or spacer helps individuals coordinate their inhalation with the activation of the inhaler. This can be particularly helpful for those who struggle with timing or coordination.
By explaining these benefits to Mrs. Lowery, she may be more inclined to consider using the extender or spacer with her Combinent inhaler, as it can improve the effectiveness and ease of use of her medication.
To know more about administration visit :-
https://brainly.com/question/33766641
#SPJ11
write a qbasic programming to calculate and display the total price of 100 pens if a pen costs Rs.20?
Answer:
2000
Explanation:
if one pen cost 20 then 100 pen=20×100=2000