Answer:
D
Explanation:
Filters and the Sort feature can be applied in any order.
Time management is the ability to use time effectively.
Question 23 options:
True
False
Answer:
True
Explanation:
if you are able to manage time well, then that means you have good time management skills
An IT security threat is anything that might cause serious harm to a computer system.
Question 16 options:
True
False
Answer:
True
Explanation:
this is true because a threat can endanger the computer and its system
The voltage/potential difference in a circuit is 12 volts, calculate the current that is flowing through the circuit if the resistance is 48 Ohms.
Current (I) = 0.25 ampere (A)
Power (P) = 3 watt (W)
Current (I) = 0.25 ampere (A) Power (P) = 3 watt (W) Steps: I = V R = 12 volt 48 ohm = 0.25 ampere (A) P = V2 R = (12 volt)2 48 ohm = 3 watt (W)
Unit 6: Lesson 2 - Coding Activity 1 AP Computer science
The complete program is to define a boolean method that returns true if all elements of an array are negative, or return false, if otherwise
The method in java, where comments are used to explain each line is as follows:
//This defines the method
public static boolean chkNegative (double[] myArr) {
//This initializes a boolean variable
boolean isNeg = true;
//This iterates through the array
for (int i = 0; i < myArr.length; i++) {
//If the array element is 0 or positive
if (myArr[i] >= 0) {
//Then the boolean variable is set to false
isNeg = false;
//And the loop is exited
break;
}
}
//This returns true or false
return isNeg;
}
Read more about boolean methods at:
https://brainly.com/question/18318709
How many letters is in whatyoudoingareyougood
Answer:
43847823773 letters
Explanation:
haha to easy
Answer:
22 letters, 6 words.
:) hope this helps! <3
when a driver receives a text while driving, what can 2022 versa’s hands-free text messaging assistant do?
Answer:
It can translate text to voice
Explanation:
When the logging and managing information flow between management hosts and the managed devices travels on a dedicated management network, this is considered what?
What must be considered is the number of IPs that are allowed to access the management network.
We can arrive at this answer because:
During the management of information flow, it is necessary to guarantee the security of the system, preventing intruders from attacking.This can be done by restricting authorized IPs to access the management interface.This type of security measure is often neglected in systems that use a dedicated management network, as this type of network can only be accessed by a single device in the same VLAN.However, the IPs restriction must be considered even in this system, as there are software that can provoke invasions that cause the leak of shared information.
You can find more information about software here:
https://brainly.com/question/24032221
Complete a flowchart and a Python program to calculate grade of a student based on marks using the following criteria:
Ask a student for their marks and if their marks are:
More than 90 – print “A*”
Between 80 and 90 – print “A”
Between 70 and 80 – print “B”
Between 60 and 70 – print “C”
Between 50 and 60 – print “D”
Between 40 and 50 – print “E”
Under 40 – print “Fail”
Answer:
grade = int(input("Enter grade: ")
if grade > 90:
print("A*")
elif grade > 80 and grade < 90:
print("A")
elif grade > 70 and grade < 80:
print("B")
elif grade > 60 and grade < 70:
print("C")
elif grade > 40 and grade < 50:
print("E")
else:
print("Fail")
Explanation:
please answer ASAP!!!!!!
Answer:
the first constructor invocation will work.
pet temp("mouse", 5.99);
Explanation:
This will create a pet object on the stack, using the constructor.
If you want to create an object on the heap, you would use the new operator:
pet* pTemp = new pet("mouse", 5.99);
Which UPPER function is written so that all text in cell B4 will be capitalized? O=UPPER(B4) O=UPPER[B4] O UPPER B4 O=UPPER
Question 7 of 10
What are the three main parts to a slide presentation's structure?
A. Thesis statement, supporting evidence, and concluding quotes
B. Main idea, body, and summary
C. Introduction, body, and conclusion
D. Body, conclusion, and references
Answer:
A
Explanation:
2. Input a decimal number and test if it is not equal to 16.5.
3. If a number x, input from the keyboard is greater than 57, add 4 to x and print the
answer.
4. Input two numbers and find the average only if they are both less than 100.
Answer:
2:
decNum = float(input("Decimal number: "))
if decNum != 16.5:
print("Does not equal")
elif decNum == 16.5:
print("Equal")
else:
pass
3:
if x > 57:
x += 4
print(x)
4:
numOne = int(input("Enter number: "))
numTwo = int(input("Enter number: "))
if numOne < 100 and numTwo < 100:
yes = numOne + numTwo
print(yes // 2)
else:
pass
Explanation:
Please give me brainliest.
_____ are fields that are used to personalize a mail merge document
A. rows of a spreadsheet data source
B. Excel workbooks
C. columns of the spreadsheet data source
D. cells
Answer:
The answer is A; rows of a spreadsheet data source.
Explanation:
Discussion Topic:
Web maintenance plays a vital role in a website's development. It helps ensure
the online presence of any website by performing regular updates. Discuss the
benefits of web maintenance.
Need help can someone answer plz
Answer:
Prevents lagging
Explanation:
This prevents the website from being slow and upto shape so those who access it dont have difficulties
Which of the constraints listed below would be considered a physical constraint
-Materials
-Demand for product
-Timeline
-Cost
A student is writing a research paper on astronomy. His teacher has asked that she include a visual aid to explain the scientific concepts in her paper. She has chosen to write about the moon, and she wants to use a visual aid to show what the surface of the moon looks like.
Which visual aid would best support her topic?
A computer has __ IP address(es).
A. Many
B. One
Answer:
A computer has one IP address(es).
One
Explanation:
Have a great day!
What is the missing line of code?
22
>>> books = {294: 'War and Peace', 931:'Heidi', 731:'Flicka'}
>>>
dict_keys([294, 931, 731])
O books allo
O books.values()
O books
O books.keys()
Answer:
books.keys()
Explanation:
I ran the code and the awncers though python and books.keys() is the one that came up with the awncer
books.keys() is the missing line of code with respect to the books with the help of Python language. Thus, option D is correct.
What is a code?In a certain programming language, a collection of commands or a collection of rules are referred to as computer code. It's also the name given to the source code just after the translator has prepared it for computer execution.
Code is a developing company that focuses on producing aesthetically pleasing, code-correct internet, application forms, and phone application.
The correct code will be according to the Python language will be in addition to books.keys():
books.keys()
books = {294: 'War and Peace', 931:'Heidi', 731:'Flicka'}
books.keys()
dict_keys([294, 931, 731])
Therefore, option D (books.keys()) is the correct option.
Learn more about code, here:
https://brainly.com/question/17204194
#SPJ2
Write any two uses of ruler in word program
Answer:
1.It is used for draw the table, making results and assignments etc.
2.It is used for lining
Explanation:
Hope it helps
#CARRYONLEARNINGwhat is meant by formatting the presentation?
It's deciding how things look. If you are on powerpoint you would choose the text style and colors and organize your information how you would like. If you were giving a speech you would decide what order your information is in.
anyone please help me with his I keep on getting confused
Answer:
InDesign- Desktop publishing software
Illustrator- Enterprise software
DreamWeaver- Web development software
Photoshop- Graphic design software
Hope this helps!
what is syllabus of diploma in computer after class 10
Answer:
[tex] \: [/tex]
List Of Best Computer Courses After 10th :
Certificate Program In MS OfficeBasic Computer CourseWeb Designing CourseDigital Marketing CourseData Entry CourseGraphic Designing CourseWeb Development CourseAnimation And VFX CourseComputer Science Diploma/EngineeringDiploma In Financial AccountingEthan is afraid that his poor grades will get him kicked out of his university at the end of the semester. He decided to remotely access the dean's computer and change his grades in the school system. If caught, Ethan will have to confess to committing what?
A.
virtual education
B.
grade hacking
C.
a computer crime
D.
educational fraud
Answer:
Computer Crime
Explanation:
You're evading someones privacy and gaining access to their computer or device without consent. Therefore, it is a computer crime.
Answer:
Educational fraud
Explanation:
Ethan changed his grades in the school system claiming to have better grades then he really does.
A bulb has a resistance of 15Ω and is rated at 3A. What is the maximum voltage that can be applied across the bulb?
Answer:Wheres the option choice??????????????????????
Explanation:
6. Which devices of computer is known processing devices? las >
Answer:
CPU is known as processing devices..!
I need help with this
Answer:
It is used for the title of a page or post
In the program below, which two variables have the same scope?
def usernameMaker (strFirst, strLast):
return strFirst + strLast[0]
def passwordMaker (strA, numC):
answer = dogName[0:3]
return answer + str(numC)
# the main part of your program that calls the function
username = usernameMaker ('Chris', 'Smith')
dogName = 'Sammy'
favoriteNumber = 7
password = passwordMaker (dogName,favoriteNumber)
strA and
Answer: num C
Explanation: got it right on edgen
you receive a text from your boss, who’s on vacation. it says she can’t connect to the network and urgently needs you to send a file using an enclosed link. what type of social engineering attack is being used here?
The type of social engineering attack that is being used here is phishing. It exploits human errors.
Phishing is a type of social engineering attack that requires human errors to obtain credentials and/or spread malicious malware.
This type of attack (phishing) represents the most common type of social engineering attack.
Phishing generally involves email attachment files or links that are infected with malicious malware.
Learn more about phishing here:
https://brainly.com/question/23021587
given that play_list has been defined to be a list, write an expression that evaluates to a new list containing the elements at index 0 through index 4 in play_list. do not modify play_list.
Answer:
new_list = play_list[0:4]
Explanation:
new_list = play_list[0:4] is an expression that evaluates to a new list containing the elements at index 0 through index 4 in play_list.
What do you mean by an expression?A syntactic item in a programming language that may be evaluated to discover its value is known as an expression in computer science. Statement, a grammatical construct that has no meaning, is frequently contrasted with expression.
It is a grouping of one or more constants, variables, functions, and operators that the programming language interprets and calculates (in accordance with its own principles of precedence and association). For mathematical expressions, this procedure is known as evaluation.
In straightforward contexts, the outcome is typically one of several primitive kinds, such as a complex data type, a complex data string, a complex data Boolean type, or another type.
A function, and hence an expression that contains a function, may have side effects in many programming languages. Normally, a side effect-containing phrase lacks referential transparency. Expressions can be converted into expression statements in various languages by adding a semicolon (;) at the end.
Learn more about expression, here
https://brainly.com/question/16804733
#SPJ5
which part lets you point to objects on your screen, click on them, and even move them?
Mouse lets you point to objects on your screen, click on them, and even move them.
A computer is a machine that can be programmed to carry out sequences of arithmetic or logical operations automatically. Modern computers can perform generic sets of operations known as programs.
A computer mouse is a handheld hardware input device that controls a cursor in a GUI (graphical user interface) for pointing, moving and selecting text, icons, files, and folders on your computer.
Find out more on mouse at: https://brainly.com/question/22247989