Answer:
c
Explanation:
Which type of input device can identify users based on their voice?
The first computer mouse was publicly unveiled by Douglas C. Engelbart in 1968 at the fall joint computing conference in San Francisco.
A computer is a device that performs a variety of tasks, including processing data, storing information, and conducting arithmetic and logical operations, among others. Input devices are the hardware components in charge of delivering data to the computer system, where it is processed. Input is the term used to describe the information that a computer processes. There are many different types of input devices, including a mouse, keyboard, scanner, and joysticks. The first computer mouse was publicly unveiled by Douglas C. Engelbart in 1968 at the fall joint computing conference in San Francisco. The computer mouse was really created in 1964.
Learn more about Input devices here:
https://brainly.com/question/13014455
#SPJ4
What are the best ways to conduct research for a presentation? Check all that apply.
ask a friend
go to the library
talk to an expert
search the Internet
visit with a neighbor
Personally I think it is C and D,
but Edge probably has something
else to say. :P
Answer:
confident
Explanation:
and some more add-ons:
A short intro
Poster presentation
Practice your delivery
simple and strong convey
Eye contact
and
last but not least *keep smiling*
The best ways to conduct research for a presentation? is to
Go to the library.Talk to an expert Search the Internet.Why is it vital to conduct a research presentation?It is one that gives a person the ability to stand for their science. When a person stands for their field of interest, it helps researchers in other disciplines, to be more aware.
Note that by doing the above steps, such as Talking to an expert, one van be able to conduct research for a presentation.
Learn more about presentation from
https://brainly.com/question/24653274
#SPJ2
Which of the following statements is not true about variables?
They store values that can change as a program executes.
They are declared with the DECLARE statement.
They can be declared with an expression that's used as the default value.
They must have names that are different from the names of any columns used in any SELECT statement within the stored
program.
They store values that can change as a program executes is not true about variables. Hence option a is correct.
What are variables?Variables are defined as a value that is subject to vary depending on external factors or input to the program. In any programming language, a variable is a designated chunk of computer memory with some data within.
An element cannot be taken away. A amount is represented by a variable. As a result, X is a quantity that is 1. Variables can only be defined once. The variable cannot be declared again once it has been defined. The overall variable costs vary directly as a function of activity level, or the quantity produced.
Thus, they store values that can change as a program executes is not true about variables. Hence option a is correct.
To learn more about variables, refer to the link below:
https://brainly.com/question/17344045
#SPJ1
The following code should take a number as input, multiply it by 8, and print the result. In line 2 of the code below, the * symbol represents multiplication. Fix the errors so that the code works correctly: input ("Enter a number: ") print (num * 8)
Answer:
The correct program is as follows:
num = float(input ("Enter a number: "))
print(num * 8)
Explanation:
Notice the difference between (1)
num = float(input ("Enter a number: "))
print (num * 8)
and (2)
input ("Enter a number: ")
print(num * 8)
Program 1 is correct because:
- On line 1, it takes user input in numeric form, unlike (2) which takes it input as string
- On line 2, the program multiplies the user input by 8 and prints it out
How do I check my progress on Quizlet?
To check your progress on Quizlet, you can go to the "My Sets" tab. Here, you can view your progress on each set and overall progress. Additionally, you can take a practice test to see how much you have learned.
To check your progress on Quizlet, follow these steps:
1. Go to the Quizlet website and log in to your account.
2. Click on your profile picture in the top right corner of the page.
3. Select "Your Study Sets" from the drop-down menu.
4. Find the study set that you want to check your progress on and click on it.
5. On the study set page, you will see a progress bar at the top of the page that shows how much of the study set you have completed.
6. You can also click on the "Progress" tab on the study set page to see more detailed information about your progress, including your mastery level, the number of terms you have learned, and the number of terms you still need to learn.
Learn more about Quizlet
https://brainly.com/question/30407738
#SPJ11
What is tahe difference between a cone and a prism
prism is (geometry) a polyhedron with parallel ends of the same size and shape, the other faces being parallelogram-shaped sides while cone is (label) a surface of revolution formed by rotating a segment of a line around another line that intersects the first line.
P1: Write a function called FindPrimes that takes 2 scalars, lowerRange and upperRange, and produces a 1D array called outPrimes1. The function finds all the prime numbers within the range defined by lower Range and upperRange. The output outPrimes1 is a 1D array with all the primes within the specified range. Remember that a prime number is a whole number greater than 1 whose only factors are 1 and itself. The input arguments (lowerRange, upperRange) are two (numeric) scalars. The output argument (outPrimes1) is a 1xm (numeric) array. Restrictions: Do not use the primes() function. Hint: use a for loop to go through the entire range and check if the number is prime or not using the isprime() function. For example: For the given inputs: lowerRange = 2; upperRange= 20; On calling FindPrimes: outPrimes1 Find Primes (lower Range, upperRange) produces, outPrimes1 = 1x8 2 3 5 7 11 13 17 19 In outPrimes1 all the prime numbers contained within the range of lowerRange=2 and upperRange=20 are shown. P2 Complete the function FindPrimes to produce a 1D array called outPrimes2. outPrimes2 is a copy of outPrimes1 but contains only the prime numbers that summed together are less than the highest element of outPrimes 1. The input arguments (lowerRange, totalNumbers) are two (numeric) scalars. The output argument (outPrimes2) is a 1 x n (numeric) array. Restrictions: Do not use the primes() function. Hint: use a while loop to go through the outPrimes1 array and and check if the total sum is lower than the highest primer number in outPrimes1. For example: For the given inputs: lower Range = 2; upperRange=20; On calling FindPrimes: outPrimes2= Find Primes (lower Range, upperRange) produces, outPrimes2 = 1x4 2 3 5 7 The output outPrimes2 only contains the prime numbers 2 3 5 7. The sum of all the prime numbers in outPrimes2 is 17, less than 19, which is the highest prime number in outPrimes1. Function > 1 function [outPrimes1, outPrimes2] = FindPrimes (lower Range, upper Range) %Enter your name and section here 2 3 4 endl Code to call your function > 1 lower Range = 2; 2 upperRange=20; 3 [out Primes1, outPrimes2]=FindPrimes (lower Range, upper Range) Save C Reset MATLAB Documentation C Reset
The function FindPrimes takes two scalar inputs, lowerRange and upperRange, and returns two 1D arrays: outPrimes1 and outPrimes2. The function finds all the prime numbers within the range specified by lowerRange and upperRange.
1. The FindPrimes function first uses a for loop to iterate through the entire range defined by lowerRange and upperRange. Within the loop, each number is checked for primality using the isprime() function. If a number is found to be prime, it is appended to the outPrimes1 array.
2. Once outPrimes1 is populated with all the prime numbers within the range, a while loop is used to iterate through the elements of outPrimes1. The loop checks if the sum of the prime numbers encountered so far is less than the highest prime number in outPrimes1. If the sum is less, the prime number is appended to the outPrimes2 array.
3. Finally, the function returns both outPrimes1 and outPrimes2 as output. outPrimes1 contains all the prime numbers within the specified range, while outPrimes2 contains a subset of prime numbers whose sum is less than the highest prime number in outPrimes1.
4. In the given example, FindPrimes with lowerRange = 2 and upperRange = 20 would produce outPrimes1 = [2, 3, 5, 7, 11, 13, 17, 19] and outPrimes2 = [2, 3, 5, 7]. The sum of the prime numbers in outPrimes2 is 17, which is less than the highest prime number in outPrimes1 (19).
Learn more about for loop here: brainly.com/question/30494342
#SPJ11
What happens when a user clicks the question mark at the top of the Backstage view?
O It shifts the view to the main window.
It makes the Tell Me text box appear.
O It opens the PowerPoint Help interface.
O It opens the Microsoft Help website online.
Answer:
D
Explanation:
Access to recent opened files, information about the permissions, sharing, and versions of the open file, the ability to create a new file, and printing are all available from the backstage view. Along with other details (properties), the Backstage View offers the following about the file. .file size Thus, option D is correct.
What question mark at the top of the Backstage view?You may save, open, print, and share your presentations in a number of ways using the backstage view. Click the File tab on the Ribbon to see Backstage view. When you select the Info option in the Backstage View, additional details about the file are also made available, including the following.
The Microsoft Office Backstage view appears when a Microsoft Office program is launched or when you click the File tab. Backstage is where you should go if you need to make a new file, open an existing file, print, save, change options, or do anything else.
Therefore, It opens the Microsoft Help website online.
Learn more about Backstage view here:
https://brainly.com/question/27362542
#SPJ2
How did tribes profit most from cattle drives that passed through their land?
A.
by successfully collecting taxes from every drover who used their lands
B.
by buying cattle from ranchers to keep for themselves
C.
by selling cattle that would be taken to Texas ranches
D.
by leasing grazing land to ranchers and drovers from Texas
The way that the tribes profit most from cattle drives that passed through their land is option D. By leasing grazing land to ranchers and drovers from Texas.
How did Native Americans gain from the long cattle drives?When Oklahoma became a state in 1907, the reservation system there was essentially abolished. In Indian Territory, cattle were and are the dominant economic driver.
Tolls on moving livestock, exporting their own animals, and leasing their territory for grazing were all sources of income for the tribes.
There were several cattle drives between 1867 and 1893. Cattle drives were conducted to supply the demand for beef in the east and to provide the cattlemen with a means of livelihood after the Civil War when the great cities in the northeast lacked livestock.
Lastly, Abolishing Cattle Drives: Soon after the Civil War, it began, and after the railroads reached Texas, it came to an end.
Learn more about cattle drives from
https://brainly.com/question/16118067
#SPJ1
Do you think that smart televisions are going to replace media players?
Answer:
yes because smart television give more information
How is new operator different than malloc? (2 marks)
What is the difference between function overloading and operator
overloading? (2 marks)
Difference between new operator and malloc: Memory Allocation, Type Safety, Constructor Invocation, Return Type, Error Handling:.
Memory Allocation: The new operator is used in C++ to dynamically allocate memory for objects, while malloc is a function in C used for dynamic memory allocation.
Type Safety: The new operator ensures type safety by automatically determining the size of the object based on its data type, while malloc requires manual specification of the size in bytes.
Constructor Invocation: When using new, the constructor of the object is called to initialize its state, whereas malloc does not invoke any constructor. This allows new to handle complex objects with constructors and destructors, while malloc is suitable for allocating raw memory.
Return Type: The new operator returns a pointer to the allocated object, automatically casting it to the appropriate type. malloc returns a void* pointer, requiring explicit casting to the desired type.
Error Handling: If the new operator fails to allocate memory, it throws an exception (std::bad_alloc), whereas malloc returns NULL if it fails to allocate memory.
Difference between function overloading and operator overloading:
Function Overloading: It allows multiple functions with the same name but different parameters in a class or namespace. The compiler differentiates between these functions based on the number, types, or order of the parameters. Function overloading provides flexibility and code reusability by allowing similar operations to be performed on different data types or with different argument combinations.
Operator Overloading: It enables operators such as +, -, *, /, etc., to be redefined for custom types. It allows objects of a class to behave like built-in types with respect to operators. Operator overloading is achieved by defining member functions or global functions with the operator keyword followed by the operator symbol. It provides a concise and intuitive way to work with objects, enabling natural syntax for custom operations.
In summary, function overloading is used to define multiple functions with the same name but different parameters, while operator overloading allows custom types to redefine the behavior of operators.
Learn more about operator from
https://brainly.com/question/29673343
#SPJ11
Setting the word "falling" to a descending scale is an example of
a. scat-singing.
b. syllabic text setting.
c. word-painting.
d. vocalize.
Setting the word "falling" to a descending scale is an example of word-painting.
What is meant by word-painting?
Word painting, also known as tone painting or text painting, is the musical technique of composing music that reflects the literal meaning of a song's lyrics or story elements in programmatic music.Word painting is the technique of creating lyrics that reflect literally alongside the music of a song and vice versa. For example, singing the word “stop” as the music cuts out. Depending on which you write first (music or lyrics) it can be carried out in any order.Using the device of word painting, the music tries to imitate the emotion, action, or natural sounds as described in the text. For example, if the text describes a sad event, the music might be in a minor key. Conversely, if the text is joyful, the music may be set in a major key.To learn more about word-painting refers to:
https://brainly.com/question/26603147
#SPJ4
and
Why the computer is called dilligent
Versatile machine?give long answer
Answer:
The answer to this question is given below in this explanation section.
Explanation:
"Why the computer is called diligent
Versatile machine"
Computer is called versatile machine because it is used in almost all the fields for various purposes.Because it can perform the task repeatedly without loosing its speed and accuracy for a long time.They are versatile because they can be used for all sorts of task.They can also do many of the same tasks in different ways.Computer is the electronic device which perform the logical and mathematical calculation.Computer is known as the versatile machine because it is very fast in every field and its part of life without it was cannot imagine life.
It can do the work faster and in every field the computer is used for making their work faster.
It can perform the work fast so it is called versatile machine.
Advantages of versatile machine:
Computer are very fast due to which thousand of job can be performed within the short period of time.Complex mathematical problems and logical operations can be solved by using this computer.As computer is versatile device,multiple task like communication,graphics,documentation can be done.Disadvantages of versatile machine:
Computers are machine hence they have no brain so they work according to the program instruction set inside it.It is an electronic deice and it uses electronic sources to work,So it is very risk to store data and information on the computer independently because some electric and electronic damages may damage the data.So we have to make regular backup of the data.ITEMS
Evan spent 25% of his money on rent and g on food, together his
expenses totaled to $75.00. Calculate the total amount of money Evan had
Answer:
Total money he had = $136 (Approx.)
Explanation:
Given:
Spend on rent = 25%
Spend on food = 30%
Total of expenses = $75
Find:
Total money he had
Computation:
Total money he had = [Total of expenses][100/ (Spend on rent + Spend on food)]
Total money he had = [75][100/ (25 + 30)]
Total money he had = [75][100/ (55)]
Total money he had = 136.36
Total money he had = $136 (Approx.)
Write an extensive note on register and type of register .
a very long note that will give me enough mark.
I WILL MARK U BRAINLEST
30 POINTS
The term ________ is used to describe any mechanism that accepts input, performs some operation that cannot be seen on the input, and produces output.O Black boxO BooleanO isIntegerO Error trap
The term "Black box" is used to describe any mechanism that accepts input, performs some operation that cannot be seen on the input, and produces output. In this context, the "mechanism" is the black box, the "input" is the data fed into the system, and the "operation" is the unseen process occurring within the black box to generate the output.
A mechanism is referred to as a "black box" if it accepts input, executes a function, and outputs results.The mechanism itself is the "black box," which is opaque in the sense that the user cannot see or understand how it functions internally.Data is fed into the system as input, and the black box processes the data to create output.The mechanism that the black box uses to transform input and produce output is known as the operation.The phrase "black box" is frequently used in contexts like software testing, where it is possible to test a system's behaviour without being aware of its internal workings.Learn more about the Black box :
https://brainly.com/question/31537941
#SPJ11
[ANSWER = BRAINLIEST] How to mark an answer as brainliest?
Answer:
once your question is answered you get an option available on the bottom of the answer
see attached
and you click on Mark as brainliest
Answer:
You are able mark a question Brainliest when there are 2 existing answers, or if 1 answer has existed for a while.
Hope this helps! Now get in there and mark me Brainliest! :v
LOL...s o r r y
Describe the types of digital cameras, how they store captured images, and how to transfer photos to a computer.
Answer:
your answer will be a please make me brainliest!!!
Explanation:
In which number system do the digital computer work
The numbers that are operated on by a digital computer is known as the binary number system; binary digits, or bits. These are 0's and 1's.
Deon is setting up a three point lighting system to light an object in his scene which of the following lights is usually the largest and points in a direction opposite the main light
Answer:
The fill light.
Explanation:
Kyle is searching for the solver function but cannot seem to find it anywhere, not even under the Data tab in the
ribbon
Answer:
A) If it is not on the ribbon, it has not been activated; Kyle needs to activate it under Add-Ins in the Excel Options dialog box.
Explanation:
In order to activate the Solver Function:
1. File Tab, click Options and open the Excel Options dialog box.
2. Under Add-Ins, select Solver Add-in and click on the Go button.
3. Check Solver Add-in and click OK.
You hide three worksheets in a workbook and need to unhide them. How can you accomplish this?.
Answer:
1. Right-click the sheet tab you want to hide, or any visible sheet if you want to unhide sheets.
2. On the menu that appears, do one of the following: To hide the sheet, select Hide. To unhide hidden sheets, select them in the Unhide dialog that appears, and then select OK.
Explanation: have a good day!
I need some help with this project. The picture of the assignment is above
Answer:
sorry
Explanation:
you need to do this on your own Wahhabi
but if you sub to my you-tube channel at chris got ha,x i will help you out
why is computer called an information processing device ?
Since, the computer accepts raw data as input and converts into information by means of data processing, it is called information processing machine (IPM).
Computer is called information processing machine because it gives you meaningful information after processing raw data......
which port is the most common port found on today's computing devices?
The most common port found on today's computing devices is the USB (Universal Serial Bus) port. The USB is a popular type of wired connection technology used to connect devices to computers or laptops.
It is used to connect peripherals such as keyboards, mice, cameras, printers, flash drives, and external hard drives to a computer or laptop.A USB port is usually found on almost all computing devices. It is not only found on computers and laptops, but also on smartphones, tablets, gaming consoles, and many other electronic devices. A USB port provides a fast and efficient data transfer between devices.
The first USB standard was introduced in 1996, and since then, the technology has undergone several improvements, including increased data transfer speeds and the ability to charge devices.USB ports come in different versions, including USB 1.0, USB 2.0, USB 3.0, and USB 3.1.
To know more about wired connection visit:
https://brainly.com/question/29272212
#SPJ11
42. What step, in the basic communication model, is defined as "just as technology continues to increase the number of media options, it also continues to provide new communication channels senders can use to transmit their messages.". 43. This trait of professionalism means "knowing how to contribute to a larger cause". 44. Presentation expert Cliff Atkinson defines this as "a line of communication created by people in an audience to connect with others inside or outside the room, with or without knowledge of the speaker.
The step described in the basic communication model is the "Encoding" step. Encoding refers to the process of converting the sender's message into a form that can be transmitted through various communication channels and media options.
The engagement trait of professionalismThe trait of professionalism being referred to is "Engagement." Engagement in professionalism means actively participating and contributing to a larger cause or purpose, rather than just focusing on individual tasks or responsibilities.
The term defined by Cliff Atkinson is "Backchannel." Backchannel communication refers to the line of communication established by audience members to connect with others inside or outside the room, regardless of their knowledge of the speaker. It can involve various means such as messaging, social media, or other forms of communication that occur alongside the main presentation or speech.
Read mroe on encoding here https://brainly.com/question/3926211
#SPJ1
In the following scenario, which can a photo editor digitally do to photos that could not be done before?
A photo shoot for a new advertising campaign has just finished. The ad campaign is for a new line of makeup from an international beauty corporation. The photo spread includes several close-up shots of models wearing the different makeup products.
Add a soft focus to the image.
Remove freckles from the model’s face.
Add a warm glow to the entire photo.
Enhance the color of the makeup and tone down the color of the model’s skin.
Answer:
if you didn't yet already do the question think the answer is D
Explanation:
which of the following combinations of keys is used as a short for saving a document on a computer
ctrl+s
is used to save
Hope this helped
-scav
What is an easy and accurate way that a graphic designer can increase the size of a digital shape while keeping the ratio of height to width the same?
First make the height taller, and then drag the width by using one’s eyes to try to make sure the proportions stay the same.
Hold the key, such as Shift, that the program uses to make sure all dimensions are adjusted while dragging just one side.
Open the shape’s properties window, and type the height value multiplied by 2 and the width value multiplied by 3.
First convert the shape into a photo file, and then digitally manipulate it in a program such as Adobe Photoshop.
Answer:
Open the shape’s properties window, and type the height value multiplied by 2 and the width value multiplied by 3.
Explanation:
Answer: A resolution independent, vector graphics and illustration application used to create logos, icons, drawings, typography and complex illustrations for any medium.
explanation:
because it is what it is
What voting rights law did you choose?
Answer:
FREE AND FAIR ELECTION
Answer:
I Dont even know.. to be honest
Explanation: