WILL GIVE BRAINLIEST
What is the missing term?
A(n) _______ explains how an app’s functions must be coded. It is needed if your app has complex communication functions.
Answer:
application
Explanation:
Answer:
Technical specification document
Explanation:
What is the main difference between a search engine and a web browser?
A. Your computer only comes installed with a web browser.
B. You use a search engine to find your web browser.
C. You need to use a web browser to get to the search engine.
D. Web browsers are databases and search engines are indexes.
Answer:
c
Explanation:
You need to use a web browser to get to the search engine. The correct option is C.
What is web browser?A web browser is a piece of software that allows you to access and view web pages on the Internet.
A web browser is a software application that is used to access and display websites on the internet, whereas a search engine is a website or programme that allows users to search for information on the internet by typing in keywords or phrases.
To put it another way, a web browser allows users to view and navigate websites, whereas a search engine assists users in finding specific information within those websites or across the internet.
Although a web browser is commonly used to access a search engine, it is not the only method.
Thus, the correct option is C.
For more details regarding web browser, visit:
https://brainly.com/question/9776568
#SPJ7
draw block diagram of the computer system
Can someone please tell, me whats wrong with this code....its supposed to give the fibonacci sequence as output but its giving 0 as output instead
def series(n):
n1 = 0
n2 = 1
count = 0
if n <=0:
print("Please enter a positive integer")
if count ==0:
print(0)
print(1)
count +=2
while count < n:
nth = n1 + n2
n1 = n2
n2 = nth
count += 1
print(nth)
series(7)
I've written the working code. You added a break statement which right under a print function, which only printed the value of n1 and by looking at your variables, n1 = 0. That's why it was only printing 0.
Select the correct text in the passage.
Select the sentence that is not the correct use of technology in parenting.
Technology has helped parents to access a vast information resource due to the presence of the internet. They can show a range of education
material like nursery rhymes, stories, scientific concepts, and so on conveniently on their smartphones. Teachers can coordinate with the
parents about the child's progress due to smartphones and various applications on it. Some parents have replaced the customary practice of
reading a bedtime story to children with a television show of the child's choice.
Reset
Next
Answer:
some parents have replaced the customary practice of reading a bedtime story to childern with a television show of the child's choice
Explanation:
Which option in a Task element within Outlook indicates that the task is scheduled and will be completed on a later
date?
O Waiting on someone else
O In Progress
O Not started
O Deferred
Answer:
The answer to this question is given below in the explanation section.
Explanation:
The correct option for this question is Deferred.
When you create the task in outlook and scheduled and that will be completed on a later date shown is Deferred. Because deferring is an act of postponing something that was due soon and you have scheduled to do it later.
The other options are not correct because:
when you add task not started set as "Not started".
When you change the progress percentage to something other than 0%, set it to "in progress". When you change the progress percentage to 100%, set it as "completed". Waiting on someone else means a task is waiting for others to get completed.
Deferred is the task element of the Outlook that indicates that the task is schedules and will be completed later. Thus, option D. is correct.
What is deferred option?The deferred option is the option that allows the user to postpone the task that is schedules in the current date to any other future date. This option is present in the task element of the Outlook.
Therefore, option D. Deferred is correct.
Learn more about deferred option, here:
https://brainly.com/question/13482025
#SPJ5
What is one benefit of using electronic sticky notes?
They can be used to jot down messages.
They have a drawing-to-notes feature.
They can be searched by subject.
They clip online articles and images.
They clip online articles and images is one benefit of using electronic sticky notes. Thus, option D is correct.
What is images?A visual depiction has been referred to as an “images.” The Vector graphics as well as the raster graphics are considered as the two subcategories of the image. JPEG, PNG, along with bitmap has been considered as the image file types. The image has shown just to the picture, as well as the photo, or drawing, and they interpret the audience.
In order to invention of technology or according to the invention of the technology which was the advanced in order that has been used are the benefit of the human. The oldest time has the used on that sticky notes which are the new time or era was the clip online articles as well as the images. The clip of the images has been considered as the reminder on the latter.
Therefore, The clip of the online articles as well as the images has been one benefit of the using of the electronic sticky notes.
Learn more about images on:
https://brainly.com/question/25029470
#SPJ7
someone please help in this question
Answer:
i think A
Explanation:
Which of these is NOT an example of application software?
1Points
A
An operating system
B
A word processor
C
An email platform
D
A video game
Answer:
A, an operating system.
The rest are applications that runs on an operating system.
Janelle wants to research information about a local politician's recent public appearances. Which tool should she use for this?
A printed newspaper with a local news section.
A digital library that has a section on politics.
A physical library where the politician has appeared.
Search engines filtered to only show news sites.
Answer:
Search engines filtered to only show news sites.
Explanation:
A printed newspaper could have come from any time
A digital library barely gets updated
I'm pretty sure I saw those same books 3 years ago
Yeah you get the jig
dash is a set of communication standard using for transferring file information between computers in a network
Answer:
protocol
Explanation:
hope this helps.
Help 50 POINTS How can algorithmic thinking skills be used across multiple disciplines?
Answer:
Algorithmic thinking is the use of algorithms, or step-by-step sets of instructions, to complete a task. Teaching students to use algorithmic thinking prepares them for novelty.
Answer:
As defined by Jeannette Wing, computational thinking is “a way of solving problems, designing systems, and understanding human behavior by drawing on the concepts of computer science.” To the students at my school, it’s an approach to tackling challenging questions and ambiguous puzzles. We explicitly integrate computational thinking into all of our classes, allowing students to draw parallels between what they’re learning and how they’re approaching problems across all disciplines.
Our students rely on four computational thinking skills, as well as a set of essential attitudes.
(Java)Convert the QuartsToGallons program to an interactive application. Instead of assigning a value to the number of quarts, accept the value from the user as input.
class QuartsToGallonsInteractive
{
public static void main(String[] args)
{
// Modify the code below
final int QUARTS_IN_GALLON=4;
int quartsNeeded=18;
int gallonsNeeded; int extraQuartsNeeded; gallonsNeeded=quartsNeeded/QUARTS_IN_GALLON; extraQuartsNeeded=quartsNeeded%QUARTS_IN_GALLON;
System.out.println("A job that needs " + quartsNeeded + " quarts requires " + gallonsNeeded + " gallons plus " + extraQuartsNeeded + " quarts");
}
}
import java.util.Scanner;
public class QuartsToGallonsInteractive
{
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
final int QUARTS_IN_GALLON=4;
int quartsNeeded=0;
System.out.println("How many quarts do you need?");
quartsNeeded = scan.nextInt();
int gallonsNeeded, extraQuartsNeeded;
gallonsNeeded=quartsNeeded/QUARTS_IN_GALLON;
extraQuartsNeeded=quartsNeeded%QUARTS_IN_GALLON;
System.out.println("A job that needs " + quartsNeeded + " quarts requires " + gallonsNeeded + " gallons plus " + extraQuartsNeeded + " quarts");
}
}
I hope this helps!
To modify a program is to rewrite the program in another way.
In order to make the program an interactive program, we have to remove the following program statement:
final int QUARTS_IN_GALLON=4;
The above program statement assigns 4 to the variable QUARTS_IN_GALLON.
This means that:
Each time the program is run, the value of QUARTS_IN_GALLON is always 4.
Next, we replace the statement with:
Scanner input = new Scanner(System.in)
int QUARTS_IN_GALLON;
QUARTS_IN_GALLON = input.nextInt();
So, the complete modified program is:
class QuartsToGallonsInteractive{
public static void main(String[] args){
Scanner input = new Scanner(System.in)
int QUARTS_IN_GALLON;
QUARTS_IN_GALLON = input.nextInt();
int quartsNeeded=18;
int gallonsNeeded; int extraQuartsNeeded; gallonsNeeded=quartsNeeded/QUARTS_IN_GALLON; extraQuartsNeeded=quartsNeeded%QUARTS_IN_GALLON;
System.out.println("A job that needs " + quartsNeeded + " quarts requires " + gallonsNeeded + " gallons plus " + extraQuartsNeeded + " quarts");
}
}
Read more about interactive program at
https://brainly.com/question/15683939
A bottom-up approach is better for smaller problems.
Answer:
The correct answer is true.
Sorry for late answer.
Hope this helps.
Explanation:
I got it right on edge.
Answer:
True
Explanation:
Read the following scenarios carefully and select a suitable storage device for each situation. Make sure to justify your choice by talking about the characteristics of your chosen storage device such as Capacity, Speed, Portability, Durability and Reliability.
(a) “A military contractor has been asked to produce a new all-terrain tablet PC which will be used by the armed forces when out in combat situations. Cost is not an option, lives could well depend on how reliable this tablet PC is under extreme conditions.” [6](write a whole paragraphy)
I will be giving out brainliest to best answer
Answer:
SSD drive or sd card
Explanation:
Optical wouldn't have enough data and could get easily damaged by the movement of the armed forces.Hard Drives would be insanely bad as if you even slightly moved while it were moving you would corrupt data. SSD doesn't get damaged as easily as these two and can hold a sufficient amount of data for its size.
Storage device are the hardware that are used to store huge amount of data. Storage device like SD cards and SSD cards can be used in military operations as these are hard and cannot break easily and store huge data.
What is Storage device?
Storage device are any type of computing hardware that are used for storing, porting or extracting data. Storage devices can hold and store information both temporarily and permanently. They may be internal or external to a computer device.
SD cards are the best device used for storing big data files and playing them back. SSDs on the other hand, are optimized for running the operating system partition of a computer. One device has a simpler role while the other needs to be smarter and more adaptable. These are the most compatible storage devices which can be used for military functions.
Learn more about Storage device here:
https://brainly.com/question/11599772
#SPJ2
55 POINTS, IN JAVA
In this program, you need to make an upright tree that contains stars *. Your output should look like:
*
* *
* * *
* * * *
* * * * *
* * * * * *
* * * * * * *
* * * * * * * *
* * * * * * * * *
Hint: You will need to create a variable that controls how far the * is from edge of the console. That variable should change size each iteration through the outer loop!
public class JavaApplication82 {
public static void main(String[] args) {
for (int i = 1; i <= 9; i++){
for (int w = 0; w < i; w++){
System.out.print("*");
}
System.out.println("");
}
}
}
This works for me.
(03.04 MC) While working in a group, two members are not getting along. You ask each one what is happening, and they both say they don't know why the other person is mad. You bring the two members together, so they can discuss the issue. What should be their first step in this conflict resolution? O Agree upon the problem Brainstorm possible solutions O Identify the issue O Negotiate a solution
Answer:
Agree upon the problem Brainstorm possible
Explanation:
Answer:
Is C, Identify the issue
Explanation:
I got it right on my test.
Which statement describes a biotic factor interacting with the environment?
Water flows down a creek bed.
Soil contains nutrients for growth.
Deer graze through the grassland.
The sun emits solar rays that reach Earth.
Answer:
Deer graze through the grassland.
Explanation:
Biotic factors are living components of the environment that shapes the ecosystem. Abiotic factors are the non-living component of the environment.
These biotic factors are plants, animals and micro-organisms.
A deer grazing through the grassland is a a biotic factor interacting the environment. The other choices contains abiotic factors.Abiotic factors are soil, sunlight, nutrients etc.
Answer:
C
Explanation:
Advancements in technology have made the global marketplace more accessible. True O False
Answer:
I'd say true
Explanation:
Because techonolgical advancements have made the marketplace more reliable and more powerful than ever before. Hoep it helps
Answer:
true
Explanation:
this is because traders can show case their product through the internet.
there is easy acess of buying of stuffs at ones comfort zone .
transition of money is quicker
last bittttt of points
Answer:
THANKSSS..!!! Be safe
Explanation:
What statement best describes percentage values in CSS?
It's the fraction of the value that came before it.
O It's the smallest controllable element on the screen.
O It's always the width of an indent.
It's a value that is relative to the width of its HTML element or to the page.
Answer:
D.It's a value that is relative to the width of its HTML element or to the page.
Explanation:
Hope it's right
Answer:
D
Explanation:
Conclusion for primary memory
Answer:
primary memory is also called main memory and also it stores information in the computer
Explanation:
explain the computer according to size
How would I copy this image?
There is an image from a scientific research pdf that I would like to use for one of my research papers in school, but I am unable to find out how to copy it and then paste it into my paper.
Thank you for your hep
Question: How would I copy this image?
Answer: Either screenshot it, or CTRL C ± CTRL V it. To screenshot something, open 'snipping tool' and pull up the PDF, then box in whatever you are trying to copy. You can also reverse image search it to find it somewhere on the web.
Uplifting Note: To you, smiling at someone may mean nothing, but to them, it might be their whole world.
steps to run a Q-BASIC programme
Answer:
Cls
Read
Input
END
SOMEONE PLEASE HELP !!!!!!
Who is the person that creates fun and challenging levels and works closely with environment modelers & animators?
Answer:
An animation modeler creates the CG character, environment, and hard surface models of an animated feature in three dimensions. They work closely with art directors to be sure that all models conform to the intended design and visual style of the animated film.
Explanation:
i hope this is what u mean lolsss
If you want to remove meeting responses from your inbox but still want to see tracking options, what should you do? Turn off all meeting responses in the Calendar options. Sort and delete the meeting responses from your inbox. Change the Calendar view to a side-by-side comparison. Create a tracking rule that moves responses to a new folder.
Answer:
its D. create a tracking rule that moves responses to a new folder.
Explanation:
i just got the answer right on edge 2020.
Answer: In the image below
Explanation:
Nonverbal communication skills can promote teamwork. True False
Answer:
its true
Explanation:
i just got done with this assignment.
Answer:
tre
Explanation:
А ________ provides an easy way for workers to Interact with thelr computers.
System Call
Command Prompt
FAT
GUI