Answer:
HDLC is one of the most commonly used internet protocols (IP) in what is Layer 2 of the industry communication reference model called Open Systems Interconnection (OSI).
Explanation:
What important role is being described?
Completes the Action Item form.
Answer:
A sponsor is a member of congress who is willing to introduce and back the legislation. Explanation:
Write a pseudocode algorithm to ask the user to input the name of a student, the marks he/she received in a test and the worth of the test. Calculate the percentage mark the student received. Print the student's name and percentage the student received.
Pseudocode algorithms are used as prototypes of an actual program.
The required pseudocode algorithm is as follows:
Startinput name, score, test_worthpercent_score = score/test_worth * 100print name, percent_scoreStopThe first line begins the pseudocode algorithm
Start
The second line gets input for the student's name, score and the worth of the test
input name, score, test_worth
The third line calculates the percentage score
percent_score = score/test_worth * 100
The next line prints the student's name and the percentage score
print name, percent_score
The last line ends the pseudocode
Stop
Read more about pseudocode algorithms at:
https://brainly.com/question/21172316
someone pls help me!!!
Answer:
I think it’s really cool. You don’t have to find someone’s Gm ail and then write a subject and whatever else. You can just send it like a message. I love how it has the call option because it means that you don’t have to have a number to call your friends or family. And you can do business em ail while messaging whoever you need to instead of going back and forth.
You can promote your business. You can also promote your video and share your screen. It is also a good way to talk to customers to discuss what you need to. A bunch of people have emails and it’s fairly simple to just add your friend and text them.
It might be hard to figure out at first. But when you get used to it it’s fairly simple. It can also shut down due to a bug and stop working, which makes it even more complicated. You can also get creeps that can hack into your Gm ail and read all of your information.
Explanation: heres a better one with no typos
BRIANLIEST!!!!!!!!!!!!!!!!
Which of the following types of indents shown in the image?
○ Hanging indent
○ Right indent
○ First Line indent
○ Decrease indent
The First Line indent is shown in the image. Thus, option C is correct.
What is an indent?
An indent is a spacing that results from spacing a block of information farther inside than just the surrounding content. To the right of the start of the following line, an indentation for the inaugural line appears. Many parts must follow first-line spacing according to APA standards.
The very first sentence about a partnership that follows a headline or chapter title is not indented, as was mentioned in the previous section.
The tab key on just about any keyboard automatically indent each sentence that comes after it for you. The different layout is occasionally recommended for specific sorts of writing, including research publications and internal memos. Therefore, option C is the correct option.
Learn more about indent, here:
https://brainly.com/question/12090649
#SPJ6
public class Exercise_07 { public static void main(String[] args) { System.out.println(bin2Dec("1100100")); // Purposely throwing an exception... System.out.println(bin2Dec("lafkja")); } public static int bin2Dec(String binary) throws NumberFormatException { if (!isBinary(binary)) { throw new NumberFormatException(binary + " is not a binary number."); } int power = 0; int decimal = 0; for (int i = binary.length() - 1; i >= 0; i--) { if (binary.charAt(i) == '1') { decimal += Math.pow(2, power); } power++; } return decimal; } public static boolean isBinary(String binary) { for (char ch : binary.toCharArray()) { if (ch != '1' && ch != '0') return false; } return true; } }
Answer:
mhm
Explanation:mhm
Where will a sprite On the Scratch website start at with coordinates (0,0)?
The answer to your question is stage center. Looking at the multiple choices, I think you should choose the answer, "the center of the screen". But I am not 100% sure if that's the right answer. Hope that helps.
What refers to the images of characters you use in a game?
Answer:
the character image in the game
Assume that two students are trying to register for a course in which there is only one open seat. What component of a database system prevents both students from being given that last seat?
Answer:
Transaction isolation
Explanation:
The student that has initiated the transaction before the other one will be given the seat. The database will be locked for the second student during the period of transaction of the first student. The transaction isolation level is a state within databases that specifies the amount of data that is visible to a statement in a transaction, specifically when the same data source is accessed by multiple transactions simultaneously.
The component of the database that prevents both students from getting the last seat is: transaction isolation
Data that enters the database are expected to maintain accuracy and also be consistent with the database structure.
So, when both students request for the last seat, the possibilities are:
Student A gets the seatStudent B gets the seatThe following is not a possibility
Both students get the seatNone of the students gets the seatThe above highlights means that, only one of the students would get the seat.
This is possible because of the concept called transaction isolation.
The transaction isolation ensures that the data requested by a user is complete and such data maintains competency.
So, when a student gets the last seat, the next student would not get the same seat (or any other seat), because a transaction has already been completed.
Read more about transaction isolation at:
https://brainly.com/question/13030145
Laptop is a small computer which may run with battery.
True or false....
Answer:
True
Explanation:
True all devices unless hooked up to a charger will run out of battery
Answer:
TRUE IS THE ANSWER
I HOPE IT IS HELPFUL
Identify uses of embedded computers?
Answer:
Explanation:
Applications that embedded computers are deployed for range from Industrial Automation and Control, Intelligent Transportation, Medical Imaging, Digital Signage, to unmanned military & defence – to name but a few. There numerous applications where a Embedded Computer can be deployed
________(fill in the blank)in online education is intrinsically related to equity.
Accessibility
Communication
Professionalism
How many hours do you spend on the Internet per day?
Identify ways to safeguard computer against each of the following risk viruses, worms, Trojan horses, botnets, denial of service attacks, back doors and spoofing
Answer:
First, never download software or videos from untrusted websites, as they can hide malicious code inside it. Never turn off the anti virus, anti virus only purpose is to block malware or viruses if you disabled it and don't know what you are doing high chance there will be a back door created in your PC. Try a antivirus that is well known and has good reputation on protecting a PC, note that good looking GUI on an antivirus doesn't tell it is always good, it's not the GUI you care about its the whole protecting your PC.
How to do this programming?
Answer:
let bread = 12.50
let chicken = 45.48
let total = chicken + bread
let tax = 62.04 - total
What is another term for the notes that a reader can add to text in a word-
processing document?
Columns
Formatting
Font
Comments
Another term for the notes that a reader can add to the text in a word-processing document is known as Comments. Thus, the correct option for this question is D.
What are the characteristics of word documents?The characteristics of word documents are as follows:
It allows a user to construct professional write-ups.It has editing and formatting tools that modify the existing documents.It authorizes the user to insert charts, tables, diagrams, etc. within the document to make it more attractive.According to the context of this question, a comment is another term that represents the notes a reader can normally insert within the existing document in order to modify or highlight the required text in the document.
Therefore, a comment is another term for the notes that a reader can add to the text in a word-processing document. Thus, the correct option for this question is D.
To learn more about word-processing documents, refer to the link:
https://brainly.com/question/1596648
#SPJ1
PERGUNTA 1
Um pesquisador deve escolher o seu método de pesquisa:
a. Pelas facilidades em realizar a pesquisa.
b. Pelas experiências de outros pesquisadores.
c. Pelas especificidades do objeto de pesquisa.
d. Pelas regras dos manuais de pesquisa.
e. Por aquilo que for determinado pela instituição a qual está vinculado.
Answer:
c. Pelas especificidades do objeto de pesquisa.
Explanation:
É o que eu acho e quem achar diferente ta errado
What is nanotechnology?
Answer:
Nanotechnology is a field of research and innovation concerned with building 'things' - generally, materials and devices - on the scale of atoms and molecules.
Explanation:
The diameter of a human hair is, on average, 80,000 nanometres.A nanometre is one-billionth of a metre – ten times the diameter of a hydrogen atom.Answer:
Nanotechnology are the areas of science and engineering where phenomena that take place at dimensions in the nanometre scale are utilised in the design, characterisation, production and application of materials, structures, devices and systems.
_________(fill in the blank)in online education is about making sure that all students are able to use all the technology in the course.
Equity
Ethics
Accessibility
Answer:Below
Explanation:
Which of the following is an example of an output device on a smartphone?
the speaker
the microphone
the battery
the memory card
Answer:
The speaker
Explanation:
Speakers are output devices because the audio is taken from the app or website and playing it towards the speakers.
Which of these would be a good name for a variable that holds a person’s first name?
tomSmith
N01
firstName
lastName
Answer:
firstNAme
Explanation:
Answer:
firstName
Explanation:
I took the test
An Acceptable Use Policy (AUP) are designed for the purpose of _____.
compressing files
maximizing processing power
safety
anonymity
Answer:
maximizing processing power
An Acceptable Use Policy is made up for safety. Check more about the terms below.
What does an Acceptable Use Policy made up of ?An acceptable use policy is one that is made up of a general statement that links to the safe and good use of email and the internet.
Note that based on the above, An Acceptable Use Policy is made up for safety of all in the use of the internet.
Learn more about Policy from
https://brainly.com/question/3653791
#SPJ2
Explain how AI smartphone software in the rental car can be a threat to privacy.
**Answer and I will give you brainiliest**
Answer:
because of the gravity of the earth
Explanation:
because of the gravity of the earth
Answer:
Well, just like there is spyware on phones there are very much likely have spyware on cars too. Think about it if a car can connect to your phone via Bluetooth and take calls it can very possibly have a microphone in it. If that microphone was activated it would be a invasion of privacy hence it can be a threat to privacy. This includes dashboard camera and maybe even when you connect your phone to Bluetooth there might still be a possibility that it can steal your data through that.
What is the importance of size in graphic design?
PLEASE HELP ASAP WILL GIVE BRAINLYEST
A
B
C
D
Web camera C
Printer D
Hard Drive A
Microphone C
DVD C
Scanner C
CPU B
Monitor D
Which of the following job duties would a software developer perform?
A. developing a product that is easy to use and meets a customer’s need
B. establishing security procedures to protect important information
C. managing and securing data
D. writing the code to make a new application work
Answer:
Either B or D but I think mostly B cause it makes more sense
Answer:
A. developing a product that is easy to use and meets a customer’s need
Explanation:
lnao its easy
definitely not b or d
PYTHON: Define a function calc_pyramid_volume() with parameters base_length, base_width, and pyramid_height, that returns the volume of a pyramid with a rectangular base. calc_pyramid_volume() calls the given calc_base_area() function in the calculation.
Relevant geometry equations:
Volume = base area x height x 1/3
(Watch out for integer division).
Sample output with inputs: 4.5 2.1 3.0
Volume for 4.5, 2.1, 3.0 is: 9.45
def calc_base_area(base_length, base_width):
return base_length * base_width
''' Your solution goes here '''
length = float(input())
width = float(input())
height = float(input())
print('Volume for', length, width, height, "is:", calc_pyramid_volume(length, width, height))
I've been trying all morning but I can't seem to figure this one out. I might be overthinking it, but I haven't been able to get it to work.
Answer:
def calc_pyramid_volume(base_length,base_width,pyramid_height):
base_area=base_length*base_width
volume=base_area*pyramid_height*(1/3)
return volume
Explanation:
Here you go, fellow cs 105 student. Copy and paste it all into the box.
Of the following options, which is most helpful in developing the effective study habit of staying organized? Keep pens, pencils, and highlighters off the desk. Put all computer files in one folder on the desktop. Store notes for all courses in a single notebook. Use a calendar to keep track of assignment due dates.
Answer:
use a calendar to keep track of due dates.
Explanation: If you use a calendar all of your assignments will be kept track of and will be organized not causing you to stress or become unmotivated to do any work at all.
Use a calendar to keep track of assignment due dates is most helpful in developing the effective study habit of staying organized. Hence, option D is correct.
What is effective study?Longer study sessions are less effective than shorter, more concentrated ones. In fact, one of the best study methods is to spread out your studying over a few sessions. During rigorous study sessions, which might last 30 or 45 minutes each, active learning strategies are applied.
Spaced practice, also known as scattered practice, is learning that occurs throughout a number of sessions at various times. Effective study methods can help you feel better about yourself, more competent, and more confident.
They can aid in reducing the pressure brought on by due dates and exams. You might be able to cut down on the amount of time you spend studying and free up more time by strengthening your study habits.
Thus, option D is correct.
For more information about effective study, click here:
https://brainly.com/question/10336207
#SPJ2
How do I jitter click and aim? I have been trying forever and it is not working. Please help. (75 Points)
Answer:
Make sure you are not pressing the mouse button to click, but vibrating your hand to click. Try using two fingers to jitter-click, Sometimes you can improve your speed using your index finger and middle finger, or even your index finger and thumb. You can do this!
What actions does Kareem need to take to change the timing of an animation in one
of his presentation slides?
a) Change the order of the animation for the slide.
b) Change the type of animation for the slide.
c) Change the delay and duration for the slide.
d) Change the trigger for the slide.
What Kareem needs to do to change the timing of animation is change the delay and duration for the slide.
A typical Presentation slide helps to keep an audience's attention during a presentation and as well provide additional supporting information.
A presentation slides entails the use of text, images, artworks, aesigns, animation to facilitate a smart slide for proper presentation.
Animation basically move on the slides and are timed/programmed to move in a specific time or direction.
Therefore, in conclusion, Option C is correct. All Kareem have to do to change the timing of an animation in the slide is changing the delay and duration for the animation.
Read more on this here
brainly.com/question/11389651
Question:
How many hours do you spend on the Internet per day? Can you live without the Internet for a week? How many aspects of your life depend on the Internet? How many times have you complained about your Internet connection speed?
Answer:
Living with no internet is indeed a possibility and a reality for many.
It's virtually impossible to go without internet for a significant period of time. Not only do you miss out on social events, but your work suffers too. However, I'd also recommend logging off occasionally; even if just for a day or two.
Read articles offline.
Listen to podcasts offline.
Do a "brain dump" writing exercise.
Come up with a few weeks' worth of blog topics.
Interact with other humans.
Hold an impromptu staff meeting.
Take some time to relax.
Make some phone calls.
Explanation:
I spend around 6-8 hours on the Internet each day. This includes using it for work-related tasks, browsing social media, watching videos, reading news, and other online activities.
How many hours do you spend on the Internet per day?Can you live without the Internet for a week?
While you rely heavily on the Internet for work and communication, you believe you can manage without it for a week. However, it would require adjustments to your routine and finding alternative ways to handle tasks typically done online.How many aspects of your life depend on the Internet?
Numerous aspects of your life depend on the Internet. Apart from work-related tasks, you use it for staying connected with friends and family, online banking, shopping, accessing information, streaming entertainment, and more. The Internet has become an integral part of your daily life.Read more about Internet here:
https://brainly.com/question/2780939
#SPJ3