Answer:
true
Explanation:
cause every design have it's own thought process and we also have our choice
Answer:
true
i agree with the person that answerd
WHEN IS THE DESIGN PROCESS FINISHED IN ENGINEERING?
Answer:
I think answers is it never ends
how many pages is 1500 words double spaced 12pt font?
Answer:
6 pages
Explanation:
is there actually a difference between left and right twix
2. It serves as the foundation of all crochet work. a. Chain stitch C. double treble b. Treble stitch d. slip stitch
Answer:
a. chain stitch
because the foundation of so many crochet patterns involved a chain of × stitches followed by working sc/dc into the chain
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:
Which of the following statements best explains how multitasking works in the human mind?
Answer: He's right
Explanation: I got the answer too
many phone fraud scammers are expessily cunning because they approach the target to try to sell
Answer:
improved computer security programs
Explanation:
Answer:
Improved computer security programs.
Explanation:
Just took the quiz
Software that is used to detect and eliminate computer viruses. Question 3 options: Wi-Fi Cable Internet Antivirus Application Browser
Answer:
Anti Virus
Explanation:
Antiviruses (Windows Defender, McAfee, Avast) scan your computer/device for viruses.
Help please
What is an ordered pair?
1. a type of font in Microsoft Word
2. the end of the x-axis on a coordinate grid
3. two numbers that tell the location of a point on a coordinate grid
4. a type of table located in the Table drop-down menu
Answer:
two numbers that tell the location of a point on a coordinate grid
Explanation:
Answer:
Two numbers that tell the location of a point on a coordinate grid.
Explanation:
An ordered pair would look like this
(0, 4) or (7, 2)
the first number would be on the x-axis and then the second would be on the y-axis
Levi wants to run 5 commands sequentially, but does not want to create a shell script. He knows that each command is going to take approximately 20 minutes to run individually. However, he would like to go to lunch 15 minutes from now. He knows that he can type all of the commands on the same line and separate them with a certain character to run them sequentially.
Required:
Which character can he type after each command to have them run one after the next without requiring further input from him?
Answer:
um
Explanation:
what subject is this again?
Tynker has a particular layout, with the blocks on the left, editor in the middle, and output on the right. Which word best describes this screen layout?
block-based
interface
editor
player
Interface best describes the layout of the screen. This is done by designers
in which they help to design the appearance and style of various software
and devices.
These characteristics help to ensure the users find them friendly and easy to
navigate through when performing various operations .
In this scenario, we were told that the layout has blocks on the left, editor in
the middle, and output on the right which are designs for easy navigation on
Tynker.
Read more about Interface here https://brainly.com/question/5080206
Answer:
interface
Explanation:
You can use the ____ method to search a string to determine whether it contains a specific sequence of characters.
Answer:
in
Explanation:
Not an explanation, but here's an example:
if "mouth" in "mouthwatering":
print("It is.")
else:
pass
Another example:
if "water" in "mouthwatering":
print("Yes.")
else:
pass
Pls help me I beg u
Choose one scene or object to photograph. Take and submit at least three photographs of this scene at three different times of day. Be sure to note the times of day that you choose. Write a brief response about how the light changed in the photograph.
Take and submit photographs of someone using frontlighting, backlighting, and sidelighting. You can use the sun or other lighting.
Practice taking photographs on a cloudy or rainy day. Turn in three of your favorites from that practice.
Take some portrait photographs using a reflector. (Remember that white paper, poster board, sheets, or a wall can all act a reflector.) Practice moving the subject in different positions relative to the reflector. Turn in three of your favorite photographs.
Practice taking photographs in different lighting conditions (indoors and outdoors, different times of day, different weather, and so on) to help you better understand the impact of light on your photographs. Turn in three of your favorite photographs from your practice sessions.
Answer:
i dont get what you mean
Explanation:
A healthcare crisis where millions of patient medication records were tampered with is an example of what type of breach?
A.
integrity breachc.
B.
codependency breach
C.
authentication breach
D.
AIC Triad breach
A healthcare crisis where millions of patient medication records were tampered with is an example of; A: Integrity Breach.
To answer this question, let us access each of the options;
A) Integrity breach; This is a breach that occurs when where there is an unauthorised or accidental alteration of the personal data of individuals or a group.
B) Codependency breach; This is not really a breach in this context as it happens when there is an imbalanced relationship between two or more people.
C) Authentication breach; This is a type of breach that is more common with a breach of passwords and login details.
D) AIC Triad breach; AIC is Availability, Integrity and confidentiality. So it combines Availabilty breach, integrity breach and confidentiality breach.
In this question, the patient medication records were tampered with which means that they were altered and from our definitions above, this is an example of integrity breach.
Read more about security breach at; https://brainly.com/question/15957125
The navigation items for a Lightning app are available on mobile: A. In a special mobile configuration in the navigation menu and in Favorites B. In the profile menu, when in the app C. In the navigation menu and the first four items of the navigation bar, when users are in the app D. In the App Launcher Check the Quiz to Earn 100 Points
Navigation items are used for moving from one part of the part to a destination using actions and also for passing information. The right option is C. In the navigation menu and the first four items of the navigation bar, when users are in the app
There are different methods/ways to implement the Navigation component in a mobile application, we have the following type of Navigation Implementation
Bottom NavigationDrawer Navigation(Slides from Left to right)Top NavigationLearn more about Navigation here:
https://brainly.com/question/8908486
WRITE A PROGRAM TO CALCULATE SIMPLE INTEREST
Instructions to do the program:-
The output format of the program should be as shown below:
P = 2000
R = 8
N = 4
Simple Interest = 640
pls help
The simple interset program is a sequential program, and does not require loops and conditions
The simple interset program in Python, where comments are used to explain each line is as follows:
#This gets input for the principal amount
P = int(input("P = "))
#This gets input for the rate
R = int(input("R = "))
#This gets input for the number of years
N = int(input("N = "))
#This calculates the simple interest
I = P * R * T * 0.01
#This prints the simple interest
print("Simple Interest =",I)
Read more about simple interest at:
https://brainly.com/question/2294792
I'm confused as to if subclasses can call the supers without any implementation and what the right answer is
Answer:
E
Explanation:
Since Example1 and Example2 inherit from Example0, all classes have the method doNothing() at their disposal, so you can call it from e0, e1 and e2.
However, the arguments of this method are Example1 and Example2, so you cannot pass Example0 as a first argument, and you cannot pass Example0 or 1 as a second argument. That only leaves answer E.
You can call the inheritance relation an "is a kind of" relation. So Example1 is a kind of Example0, and Example2 is a kind of Example1, but also Example2 is a kind of Example0.
Now you can understand why e2 can be passed as an argument for Example1, because e2 is a kind of Example1.
Can you help me to write a code with functions,arrays,and pointers in c++?
It can be a basic game or an interesting program.
But a little bit complicated :)
Please I need help :(((
Answer:
Your search for complete and error-free projects in C and C++ ends here! Here, we’ve enlisted all the mini-projects, projects, games, software and applications built using C and C++ programming language — these are the projects published in our site or available with us at the moment. You can download all these projects (with source code) for free; make sure to check their individual post description as well.
First thing, most students learn C and C++ as their first programming language. They quickly become able to write programs that include functions, arrays and pointers, file handling and data structure, etc. But, when it comes to building a mini-game, an application, or a small project, incorporating all these features in one compact program becomes difficult.
In such case, reference projects always come in handy. The C and C++ projects published in our site will teach you how to get started, give you ideas and topics regarding your project, and sharpen your programming skills in C and C++. Here, you’ll find short and simple as well as long and complicated projects.
What are some of the restrictions to muscle wire?
Answer:
Muscle Wire is an extremely thin wire made from Nitinol (a nickel-titanium alloy) that is known for its ability to contract when an electric current is applied.Although thin and lightweight, one of the most amazing things about Muscle Wire is that they can lift many times their weight and are able to do 100 times more work per cycle than the human muscle. This material is easy to use, small in size, operates silently, has a high strength-to-weight ratio, and is easily activated using AC or DC power. This technology is ideal where mechanics require minimization, such as electronic textiles projects, robotics or nano-applications.Muscle Wire is an extremely thin wire made from Nitinol (a nickel-titanium alloy) that is known for its ability to contract when an electric current is applied.
! (( i > ( f + 1)) es verdadero o falso segun la logica de programación.
Answer:
yeajadaj
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);
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 AccountingPlease help please help
Answer:
Bonjour,
Vraiment superbe idée, mais (eh eh, désolé) pour la version en ligne cela ne marche pas avec Brunoy par exemple en gare d’arrivée (j’ai même l’impression que ce n’est que pour les grandes lignes, pas pour notre pôvre petit RED D) et avec un peu moins de surprise, seule l’année 2014 peut être choisie.
Je profite donc de ce billet pour économiser 0.34€/min si vous pouvez avoir l’information de la durée de rétention des objets trouvés…
Merci
Bien cordialement
Az
ExplanationBonjour,
Vraiment superbe idée, mais (eh eh, désolé) pour la version en ligne cela ne marche pas avec Brunoy par exemple en gare d’arrivée (j’ai même l’impression que ce n’est que pour les grandes lignes, pas pour notre pôvre petit RED D) et avec un peu moins de surprise, seule l’année 2014 peut être choisie.
Je profite donc de ce billet pour économiser 0.34€/min si vous pouvez avoir l’information de la durée de rétention des objets trouvés…
Merci
Bien cordialement
Az:
what is a saved link to a particular web page?
Answer:
A bookmark
Explanation:
A bookmark is a saved link to a particular Web page. Microsoft Internet Explorer denotes bookmarks as “favourites.” Boolean operators Most search engines (e.g. Go.ogle) allow you to limit your search or make it more specific by using words such as “and”, “or” and “not”.
A means of giving credit to a source when their information is used.
Question 15 options:
Citation
Wi-Fi
Asynchronous Communication
Malware
where deep convolutional neural network is used in real life
Answer:
Business applications of Convolutional Neural Networks. Image Classification - Search Engines, Recommender Systems, Social Media. Face Recognition Applications of RNN is Social Media, Identification procedures, Surveillance. Legal, Banking, Insurance, Document digitization - Optical Character Recognition.
What type of information is appropriate for headers and footers? Check all that apply.
Answer:
C, E,F,G are correct
Explanation:
Answer:
C,E,F,G are correct.
Explanation:
i need freinds.:(plz
Answer:
Explanation:
sure wassup
Answer:
i'll be your friend!
Explanation:
Jordan likes to use his smartphone in his car. He uses it as a navigation device and connects it via Bluetooth to listen to music. He has purchased accessories that allow him to see his smartphone while he is driving. On a very cold day, and after driving for several minutes, Jordan receives a warning from his smartphone that it is overheating and needs to shut down. When he touches his smartphone, it is hot. What might cause Jordan’s smartphone to overheat?
A. Bluetooth receiver is causing the smartphone to overheat.
B. The smartphone is located too close to the car’s heat vent.
C. The GPS receiver is causing the smartphone to overheat.
D. The screen has been active too long.
Answer:
I think A Bluetooth receiver is causing the smartphone to over heat