Answer:
Story Mode
Explanation:
The game has a clearly-defined beginning, middle, and end, also known as campaign or story mode.
Answer:
C
Explanation:
To remove a specified number of characters from anywhere within a string, you should use the ____ method.
Answer:
remove
Explanation:
PLZ HELP! 50 POINTS!!!! Which device is used to change a signal into a code?
Group of answer choices
an encoder
an antenna
a wave
Answer:
It should be an encoder.
Explanation:
hope this helps and sorry if its wrong
Why are graphs and charts important to analyze data?
Answer:
Graphs and chart provide the GUI representation they provide the analysis in form of summary that is easy to understand and they provide good comparision.
Explanation:
Summary
Comparision
Quick to understand
Digital cameras often have trouble with auto white balance, which can result in unattractive blue, orange, or green casts.
A: true
B: false
The statement about digital cameras often having trouble with auto white balance which can result in unattractive blue, orange or green casts is; A: True.
Let us first define white balance(WB).
White balance is defined as the process of removing unrealistic color casts, in a way that will make the objects that appear to be white in person to also be appear white in the photo.
Now, for a camera to have the right white balance, it will have to consider the "color temperature" of a light source i.e the relative warmth of white light.
Finally humans eyes are very good at judging which is white under different light intensities or sources, but that is not the case with digital cameras because they struggle with auto white balance and that could lead to different colors like unattractive blue, orange, or even green color casts.
Read more about Camera pictures at; https://brainly.com/question/22862481
What is this on googel documents and how do I fix it
Answer:
if you're trying to take off the words on the side, when you hover over it, an "X" will appear and you can delete it
Explanation:
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!
Which CPU characteristic when enabled, doubles the number
of instructions which can be processed at once?
Answer:
A central processing unit (CPU) is the electronic circuitry within a computer that carries out the instructions of a computer program by performing the basic arithmetic, logical, control and input/output (I/O) operations specified by the instructions. The term has been used in the computer industry at least since the early 1960s. Traditionally, the term “CPU” refers to a processor, more specifically to its processing unit and control unit (CU), distinguishing these core elements of a computer from external components such as main memory and I/O circuitry.
The form, design and implementation of CPUs have changed over the course of their history, but their fundamental operation remains almost unchanged. Principal components of a CPU include the arithmetic logic unit (ALU) that performs arithmetic and logic operations, processor registers that supply operands to the ALU and store the results of ALU operations, and a control unit that fetches instructions from memory and “executes” them by directing the coordinated operations of the ALU, registers and other components.
Most modern CPUs are microprocessors, meaning they are contained on a single integrated circuit (IC) chip. An IC that contains a CPU may also contain memory, peripheral interfaces, and other components of a computer; such integrated devices are variously calledmicrocontrollers or systems on a chip (SoC). Some computers employ a multi-core processor, which is a single chip containing two or more CPUs called “cores”; in that context, single chips are sometimes referred to as “sockets”. Array processors or vector processors have multiple processors that operate in parallel, with no unit considered central.
Whats wrong with this and how do I fix it?
Answer:
this happened to me before.. there isn't anything wrong you just have to wait a little
Explanation:
What is an example of an outcome for a game?
A. trying to save the world from an evil wizard
B. rescuing Princess Peach from Bowser
C. playing an ocarina to teleport across the land
D. pressing Up, Up, Down, Down, Left, Right, Left, Right, Start on a controller as a “cheat code” to gain extra lives
Answer:
B
Explanation: I play alot of ####### NIntendo games!!!!!!
Answer:
b
Explanation:
Write steps of the following operations.
a. applying borders and spacing
b. create a folder
Answer:
b
Explanation:
first right click on an empty space
click on new from the pop up menu
finally click on new folder
Write a program to print sum on first 10 natural numbers.
#include
int main()
{
int i, sum;
for(i=1;i<=10;++i);
{
sum =sum + i;
}
printf("The sum is = %d",sum);
}
A program that prints the sum on the first 10 natural numbers is:
int sum=0;int i=1;for(i=1; i <= 10 ; i++) // the value of i will be from 1 to 10{sum=sum+i; //each number will get added to the variable ‘sum’}System.out.println(sum); //What is a program?A computer program in a programming language is a set of instructions and commands written in a language that a computer can execute or understand.
Using the For Loop program, the variables of the first 10 natural numbers can be written as:
int sum=0;int i=1;for(i=1; i <= 10 ; i++) // the value of i will be from 1 to 10{sum=sum+i; //each number will get added to the variable ‘sum’}System.out.println(sum); //Learn more about writing a program here:
https://brainly.com/question/23275071
In 1981, Ian Murphy broke into the AT&T online computer system and changed their clocks, allowing people to make calls during the day at a discounted rate. Based on the list of defining factors for computer crimes, what best describes Murphy's crime?
A.
intentionally disrupting, degrading, or destroying information or services on a computer
B.
disclosing any data or information obtained through illegal online activity
C.
knowingly receiving or holding onto any data or information obtained through illegal online activity
D.
intentionally or recklessly tampering with, taking, transferring, concealing, altering, or damaging physical computer equipment
What's the technique of drawing a 3D object with one vanishing point?
In Super Mario Bros., you become Mario and your friend is Mario’s younger brother Luigi. Your job is to race through Mushroom Kingdom to save Princess Toadstool and avoid the enemy, Bowser. You can jump from and to different objects, picking up coins and other items to help you on your journey through the levels. What game genre (or combination of genres) best describes this game?
A.
strategy simulation
B.
action adventure
C.
RPG
D.
sports action
Please help please help
Answer:
Explanation:
je pense que la reponse est la suivante a et b puis c
what is the full form of Blog
relevez le rôle principal de la peau dans l,organime humain. je suis bloquée aidez moi metci
Answer:
language?
Explanation:
why is color important for all objects drawn ?
What is this on G00gel Documents , how do I fix it?
Answer:
Sorry but it donest show the picture
Explanation:
A computer has __ IP address(es).
A. Many
B. One
Answer:
A computer has one IP address(es).
One
Explanation:
Have a great day!
PLEASE ANSWER (CODING IN PYTHON)
Ask what kind of pet the user has. If they enter cat, print “Too bad...”, if they enter
dog, print “Lucky you!" (You can change the messages if you like). Once this works,
add other pets. (Iguana, Pig, Rabbit...)
Answer:
Explanation:
a = input("what kind of pet the user has")
if a == 'cat':
print("Too bad")
elif a == 'dog':
print("Lucky you!")
The program based on the information is given below.
What's the program about?def main():
pet = input("What kind of pet do you have? ").lower()
if pet == "cat":
print("Too bad...")
elif pet == "dog":
print("Lucky you!")
elif pet == "iguana":
print("That's interesting!")
elif pet == "pig":
print("Oink oink!")
elif pet == "rabbit":
print("Hop hop!")
else:
print("I'm not familiar with that pet.")
if __name__ == "__main__":
main()
Learn more about program
https://brainly.com/question/26642771
#SPJ2
What is the maximum possible value of num after the code has been run?
Answer:
the maximum value from the first line is 20 - 0 = 20
and from the second 20-5 and 20+5 so the maximum is 25
what 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.
Think about a career you would like to have 10 years from now.
What role does technology play into this career?
Why is technology beneficial?
Will mark brainliest
Answer: Scientist
Explanation: Scientists use technology to record data, as well as using technology to study different things, for example scientists use computers to track DNA.
16. If a user can make modifications to database objects, what permission has that
user been assigned?
A. Update
B. Alter
C. Create
D. Select
B
Explanation:
The Alter command is used when we want to modify a database or object contain in database.
If a flowchart has a diamond with the words “yes” and “no” to the sides of it, then it is representing a program that is a sequence.
Group of answer choices
True
False
Answer:
true
Explanation:
hope it help
what is internet? short ans
Answer:
The Internet is a big network that connects computers all over the world.
[tex]{\huge{\underline{\bf{\pink{Question}}}}}[/tex]
: Given a matrix, we need to count all paths from top left to bottom right of MxN matrix. You can either move down or right.
Answer:
[1,2 ] is the matrix to count all paths from top left to bottom right of M×N matrix.Based on the information given, the correct option will be [1,2 ] is the matrix to count all paths from top left to bottom right of M×N matrix.
A matrix simply means a set of numbers that are laid out on rows and columns. The numbers in matrix can represent either data or mathematical equationsIt should also be noted that matrix can be used as way of providing quick approximation of calculations.In conclusion, the correct option is [1,2 ] is the matrix to count all paths from top left to bottom right of M×N matrix.
Learn more about matrix on:
https://brainly.com/question/1821869
3- It is an Information page that is displayed through one of the Internet browsers, it can be saved along htm, html page.
a. Dynamic website
f. Static website
b. Ecommerce site
c. Social media sites
Answer:
f. Static website
Explanation:
HTML stands for hypertext markup language. It is the standard markup language for web pages that define the structure of the content. These elements are the building blocks of any website.
HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content. For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.
Static web pages are often HTML documents stored as files in the file system and made available by the web server over HTTP (nevertheless URLs ending with ". ... Static web pages are suitable for content that never or rarely needs to be updated, though modern web template systems are changing this.
a program is under development to keep track of a clubs members
Answer:
Keep a chart with you
Explanation:
You could right something along the lines of:
To keep track of the members in the club, I'll(we'll) have them write their names down on a chart so we don't forget. I(we) could also just do a thing where I(we) plan everything out beforehand and I(we) have been keeping track of the members.
You could right something along the lines of:
Since the program is under development, I(we) could tell everyone in the club to put their names on a spreadsheet and I(we) could start developing the program further that way.