Answer:
Its true.
Explanation:
Which of the following is not a type of digital signature?
a. Approval Signatures
b. Non-Certified Signatures
c. Visible Digital Signature
d. Invisible Digital Signature
Answer:
d
Explanation:
Term that doesn't belong to a type of digital signature is Invisible Digital Signature.
What is digital signature?A digital signature can be regarded as the mathematical technique used to validate the authenticity and integrity of a message.
Examples of type of digital signature are:
Approval SignaturesNon-Certified SignaturesVisible Digital SignatureTherefore, option D is correct.
Learn more about digital signature at;
https://brainly.com/question/24448358
What is the difference between a programming language and natural (every-day) language?
Is a free verse a poetry that has no images
A Task can be created in Outlook 2016 by clicking on the Tasks navigation item, or by
O clicking on the View tab.
O saving a contact.
O creating an appointment.
O flagging an email.
A Task can be created in Outlook 2016 by clicking on the Tasks navigation item, or by clicking on the View tab. Thus, option A is correct.
What is a Variable Expense?Business expenses can be classified as either fixed (invariable) or variable. A fixed expense does not change based on a business’s other activities. Costs like rent and administrative salaries are fixed costs, which remain the same no matter how much a business is producing. Imagine a factory that produces pencils — the cost of renting the factory building will remain the same, month after month, no matter how many pencils the company actually produces.
Variable expense ratio expresses variable expenses as a proportion of a company's sales. To calculate the variable expense ratio, simply divide the company's total variable expenses by the company's total net sales. To express the result as a percentage, simply multiply it by 100.
Therefore, A Task can be created in Outlook 2016 by clicking on the Tasks navigation item, or by clicking on the View tab. Thus, option A is correct.
Learn more about variable expense on:
https://brainly.com/question/13097236
#SPJ5
Recently, Walmart offered a wireless data contract based on bandwidth used, with a minimum monthly charge of $42 for up to 5 gigabytes (GB) of use. Additional GB can be purchased at the following rates: $12 for an additional 1 GB, $28 for an additional 3 GB, and $44 for a capacity of 10 GB. What is the cost for a user who is expecting to use 9 GB
Answer:
For 9GB of data the user would pay $82 monthly!
Explanation:
To start off, our end goal is 9GB. We have the equation 9 = ? We can add up to our solutions with 1GB, 3GB, and 10GB. We can immediately rule out 10GB, since 9GB ≠ 10GB. To cost the least amount of money we can add up 3GB and 1GB = 4GB + 5GB = 9GB!
So, our equation is 3GB + 1GB + 5GB = 9GB, now lets figure out the cost!
$28 + $12 + $42 = $82
For 9GB of data the user would pay $82 monthly!
Hope this Helps! :)
Have any questions? Ask below in the comments and I will try my best to answer.
-SGO
How many passes will it take to find the four in the list 4,5,6,7,8,9,10
Answer:
1
Explanation:
Consider a file/directory with the following info:
-rwxr-x--x 1 milk milk 1858 May 1 16:29 abc
Which of the following statement(s) is/are true for the file/directory? Pick ONE OR MORE options
a. abc is a directory.
b. The group the owner belongs to can read and execute abc.
c. All other users can execute abc.
d. The owner can not execute abc.
Answer:
The statement that is true for the file/directory is:
a. abc is a directory.
Explanation:
A file directory is a computer filing system with cataloging and referencing structure to computer files and other directories. Also known as folders or drawers, directories are like the workbench or traditional office filing cabinet. Information is stored in files, which are then stored in directories (folders). Directories can also store other directories to form a directory tree.
Thus the above approach is right.
Learn more about the directory here:
https://brainly.com/question/7007432
list the difference between sdram and dram
Answer:
i need this for a challenge
Explanation:
What is the BCC feature used for?
to format email message text in a custom font
to format email message text in a blind font
to send a courtesy copy of an email to someone who does not need to take action
to send an email to someone without revealing that person’s email address to others on the distribution list
Answer:
to send an email to someone without revealing that person’s email address to others on the distribution list
Explanation:
BAM
To send an email to someone without revealing that person’s email address to others on the distribution list.
What is BCC?
"Blind carbon copy" is referred to as BCC. BCC is a similar method to CC for forwarding copies of an email to additional recipients. When CC is used, a list of recipients is shown; when BCC is used, a list of recipients is not visible.
Because the other receivers won't be able to see that the email has been forwarded to another person, it is known as a blind carbon copy.
Carbon copy is referred to as a "CC" in email communication. When there was no internet or email, you had to sandwich a piece of carbon paper between the paper you were writing on and the paper you wanted to use as your copy in order to make a copy of the letter you were writing.
Therefore, To send an email to someone without revealing that person’s email address to others on the distribution list.
To learn more about BCC, refer to the link:
https://brainly.com/question/29398332
#SPJ6
. Else-if is good selection statement that help us to solve problems in C++,mostly times same problem of same nature can also be solved via switch statement. Which one you prefer to use and why?
Answer:
Else-If statements
Explanation:
Personally, I prefer using Else-If statements for conditional statements since you can start with and If statement and add to it if necessary. Aside from this, Else-If statements also allow you to add more than one condition to be met by using tags such as and or and not. Switch statements are better in scenarios where you have a set of possible inputs or results and need a specific event to happen for each input/result, but this is not as common of a scenario so Else-If is usually my go-to conditional statement.
NEED HELP 100 POINTS FOR ANSWER AND BRAINIEST!!! Which comparison operator is used to signify that a value is not equal to another value?
<>
<<
>=
=
Answer:
We use SQL Not Equal comparison operator (<>) to compare two expressions. For example, 10<>11 comparison operation uses SQL Not Equal operator (<>) between two expressions 10 and 11
Explanation:
<> operator is used to signify that a value is not equal to another value , Option A is the correct answer.
What are Comparison Operators ?An operator used to compare or relate the value of two number or string is called a Comparison operator.
The value of 0 or 1 is returned on using Comparison Operators.
<> , Not equal to operator signifies that the value are either greater than or less than the other value but not equal in any case.
Therefore <> operator is used to signify that a value is not equal to another value.
To know more about Comparison Operators
https://brainly.com/question/15260168
#SPJ2
given a number n for each integer i in the range from 1 to n inclusive print one value per line as follows fizzbuzz if __name__
Answer:
The program in Python is as follows:
def fizzBuzz(n):
for i in range(1,n+1):
print(i)
if __name__ == '__main__':
n = int(input().strip())
fizzBuzz(n)
Explanation:
This declares the fizzBuzz function
def fizzBuzz(n):
This iterates from 1 to n
for i in range(1,n+1):
This prints every number in that range; one per line
print(i)
The main begins here
if __name__ == '__main__':
This prompts user for input
n = int(input().strip())
This calls the fizzBuzz function
fizzBuzz(n)
which of the following is not a type of operating system software?
a) windows b) linux
c)Macintosh d) Communications and organization
Answer:
the answer is communication abd organization
The option that is not a type of operating system software is called; D: Communications and organization
What are the types of Computer operating system?An operating system is defined as a type of software that manages the hardware and software of a computer as well as provision of common services.
The most popular Operating Systems for computers are Windows, Linux, Macintosh. Whereas, the popular types of operating systems for phones are iOS, Android, and Windows.
Read more about Computer Operating System at; https://brainly.com/question/1763761
#SPJ9
In the graph shown here, by what percentage are the number of people in computer occupations in general projected to increase?
21%
26%
10%
12%
The number of people in computer occupations in general is projected to increase at 12%
The chartReading the charts, we have the following entries
Software developer applications = 26%Software developer = 21%Computer occupations = 12%Software developers, system software = 10%Using the above entries, we can conclude that:
The number of people in computer occupations in general is projected to increase at 12%
Read more about bar charts at:
https://brainly.com/question/25069221
Which example can be used to perform a binary search?
Answer:
In any case, binary search can be used to solve more extensive scope of problem, for example, finding the next smallest or next-biggest element in an array comparative with the target regardless of whether it is present or missing in the array.
Explanation:
In computer science, binary search, otherwise called logarithmic search, is a search calculation that finds the position of an objective incentive inside an arranged array. Binary search compares the target value to the center component of the array. In the event that they are not equivalent, the half in which the value can't lie is dispensed with and the search proceeds on the other half, again taking the center value to contrast with the target value, and continues this until the target value is found. On the off chance that the search ends with the other half being empty, the target value isn't in the array.
Binary search is quicker than linear search aside from small arrays. Nonetheless, the array should be arranged first to have the option to apply binary search. There are particular data structures intended for quick looking, for example, hash tables, that can be looked through more effectively than binary search.
A __________ is the blueprint for __________ having similar attributes and behaviors. signature, objects class, parameters header, objects signature, parameters class, objects
Answer: E. class, objects
Explanation:
A class is the blueprint for objects having similar attributes.
As much as classifying something means to define it based on the characteristics that is has that are similar to other things in that class, so also is a class here.
A class is the blueprint or rather template for making objects that have similar attributes which means that the class therefore gives the object its various attributes and its behavior.
She can't part.....her jewels.
Answer:
She can't part with her jewels.
Explanation:
:))))
PLEASE HELP
A program is designed to determine the minimum value in a list of positive numbers
called numlist. The following program was written
var minimum = MISSING CODE
for(var i = lo; i < numlist.length; i++){
if (numList[1] < minimum)
minimum = numList[1];
console.log("The minimum is" - minimum);
Which of the following can be used to replace ISSING CODE> so that the program works as intended for every possible list of positive numbers?
The missing code segment is meant to initialize the variable minimum to the first list element.
The missing code is (d) numList[0]
From the question, we understand that the first line of the program should determine the smallest number in the list numList
To do this, we start by initializing the variable minimum to the first element of numList
This is done using the following code segment:
var minimum = numList[0]
Hence, the missing code segment is (d) numList[0]
Read more about similar programs at:
https://brainly.com/question/19484224
Write a function called quadruple that quadruples a number and returns the result. Then make several calls to the quadruple function to test it out.
For example, if you made a call like
x = quadruple(3)
then x should hold the value 12.
Print the value of x to verify your function works correctly.
(CODEHS, PYTHON)
def quadruple(n):
return n*4
print(quadruple(3))
print(quadruple(1))
print(quadruple(2))
I wrote my code in python 3.8. I hope this helps.
/kwɒdˈruː.pəl/ to increase by four times, or to multiply anything by four: In the past ten years, the college's enrolment has increased by a factor of four.
What is the role of quadruple that quadruples a number?Finding the array's four maximum and four minimum components is another method for locating the quadruple with the highest product. And then supply the maximum of these three product values, which will result in a quadrupled maximum product.
When ordering a quadruple-shot latte, which contains four shots of espresso, you can also use the word quadruple to signify “four times as many.” The suffix quadric-, which means “four,” is the source of the Latin root quadruple, which means “create fourfold.”
Three address codes are also referred to as quadruples. Using pointers to entries in a symbol table as the operands and an enumerated type to represent the operations, quadruples can be accomplished.
Therefore, One operation and up to three operands are divided into four fields in a quadruple.
Learn more about quadruples here:
https://brainly.com/question/7966538
#SPJ2
When we add suffix L to a integer it is called as __________
Answer:
Long integer literal.
Explanation:
Integer literal can be defined as numbers that do not contain any decimal point or augmented part. An integer literals can be characterized as decimal, octal, or hexadecimal constant. When an integer liteal is added with prefix it tends to define its base, whereas suffix define its type.
The suffix L to an integer literal means long integer literal. The suffix can be written in any form, either upper case (L) or lower case (l).
Therefore, the correct answer is long integer literal.
Write a while loop that prints userNum divided by 2 (integer division) until reaching 1. Follow each number by a space. Example output for userNum
userNum = int(input("Enter a number: "))
while userNum > 1:
print(userNum, end=" ")
userNum /= 2
I wrote my code in python 3.8. I think this is what you want but I'm not too sure. I'll change the code if you need me to.
According to the video, what are some concerns of Webmasters? Check all that apply.
how fast the website can be accessed
how many writers provide content for a website
how to create images for a website
the number of similar websites that exist
the time it takes for elements on a website to download
website security and privacy
Answer:
A.how fast the website can be accessed
E.the time it takes for elements on a website to download
F.website security and privacy
Explanation:
Answer:
1,5,6
Explanation:
hope this helps gg
we need to send 254 kbps over a noiseless channel with a bandwidth of 15 khz. how many signal levels do we need
Answer:
The level of the signal is 353.85
Explanation:
Data rate determines the speed of the data transmission.
The data rate depends on the following factors
The available bandwidthnumbers of signal levelsthe quality of the channel ( Means the level of noise )The data is transmitted either from a noiseless channel or a noisy channel.
The given quality of the channel in the question is noiseless.
Use the following formula to calculate the signal levels
Bit rate = 2 x bandwidth x [tex]Log_{2}[/tex] ( signal level )
where
Transmitted Data = 254 kbps = 254,000 bps
Bandwidth = 15 khz = 15,000 hz
Placing values in the formula
254,000 = 2 x 15,000 x [tex]Log_{2}[/tex] ( L )
254,000 = 30,000 x [tex]Log_{2}[/tex] ( L )
254,000 / 30,000 = [tex]Log_{2}[/tex] ( L )
8.467 = [tex]Log_{2}[/tex] ( L )
L = [tex]2^{8.467}[/tex]
L = 353.85 levels
Which are the steps in the process of creating a database
Answer:
Determine the purpose of your database. ...
Find and organize the information required. ...
Divide the information into tables. ...
Turn information items into columns. ...
Specify primary keys. ...
Set up the table relationships. ...
Refine your design. ...
Apply the normalization rules.
Answer:
identifying fieldnames in tables
defining data types for field names
Explanation:
sorry I'm late. future Plato users this is for you
Name one characteristic of natural languages that prevents them from being used as programming languages.
Answer:
Ambiguity.
Explanation:
Natural language of human beings are believed to be ambiguous, as it often required settings punctuation, and intonation to determine certain meanings correctly.
Also is the fact that natural language sometimes has more than one meaning for the same words.
Hence, one characteristic of natural languages that prevent them from being used as programming languages is AMBIGUITY.
How many minutes are there from 8:00 am to 1:00 pm?
Answer:300 minutes
Explanation:
from 8 to 1 is 5 hours so you do 5*60= 300
All of the following describes technology EXCEPT
(a) application of knowledge (b) development of skills
(c) solving of problems (d) prohibiting human capabilities
Answer: (d) prohibiting human capabilities
Explanation:
Technology can be described as application of knowledge, development of skills or solving of problems.
Technology helps in solving numerous challenges. Technology involves skills and application of knowledge. Every technology used today solves a problem in one way or the other.
Technology prohibiting human capabilities doesn't describe technology. It doesn't limit the abilities of humans but rather improves it.
If an insurance policy covers individual losses up to $10,000 and has a deductible of
$500, the insured will be paid how much in the event of a covered loss of $5,000?
Answer: $4500
Explanation:
The deductible is the amount that the insured that is, the policy holder will have to pay. In this case, there is a covered loss of $5000 and the insured has a deductible of $500.
Therefore, the amount that the insured will be paid will be the difference between $5000 and the deductible of $500. This will be:
= $5000 - $500
= $4500
Which of the following statements is true when it comes to developing a web presence for a business?
Explanation:
Customers can learn about a business by downloading a mobile app, but they can’t place an order using an app
Building a new website requires a large budget
What is a variable?
A.a box (memory location) where you store values
B. a type of memory
C. a value that remains the same throughout a program
D. a value that loads when the program runs