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
Microsoft Word cannot be used to create personalized web
pages.
OTrue
False
Answer:
False
Explanation:
Because Microsoft can be used to create personalized web
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
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
Write a program that get
the age of 50 people and
display the number of
people that fall under:
1. Baby : 0-5
2. Kids and teenagers: 6-17
3. Adults : 18 and over
Answer:
people = list(map(int, input().split())) # gets input and makes them into an integer
for i in range(len(people)):
if 0 <= people[i] <= 5:
print('Baby') # You didn't specify how you want to 'store' the info, but I'm just going to print it out
elif 6 <= people[i] <= 17:
print('Teen')
elif 18 <= people[i]:
print('Adults')
Explanation:
This is the basic structure of the code. This is written in Python 3x. If you are writing in a different language, then just use the template given to you!
8. This machine is used for high speed, high volume printing l. Can print about 1000 papers at one point in time.
A) Scanner
B) Printer
C) Risograph
D) Photocopier
Answer:
Risographs can produce up to typically 150 pages per minute. So I'm guessing its c.
Explanation:
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
What function in the secrets module can generate random integers between one and 30, including the possibility of both one and 30.
secrets.random(30)
secrets.randbelow(31)
secrets.randbelow(30)
secrets.random(30)
Answer:
secrets.randbelow(31)
Explanation:
This is Python Language, and secrets is an external module. So, to use it you need to install it using pip, just type pip install secrets in any terminal. And secrets module will be installed. If you will use the 1st or last code it will give give you error, because secrets module does not have any attribute named random. If you will use the 3rd code it will print random number from 0 to 29 only. If you also want to print 30, you need to you need to write the code given below:
import secrets
secrets.randbelow(31)
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:
How many hours do you spend on the Internet per day?
Which of the following is NOT a benefit of pair-programming?
Code takes 15% less time to write than with a solo programmer.
Programs have fewer bugs than if written by a single programmer.
Code solutions are more creative.
o o
Bias in programs is reduced.
Answer:
Programs have fewer bugs than if written by a single programmer.
Explanation:
this is what I think personally
Coupled with risk reduction and knowledge sharing within an organization, pair programming is a key technique for producing faster, higher quality code. Thus, option B is correct.
What is the role pair programmer in the programs?Two programmers collaborate at the same workstation while using the agile software development technique known as pair programming.
The observer or navigator reads each line of code as it is entered while the driver, who is also the code writer, types it in.
Pair programming is a method where two programmers collaborate on the same block of code while using just one computer.
This introduces the idea of pair programming roles, where one performs the function of the driver (writing code) and the other that of the navigator (ensuring the accuracy of the code).
Therefore, Programs have fewer bugs than if written by a single programmer.
Learn more about pair programmer here:
https://brainly.com/question/14190382
#SPJ2
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
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
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
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 intrinsically related to equity.
Accessibility
Communication
Professionalism
Which format has the largest file size?
How to do this programming?
Answer:
let bread = 12.50
let chicken = 45.48
let total = chicken + bread
let tax = 62.04 - total
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 is the importance of size in graphic design?
what is HDLC flow control?
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
Project Description In this exercise, you are responsible for the design and implementation of a school dismissal database. School personal need a database to determine whether students ride the bus at the end of the school day or if students are pickup by an organization or designated adult. The database will be used by school personal to look-up the names of adults and organizations who have the authority to pick-up students from the school from school. To design the database, you will first review the preliminary design requirements. The preliminary design requirements are minimal and incomplete. Add requirements to complete the design of the database. Describe requirements on this document as indicated by the words, Complete this section of the document. You will use Oracle Data Modeler to create a logical and relational model. Then you will implement your database design as an Oracle database. After the Oracle database is created, reverse engineer the database to the relational and logical models.
Answer:
school bus for. the students
There are a series of factors and people who save Glenn Curtiss from
bankruptcy what are they
Answer: "Due to patent issue, he paid his worker from his pocket. He paid 10,000 dollars bond which led him towards bankruptcy, Curtiss, have no option, so he accepted the challenge to fly from Albany to Manhattan and won a prized of 10,000 dollars. "
short answer:
The Wright Brothers and the Challenge to fly.
Explanation: hope it helps!
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.
a paragraph about the different types of college degrees
Answer:
There are four major categories of degrees available for postsecondary students. These college degrees in order of complexity are associate, bachelor's, master's, and doctoral degrees. Earning one of these degrees can take 2-8 years, depending on the level of the degree and field of study. Graduate-level university degrees may require students to complete one or more undergraduate programs prior to enrollment. When comparing different degrees, students can consider which program best fits their career goals and academic interests. Keep in mind that all college degrees require completion of a high school diploma first.
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
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
Please help lol..
Type the correct answer in the box. Spell all words correctly. Which description uses two to three sentences? A short (two to three sentences) description of a story that includes the main character, the antagonist, and the genre of the story is a _____ .
Answer:
This would be called the summary or the synopsis. In further detail, it's a short, lively overview of a story, including the main character, the antagonist, and the genre.
Explanation:
Hope it helps!
Answer:
introduction
Explanation:
Please complete the following questions. It is important that you use complete sentences and present the questions and answers when you submit your work.
Critical Thinking Questions
1. Describe a recent modern “story” you heard, read, or saw. Explain how that story taught you an important idea about life, family, or society. Be sure to talk about where/how you heard/read about the story in your description.
2. Describe a simulation game you’ve played recently or have heard about (you may even propose a simulation game idea yourself). Explain why that game fits the definition of a simulation.
3. In an age of books, films, and television, why are games important?
Think of a game you enjoy. For that game, describe some of its objectives, rules, operation, obstacles, and outcomes.
4. What is the main difference between a video game and other types of games (board games, card games, tag, etc.)? What are the similarities?
Answer:
due to recent times there has been injustice. the movement im talking about is blm or alm. theese rough times when socitey cant agree with each other. during theese times its taught me alot about both sides arguments. may 25 2020 "i cant breathe i cant breathe i cant breathe" george floyed was killed may 25 2020 this is when this whole mess started. building being burnt down to crips. people raiding the streets. people getting hurt. the pain some people felt was to much to handle that they dealt with it wrong. here is were alm comes in. alm all lifes matter, mexican lifes matter, black lifes matter, muslims lifes matter, chinnese life matetr white lifes matter unborn lifes matter and much more. blm supporters disagree that all lifes dont matetr untill black lifes do and that alm didnt exist until blm did. theese tough times taught me society needs to stick togther now more then ever and that the skin tone your size your religon dosent matter just how you treat other.
a simulation game. a stimulation game i propose is a simulation game were you live normal life. get a job pay rent and ect. which would teach kids how to work and how to earn money how to pay taxes. this game would be perfect to teach kids the importance of money and that money isnt earned easy. how i imagine it is the game is all about investing buying a better house getting a good job and not going bankrupt. you could even start a buisness which other players can shop in. this game would be the perfect fun and educational game.
in an age of books, films, television, why are games important? games can come in diffrent forms some teach you how to stay safe. some teach you how to run a buisness. some can even teach you how to invest. game can be educational and fun at the same time! games are great for whenever its raining outside and you have some spare time to get cozy and enjoy a game. some games can even bost your mental strength with puzzels and maze's which help your brain stay healthy.
my favorite game, is a board game monopoly. its a game were you invest in properties and NOT go bankrupt! its a fun game with lots of obstacles i enjoy that you play it with lots of people because in real life you will have obstacles people will try and get in your way.
a video game and a board game. the diffrence is video games can be good but can take a bad turn wuick to much is bad for you and like drugs can become addictive and somtimes even dangerous with hackers. a board game is safe because you just play it with your faimly and friends and there is no virus no hackers. there can be cheaters but much safer than video games. the simarlity is that they both can bost your mental stregth and keep your brain active with lots of thinking on the best move.
Explanation: