Answers

Answer 1
What is that ????????

Related Questions

In your own words, explain the difference between undecidable problems and unreasonable time algorithms.

Answers

Answer:

Kindly check explanation

Explanation:

In relation to algorithm structure of framework, an unreasonable time algorithm means functions whose execution time or number of steps increases as the number inputted increases. The unreasonable time algorithm is usually explained using the exponential function ; 2^n ; here for each increase in the Number of n supplied, number of steps taken multiplies ; where n is the number of imputs.

Undecidedable programs are those which can be referred to as unsolvable problems in which computers fail to arrive at an answer to. Hence, no matter how complex our algorithm is, it will fail to arrive at a correct yes or no answer for such problems, these are what is called undecidable programs.

Which THREE of the following are examples of formatting data?

changing the color of a cell
changing the color of text in a cell
entering a formula to find the total of the numbers in a column
making the spreadsheet software interpret a number as a dollar amount
increasing the height of a row

Answers

Answer:

changing the color of a cell

changing the color of text in a cell

increasing the height of a row

Answer:

The answers are:

Changing the color of a cell

Changing the color of text in a cell

Making the spreadsheet software interpret a number as a dollar amount

Explanation:

I got it right on the Edmentum test.

1. Write a programme to print the Fees Receipt of English High School Required Inputs Name of the Student Monthly Tuition Fees Monthly Transport Fees No. Of Month Output Name of the Student Monthly Tuition Fees Monthly Transport Fees Total Fees VAT Fees Amount to be paid Thank you message Sample Output is given below

Answers

Answer:

In Python:

sname = input("Name: ")

tuition = float(input("Monthly Tuition: "))

transport = float(input("Monthly Transport: "))

months = int(input("No. of Months: "))

print("Student Name: "+sname)

print("Monthly Tuition: "+str(tuition))

print("Monthly Transport: "+str(transport))

fees = (transport + tuition) * months

print("Total Fees: "+str(fees))

VAT = 0.00

print("VAT: "+str(VAT)+"%")

amount = fees - VAT*fees/100

print("Amount to pay: "+str(amount))

print("Thank you...")

Explanation:

The program was written in Python

This gets the student's name

sname = input("Name: ")

This gets the student's monthly tuition fee

tuition = float(input("Monthly Tuition: "))

This gets the student's monthly transport fee

transport = float(input("Monthly Transport: "))

This gets the number of months

months = int(input("No. of Months: "))

This prints the student's name

print("Student Name: "+sname)

This prints the student's monthly tuition fee

print("Monthly Tuition: "+str(tuition))

This prints the student's monthly transport fee

print("Monthly Transport: "+str(transport))

This calculates the total fee

fees = (transport + tuition) * months

This prints the total fees

print("Total Fees: "+str(fees))

Here, we assume that VAT is 0%

VAT = 0.00

This prints the assumed VAT

print("VAT: "+str(VAT)+"%")

This calculates the total payable fee

amount = fees - VAT*fees/100

This prints the total payable fee

print("Amount to pay: "+str(amount))

This prints a thank you message

print("Thank you...")

What are two design elements that help MRAP trucks resist mines?

Answers

Answer:

The two design elements that help MRAP Trucks resist mines are:

A) Its hard armored body

B) Its hull is V-shaped. A design that enables it to deflect Improvised Explosive Devices (IED) blasts away from the vehicle

Explanation:

Mine-Resistant Ambush Protected. This is the full meaning of MRAP. This terminology is used to describe trucks used mainly by the United States Military in terrains that have been weaponized with explosives.

These heavy-duty vehicles are also designed to decimate or clear explosives and mines. They offer more protection than tanks and humvees and can be retrofitted with offensive gear.

Interestingly, they are very street legal and can be purchased by non-military personnel or civilians.

Cheers

A group of 8 BITS is called a?
•Hex
•Nibble
•Byte
PLEASE ANSWER I WILL GIVE U BRAINLY!!

Answers

It’s a byte hope this helps

Answer:

byte is the answer thank you

Discuss the use of spreadsheet software compared to database software to store and manipulate student data.

Answers

Explanation:

Because databases store information more efficiently, databases can handle volumes of information that would be unmanageable in a spreadsheet. Spreadsheets have record limitations whereas databases do not. Compared to databases, spreadsheets can require a large amount of hard-drive space for data storage.

Non- intentional errors caused by computer users such as erase or overwrite data or through viruses passed from secondary storage devices or the internet

Answers

Answer: I think yes

Explanation: because of national computer errors I do think that secondary storage devices should be needed.

Which language is a Client Side Programming Language?
PHP
HTML
JavaScript
XML

Answers

Answer:

(c): JavaScript.

Answer:

c

Explanation:

DISEÑAR EL SIGUIENTE FORMULARIO: Y CALCULAR EN PHP: ¿cuánto pagaría un cliente, si elige un plan de pagos de acuerdo a los siguientes datos? 12 meses = 12 % de interés anual 24 meses = 17 % de interés anual. Menor de 12 meses = no paga interés. Solo se acepta un máximo plan de 24 meses

Answers

Sorry don’t get your language

Sandra has composed a draft of her essay in Microsoft Word. She now wants to revise the essay. Which tool can she use to store the document with a different name and makes changes in the new document?

Answers

Answer:

she can use Ctrl S then open it again

Explanation:

i hope this helps and please mark as brainliest

It deals with integration approaches and techniques that connect different components of IT infrastructure

Answers

Answer:

Integrative programming.

Explanation:

Software integration can be defined as a strategic process which typically involves the combination of existing software components to build or create a complete system.

Integrative programming deals with the integration approaches and techniques that connect different components of IT infrastructure.

Basically, the different components such as platforms, software applications, databases and people of an information technology (IT) infrastructure are connected through the use of an integration technique or framework in order to facilitate a safe, secure, private (intra) and public (inter) application collaboration.

The main purpose of Integrative programming is to enable business firms or companies to integrate internal and external business processes with their business partners and unlimited sharing of data. Therefore, integrative programming improves the growth and development of a business dynamically.

Renee works for a television series. Her responsibility is to transfer data from the camera to a hard drive. What is her job designation?

Answers

Answer:

Data wrangler

Explanation:

Her responsibility is to transfer data from the camera to a hard drive. What is her job designation? Data Wrangler.

mark as brainliests

What is one difference between the Simple Gear Train with Same Size Gears and Simple Gear Train with Different Size Gears?

Answers

Answer:

One difference between a Simple Gear train with Same Size Gears and Simple Gear Train with Different Size Gears is the that the number of rotations of both shafts in the Simple Gear Train with Same Size Gears is the same the number of rotations of both shafts in the simple Gear Train with Different Size Gears are different

Explanation:

A simple gear train is one in which each shaft has only one shaft, and the motion of one shaft in transmitted to the other when the gears are in contact

Write a c++ program which has array in fifteen element sort the array by selection the search for in element using binary search

Answers

Answer:

Explanation:

The following code is written in C++ and automatically implements the 15 element array. Then sorts it using selection sort. And finally implements a function that takes an element as a parameter and searches/returns that element using binary search.

#include<iostream>

using namespace std;

       int binarySearch(int arr[], int p, int r, int num) {

       if (p <= r) {

       int mid = (p + r)/2;

       if (arr[mid] == num)

       return mid ;

       if (arr[mid] > num)

       return binarySearch(arr, p, mid-1, num);

       if (arr[mid] > num)

       return binarySearch(arr, mid+1, r, num);

       }

       return -1;

       }

       int main() {

           int array[15] = {10, 20, 30, 31, 35, 15, 5, 9, 17, 22, 51, 55, 96, 42, 63};

           int size = 15;

           int i, j, imin;

           for(i = 0; i<size-1; i++) {

               imin = i;

           for(j = i+1; j<size; j++)

               if(array[j] < array[imin])

               imin = j;

               swap(array[i], array[imin]);

           }

           

       int chosenNumber = 31; //Any number that you want to search for

       int numberIndex = binarySearch (array, 0, n-1, num);

       }

If the radius is 1/2 of the diameter, what is the circumference of each wheel if "Circumference = 2 x 3.14 x radius"


need the help asap please!

Answers

Answer:

pi times the diameter

Explanation:

d = 2r

circumference is 2πr

TLE(ICT)-10

Research on other forms of Operating systems used in smartphones and give a description for each.​

Answers

Answer:

Android

iOS

Explanation:

Operating systems refers to the embedded software program upon which a machine ( computer or smartphone) is programmed to work. Applications or programs which machines would run must be compatible with that which is designed for the operating system. Operating systems handles and controls process and file management, input and output among others.

The Android and iOS operating system are the two most popular operating systems used on smartphones. In terms of ownership, iOS is developed by Apple and it is not open source (closed source). It has a simple and very less customizable interface. Smart products such as iPhones, iPads run on iOS operating system.

Android on the other hand is runned by googl and is more open source, with a much more customizable interface, android garners more

popularity in the smartphone ecosystem. Most major smartphone devices run on Android such as Samsung, Sony and so on.

Other operating systems may include windows which are very less popular.

The other forms of operating systems include Android and iOS.

It should be noted that operating systems simply mean the embedded software program through which a computer or smartphone is programmed to work.

Operating systems are important as they handle and controls processes and file management. The Android and iOS operating systems are used on smartphones. iOS is owned by Apple.

Learn more about operating systems on:

https://brainly.com/question/1326000

Discuss how the use of digital formats for audio-visual recording and editing has
transformed the film world.

Answers

Answer:

Digital formats allow for lossless data storage, fast editing (without the loss of original source material, ie having to manually clip pieces of film), and made collaboration easier.

The __________ statement allows you to check for
multiple test expressions and execute different codes
for more than two conditions.​

Answers

Answer:

B) nested if...else

Explanation:

In Computer programming, there are four (4) main types of statements used in the decision-making process and these are;

I. If statement.

II. If....else statement.

III. Else.....if statement.

IV. Nested if...else statement.

The nested if...else statement allows you to check for multiple test expressions and execute different codes for more than two conditions. It uses the other three (3) statements in its decision-making process.

However, only the first test expression would be executed when it is true and then the program is terminated. Otherwise, the program would continue to run until it gets to the breaking point (else statement) and then terminates.

combining and splitting multiple channels across a fiber optic connection is called ?

Answers

frequency-division multiplexing I believe

7.

"You win!" never displays. What line is responsible for this error?

1

var score

0

2

onEvent

"button2"

"click"

function

3

var score

score + 1

if

score

5

setText ("display", "You win!");

A. 1

B. 3

ОООО

C. 4

D. 5

Answers

Answer:

The answer is "4".

Explanation:

In this code, on line number 4, it will give the error message, and its correct solution can be defined as follows:

In this code, a variable "score" is declared, that holds a value that is 0, and in the next step, a method "onEvent" is declared that uses a method, and in the if block, it checks the "score" value that is less than 5 and it will print the message.

Asking for certain data twice is

Answers

Answer:

repetitive..

what are the options

Explanation:

Please help me... I'll give you brainliest
Assignment Guidelines
Write an essay, preferably 500 words, or more summarizing your experience of writing the “Hello world!” program (java). Answer some of the following questions, do you understand how the NotePad text editor and NetBeans work together? Did your program compile cleanly, or did it include errors? Were you able to identify and fix the errors? How many times did you need to fix and rebuild your program before it ran? Remember to spell- and grammar-check your paper and to include a title page.

Answers

Answer:

Explanation:

so u have to wirte a

Process of sending signals, interpreting received signals, and adjusting through signals is called

Answers

Answer:

TCP The Transmission Control Protocol

Explanation:

area of trapezium is 54cmsq if parallel sides are 10cm and 8cm long find the distance between the parallel sides​

Answers

Explanation:

the distance between the parallel sides is the height(h)

formula to find area of trapezium :

Area = 1/2(a+b) h

54 = 1/2 (8+10) h

54=1/2(18) h

54 =9h

54/9=h

h= 6 (ans)

In everyday life, we use numbers based on a combination of digits between 0 and 9.
This counting system is known as decimal, or ?
•Denary
•Binary
•Hexidecimal
PLEASE ANSWER I WILL GIVE U BRAINLY!!

Answers

Answer:

denary is the answer thank you

Need help ASAPP PLEASE
thanks and BRAINLIST only for correct answers :)
Thank you!!

Answers

Answer:

1. Some websites I would be interested in building:

Pop culture updates.Historical eventsAnthropological website - Exploring different cultures around the world.

2. Reasons people might visit my website based on the above.

To see what is new in the world in terms of pop culture. To find out more about different cultures in the world.

3. Formatting.

There are some very aesthetically pleasing websites that can have you staying on the website for longer periods simply to appreciate the view. I would like to learn how to format websites in such a way that they appear very eye catching and impressive.

What is 00010100 in Denary?
•22
•20
•18
PLEASE ANSWER I WILL GIVE U BRAINLY!!

Answers

20.....................

System.out.print();

System.out.print("Enter a number less than
100: ");

num = Expo.enterInt();


for (int i=1; I <= num; I++){

if(num %2!=0)

System.out.println(num + " is odd");
else

System.ouy.println(num +"is even")

}

System.out.println();
}
}

Say I enter 5. The loop makes 5 show up 5 times instead of the numbers 1-5 saying if it's even or odd​

Answers

Answer:

write 2:4$+8*

Explanation:

Which of the following is needed to connect to the Internet? HELP ASAP



Printer


Internet access


Operating system


TCP/IP


Digital camera


Computer


Client software

Answers

Explanation:

you need a operating system and TCP/IP

coment on this if your user starts with dida

Answers

Answer:

oh sorry i needed points but i have a friend whos user starts with dida

Explanation:

Other Questions
How did the Lottery system impact Louisiana? Read the following scenarios and indicate the type of reliability in each scenario. Explain your answersi) Test-retest reliability ii) Parallel forms reliability iii) Internal consistency reliability iv) Interrater reliability a) You want to evaluate the reliability of a critical thinking assessment. You create a large set of items that all pertain to critical thinking and then randomly split the questions into two sets of questionnaires. You administer both versions of the test to the same group of individuals. The scores from the two versions can then be correlated in order to evaluate the consistency of results across alternate versions. b) You want to evaluate the degree to which the art portfolios in your 7th grade class meets the required standards. You ask 3 different art experts to evaluate the students' portfolios with the help of a rubric. c) You are developing a math measure to test the constructs of number sense and logic of your 4th grade students. You want to make sure your measure is not testing other constructs like arithmetic skills. You would like to evaluate the degree to which different test items that probe the same constructs produce similar results. Which of the following is more associated with environmental effects than the genetic influence? 1 point8.) Anthony goes to lunch with his friends. His portion of the bill is $20. Hewants to leave the waitress a 20% tip. How much would he leave for a tip? Which of the following is not true about both scientific laws and scientific theories?A. Both are based on hypothesesB. Both can be used to make predictionsC. Both can be modified if new evidence arisesD. Both are used to explain why a phenomenon happens. Determine the domain of the function.F(x)=x/x-9 Write the equation, in the slope-intercept form, for the line shown in the graph below: if the Universe was born at the Big Bang, what existed before then?Try to answer that it's impossible UvU PLEASE HELP US ...if you help i will give you 5 stars, a thanks, and a brainliest 1.What happened when some lost a case and still wanted to keep fighting?2.Were there any cases or courts that seemed harder to match than others? Why?3.What did all of the cases that made it to the Supreme Court have in common?Please answer asap.... how does the description of ""The Gates"" help to reader understand ,......What is, x-3>7 please help me i dont know this lol 50 points! d) In general, how is a whole chromosome probe used to study a person's genome? anti abortion or pro choice and why this is for my class i need at least one pargraph why and would u still support if ur friends got one? Describe the positive and negative effects of the Industrial Revolution on each societal class. Your essay should be at least four complete sentences long. One acre is equal to 4840 square yards. Jamal's backyard is 121 yards long and 40 yards wide. How big is Jamal's backyard in acres? In your opinion, was Westward Expansion a positive or negative in regards to American progress? Is an exam system best for filling government jobs? explain.PLEASE HELP lolz Most plants are seedless nonvascular plantsnonvascular seed plantsseedless vascular plantsvascular seed plants 80% of d is 18. what is d?