Answer:
a) Integer data type.
b) Real data type.
c) Boolean data type.
Explanation:
a) Integer data type is limited to whole numbers (counting numbers 1, 2, 3…….).
b) Real data type can store fractions and numbers with decimal positions (such as dollar values like $10.95).
c) Boolean data type is limited to values that are either true or false (represented internally as 1 and 0 respectively).
Differentiate between TCP Reno and TCP Tahoe.
Answer:
They have different words
Explanation:
I hope it helps choose me the brainest
To nest one structure within another structure, you a. define both structures and then create a data member of the nested structure type within the other structure b. create a container that holds objects of the nested structure type and then include the container within another structure c. define the nested structure within another structure
Answer:
Hence the correct option is option a) define both structures and then create a data member of the nested structure type within the other structure.
Explanation:
To make Address nested to Employee, we've to define Address structure before and out of doors Employee structure and make an object of Address structure inside Employee structure.
For example, we may need to store the address of an entity employee in a structure.
The analog computer deals directly with
continuously variable aspects of physical phenomena such as a electrical, mechanical etc.
The analog computer deals directly with measured values of continuous physical magnitude.
What is an Analog computer?An analog computer may be defined as a type of computer that is significantly used to process analog data. These computers store data as a continuum of physical quantities and perform calculations using measurements.
It is completely different from digital computers, which use symbolic numbers to represent results. are great for situations that require data to be measured directly without conversion to numbers or codes. Analog computers, although readily available and used in scientific and industrial applications such as control systems and aircraft, have largely been superseded by digital computers due to the many complications involved.
Therefore, the analog computer deals directly with measured values of continuous physical magnitude.
To learn more about Analog computers, refer to the link:
https://brainly.com/question/18943642
#SPJ2
Your question seems incomplete. The most probable complete question is as follows:
The analog computer deals directly with:
number or codes.measured values of continuous physical magnitude.signals in the form of 0 or 1.signals in discrete values from 0 to 9Phân tích vai trò của các yếu tố trong biên tập Audio và Video
Answer:
Answer to the following question is as follows;
Explanation:
A visual language may go a long way without even text or narrative. Introductory angles, action shots, and tracker shots may all be utilised to build a narrative, but you must be mindful of the storey being conveyed at all times. When it comes to video editing, it's often best to be as cautious as possible.
There are two circular grounds Ground-A and Ground-B. Ground-A is having diameter of 15 meters and Ground-B is having diameter of 20 meters. Mohsin is running in Ground-A and Neetesh is running in Ground-B. Write a program in C++ that asks the user to input the time taken, in seconds, to complete one compete round of the ground by both the friends and displays who is running faster.
Answer:
A
Explanation:
b/c the round of 'A' is less than ruond of'B'
Consider a short, 90-meter link, over which a sender can transmit at a rate of 420 bits/sec in both directions. Suppose that packets containing data are 320,000 bits long, and packets containing only control (e.g. ACK or handshaking) are 240 bits long. Assume that N parallel connections each get 1/ N of the link bandwidth. Now consider the HTTP protocol, and assume that each downloaded object is 300 Kbit long, and the initial downloaded object contains 6 referenced objects from the same sender.
Required:
Would parallel download via parallel instances of non-persistent HTTP make sense in this case? Now consider persistent HTTP. Doyou expect significant gains over the non-persistent case?
Does the estimate of a tolerance level of 68.26% of all patient waiting times provide evidence that at least two-thirds of all patients will have to wait less than 8 minutes?
Answer:
Yes, because the upper limit is less Than 8 minutes
Explanation:
According to the empirical formula :
68.26% of data lies within 1 standard deviation from the mean;
Hence,
Mean ± 1(standard deviation)
The sample mean and sample standard deviation of the given data is :
Sample mean, xbar = Σx / n = 546 / 100 = 5.46
Sample standard deviation, s = 2.475 (Calculator)
The interval which lies within 68.26% (1 standard deviation is) ;
Lower = (5.460 - 2.475) = 2.985
Upper = (5.460 + 2.475) = 7.935
(2.985 ; 7.935)
Since the interval falls within ; (2.985 ; 7.935) whose upper level is less than 8 means patients will have to wait less Than 8 minutes.
Which terms means device that converts one voltage to another ?
Answer:
I believe it is an adapter
Explanation:
An adapter or adaptor is a device that converts attributes of one electrical device or system to those of an otherwise incompatible device or system. Some modify power or signal attributes, while others merely adapt the physical form of one connector to another.
Calculator is an example of
computer
A. analogue
B. hybrid
C. manual
D. digital
E. public
D. digital
Explanation:
I hope it helps you
Suppose we can buy a chocolate bar from the vending machine for $1 each. Inside every chocolate bar is a coupon. We can redeem six coupons for one chocolate bar from the machine. This means that once you have started buying chocolate bars from the machine, you always have some coupons. We would like to know how many chocolate bars can be eaten if we start with N dollars and always redeem coupons if we have enough for an additional chocolate bar.For example, with 6 dollars we could consume 7 chocolate bars after purchasing 6 bars giving us 6 coupons and then redeeming the 6 coupons for one bar. This would leave us with one extra coupon. For 11 dollars, we could consume 13 chocolate bars and still have one coupon left. For 2 dollars, we could have consumed 14 chocolate bars and have two coupons left.Write a program that inputs a value for N and outputs how many chocolate bars we can eat and how many coupons we would have left over. Use a loop that continues to redeem coupons as long as there are enough to get at least one chocolate bar.
Answer and Explanation:
Using JavaScript:
/* program should take N input which represents the dollar amount and output how many chocolate bars and how many coupons we have*/
function chocolatebar(dollars){
var dollaramt= dollars;
var i;
for(i=0; i <= dollaramt; i++){
i=i+6
?
Alert ("you have 1 extra chocolate bar");
:
Alert ("keep buying chocolate bars to get more coupons for a bonus chocolate bar")
}
}
*
You are to calculate the property tax for tax payers. You will ask the county tax clerk if they want to run the program and initiate a loop that runs the program if the county clerk inputs a 1. When the county clerk chooses to run the program, you will ask the county tax clerk to input the lot number and assessed value of the house. Each property is taxed at a rate of 5% of the assessed value. The program will end when the county clerk enters a value of 0 when prompted by your program to either run the program again or quit. Use a while loop to validate the lot number to make sure that it falls between the range of 0 and 999999. When the clerk enters an invalid lot number, display a message that echoes the invalid number entered, and a reminder of the value range of numbers for a lot number. You are to print the lot number, assessed value, and property tax. After the program ends, display the total assessed values, and property taxes calculated, and average property tax
Answer:
Explanation:
The following code is written in Java. It creates the loop as requested and validates the information provided before continuing, if the information is invalid it prints "Invalid Information to the screen" and asks the user to enter the information again. Finally, outputing all the requested information at the end of the program. The code has been tested and the output can be seen in the attached image below.
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;
class Brainly {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int totalValues = 0;
int totalTaxes = 0;
int count = 0;
while(true) {
int lotNumber, value;
double tax;
System.out.println("Would you like to add an Entry: 1=Yes 0=No");
int answer = in.nextInt();
if (answer == 1) {
System.out.println("Please enter lot number: ");
lotNumber = in.nextInt();
if ((lotNumber >= 0) && (lotNumber <= 999999)) {
System.out.println("Please enter assessed value: ");
value = in.nextInt();
tax = value * 0.05;
System.out.println("Lot Number: " + lotNumber);
System.out.println("Property Value: " + value);
System.out.println("Property Tax: " + tax);
totalTaxes += tax;
totalValues += value;
count += 1;
} else {
System.out.println("Invalid Lot Number");
}
} else {
break;
}
}
int average = totalTaxes / count;
System.out.println("Total Property Values: " + totalValues);
System.out.println("Total Property Taxes: " + totalTaxes);
System.out.println("Average Property Tax" + average);
}
}
Write a program that accepts a list of integers and split them into negatives and non-negatives. The numbers in the stack should be rearranged so that all the negatives appear on the bottom of the stack and all the non-negatives appear on the top.
Answer:
The program is as follows:
n = int(input("List elements: "))
mylist = []; myList2 = []
for i in range(n):
num = int(input(": "))
mylist.append(num)
for i in mylist:
if i >= 0:
myList2.append(i)
for i in mylist:
if i < 0:
myList2.append(i)
print(myList2)
Explanation:
This gets the number of list elements from the user
n = int(input("List elements: "))
This initializes two lists; one of input and the other for output
mylist = []; myList2 = []
This is repeated for every input
for i in range(n):
Get input from the user
num = int(input(": "))
Append input to list
mylist.append(num)
This iterates through the input lists
for i in mylist:
If list element is non-negative
if i >= 0:
Append element to the output list
myList2.append(i)
This iterates through the input lists, again
for i in mylist:
If list element is negative
if i < 0:
Append element to the output list
myList2.append(i)
Print output list
print(myList2)
How do i connect WiFi on windows xp without icon?
Answer:
Right click anywhere on your taskbar, and then click Properties. Step 2: Find and click the Notification Area tab on the top bar, and then find the section labeled with System icons, check the checkbox for Network. Last, click OK to finish it.
Why are data silos problematic?
Answer:
Hampers collaboration
Resource wastage
Lack of data integrity
Explanation:
Data silos comes into play When different departments of an orgainiziations independently collects data needed for its operations. The finance, HR, administrative departments and so on collects their data and keeps it to themselves. As a result there is a repetitive and needless gathering and storage of already existing data, that is the data required by one group will have to be gathered again while it currently exists with another group. This leads to inefficient resource management and wastage. This practice also leads to data integrity as data stored differently across departments becomes inconsistent and less accurate over time. Team work and collaboration is gradually eroded as each group continues to hold on to its resources which poses a problem towards organizational growth.
3. Using Assume the following list of keys: 36, 55, 89, 95, 65, 75, 13, 62, 86, 9, 23, 74, 2, 100, 98 This list is to be sorted using the quick sort algorithm as discussed in this chapter. Use pivot as the middle element of the list. a. Give the resulting list after one call to the function partition. b. What is the size of the list that the function partition partitioned
Answer:
a. 36, 55, 13, 9, 23, 2, 62, 86, 95, 65,74, 75, 100, 98, 89
b. 15
Explanation:
, , and angle x and angle y are both in the first quadrant.
Answer:
[tex]\tan(x+y) = 3.73[/tex]
Explanation:
The missing part of the question are:
[tex]\sin(x) = \frac{1}{2}[/tex]
[tex]\cos(y) = \frac{\sqrt 2}{2}[/tex]
Required
[tex]\tan(x + y)[/tex]
First, we calculate [tex]\sin(y)[/tex] and [tex]\cos(x)[/tex]
We have:
[tex]\sin^2(x) + \cos^2(x) = 1[/tex]
So:
[tex](1/2)^2 + \cos^2(x) = 1[/tex]
Collect like terms
[tex]\cos^2(x) = 1 - (1/2)^2[/tex]
[tex]\cos^2(x) = 1 - \frac{1}{4}[/tex]
Take LCM
[tex]\cos^2(x) = \frac{4-1}{4}[/tex]
[tex]\cos^2(x) = \frac{3}{4}[/tex]
Square roots of both sides
[tex]\cos(x) = \frac{\sqrt 3}{2}[/tex]
Similarly,
[tex]\sin^2(y) + \cos^2(y) = 1[/tex]
So:
[tex]\sin^2(y)+(\sqrt 2/2)^2 = 1[/tex]
[tex]\sin^2(y)+ (2/4) = 1[/tex]
[tex]\sin^2(y)+1/2 = 1[/tex]
Collect like terms
[tex]\sin^2(y) = 1 - 1/2[/tex]
Take LCM
[tex]\sin^2(y) = \frac{2 -1}{2}[/tex]
[tex]\sin^2(y) = \frac{1}{2}[/tex]
Square roots of both sides
[tex]\sin(y) = \frac{1}{\sqrt2}[/tex]
Rationalize
[tex]\sin(y) = \frac{\sqrt2}{2}[/tex]
So, we have:
[tex]\sin(x) = \frac{1}{2}[/tex] [tex]\cos(x) = \frac{\sqrt 3}{2}[/tex]
[tex]\cos(y) = \frac{\sqrt 2}{2}[/tex] [tex]\sin(y) = \frac{\sqrt2}{2}[/tex]
[tex]\tan(x) = \sin(x) \div \cos(x)[/tex]
[tex]\tan(x) = \frac{1}{2} \div \frac{\sqrt 3}{2}[/tex]
Rewrite as:
[tex]\tan(x) = \frac{1}{2} * \frac{2}{\sqrt 3}[/tex]
[tex]\tan(x) = \frac{1}{\sqrt 3}[/tex]
Rationalize
[tex]\tan(x) = \frac{\sqrt 3}{3}[/tex]
Similarly
[tex]\tan(y) = \sin(y) \div \cos(y)[/tex]
[tex]\tan(y) = \frac{\sqrt 2}{2} \div \frac{\sqrt 2}{2}[/tex]
[tex]\tan(y) = 1[/tex]
Lastly,
[tex]\tan(x + y)= \frac{\tan(x) + \tan(y)}{1 - \tan(x) \cdot \tan(y)}[/tex]
[tex]\tan(x + y)= \frac{\frac{\sqrt3}{3} + 1}{1 - \frac{\sqrt3}{3} \cdot 1}[/tex]
[tex]\tan(x + y)= \frac{\frac{\sqrt3}{3} + 1}{1 - \frac{\sqrt3}{3}}[/tex]
Combine fractions
[tex]\tan(x + y)= \frac{\frac{\sqrt3+3}{3}}{\frac{3 - \sqrt3}{3}}[/tex]
Cancel out 3
[tex]\tan(x + y)= \frac{\sqrt3+3}{3 - \sqrt3}[/tex]
Using a calculator
[tex]\tan(x+y) = 3.73[/tex]
Which of the following is not a computer application?
a. Internet Explorer
b. Paint
c. Apple OSX
d. Microsoft Word
Apple OSX is not a computer application.
The information regarding the computer application is as follows:
The program of the computer application should give the skills that are required for usage of the application software on the computer.An application like word processing, internet, etc.Also, the computer application includes internet explorer, paint, and Microsoft word.Therefore we can conclude that Apple OSX is not a computer application.
Learn more about the computer here: brainly.com/question/24504878
Write a game that performs the roll of two dice randomly. The game should first ask for a target sum. Everytime the player enters r, the program should repeatedly print the side of the dice on a separate line. The game should stop prompting if one of these two events occur: -The sum of the two sides is equal to the target sum. -The player enters q.
Answer:
Explanation:
The following program was written in Java. It asks the user to first enter the target sum. Then it creates a while loop that continues asking the user to either roll dice or quit. If they decide to roll, it rolls the dice and prints out both values. If the target sum was hit, it prints that out and exits the program otherwise it loops again. The code has been tested and can be seen in the attached image below.
import java.util.Random;
import java.util.Scanner;
class Brainly {
public static void main(String[] args) {
Random rand = new Random();
Scanner in = new Scanner(System.in);
System.out.print("Enter Target Sum: ");
int targetSum = in.nextInt();
while (true) {
System.out.println("r: Roll Again");
System.out.println("q: Quit");
String choice = in.next();
char choiceModified = choice.toLowerCase().charAt(0);
if (choiceModified == 'r') {
int roll1 = rand.nextInt(6) + 1;
int roll2 = rand.nextInt(6) + 1;
int total = roll1 + roll2;
System.out.println("Dice 1: " + roll1);
System.out.println("Dice 2: " + roll2);
if (total == targetSum) {
System.out.println("Target Sum of " + targetSum + " hit.");
break;
}
} else if (choiceModified =='q') {
break;
} else {
System.out.println("Wrong choice");
}
}
}
}
Binary search is a very fast searching algorithm, however it requires a set of numbers to be sorted.
a. True
b. False
Skunkworks appeared to have ________ task interdependence, while the Levittown builder seemed to have ________ task interdependence. Multiple Choice comprehensive; sequential pooled; comprehensive reciprocal; pooled sequential; reciprocal pooled; reciprocal
The article upon which the question is based on:
The Skunk Works home page describes this team best: "What do the world’s first stealth aircraft, the world’s most advanced fighters, and the world’s fastest manned aircraft have in common? They were all imagined by ‘Skunks’—some of the most innovative, strategic, and visionary thinkers around." Kelly Johnson was permitted to build an experimental engineering department in 1943, and the rest is history. The small-staffed unit was organized by integrating designers with builders, working together so that ideas were buildable, with limited visitors allowed from the outside. The impressive results are many, including the U-2, the world’s first spy plane, and the SR-71 Blackbird, the world’s fastest, highest-flying aircraft.
Answer:
1. comprehensive
2. sequential
Explanation:
Skunkworks appeared to have COMPREHENSIVE task interdependence, while the Levittown builder seemed to have SEQUENTIAL task interdependence.
This is based on the idea that Skunkworks acknowledges the powers of interaction and coordination of team members and while Levittown builders work on gradual working arrangement as one input of part A becomes the input of part B, and it goes on.
why do we need vector graphics for creating logo
Answer:
hope it will help uplease mark brillient
Answer:
So we can maintain high quality designs at any graphic scale.
Explanation:
Unlike other graphic formats which simply define colors for fixed pixels, vector graphics define points and shapes (vectors) which are then used to draw the graphic at the desired and appropriate resolution.
Our graphic can look good at any resolution, no matter how large it gets. If we take a png or jpg file and make it extremely large, you'll notice the image begins to get blurry, because the pixels are being stretched and colors are being predicted or matched for the larger scale.
If you were driving the blue Prius in the situation pictured above, explain why the red Mustang should be given right-of-way at this intersection.
Answer:
The red Mustang should be given the right-of-way at this intersection because:
The red Mustang arrived first before the blue Prius and is closer to the stop sign before the arrival of the blue Prius. This implies that the red Mustang must have waited for its turn, unlike the blue Prius that just arrived at the intersection.
Explanation:
Traffic laws, regulations, and IPDE defensive driving strategy require that drivers always give way to the vehicle that arrived before them at an intersection. Assuming that multiple vehicles reach the intersection simultaneously, then the vehicle must be given the right-of-way. Alternatively, the traffic lights at the intersection should be obeyed and be allowed to regulate the movement of vehicles. IPDE defensive driving strategy requires drivers to be watchful of their driving spaces to determine the appropriate time to move.
why SSTF disk scheduling is not practically feasible?
Answer:
There is a lack of predictability because of the high variance of response time. Additionally, SSTF may cause starvation of some requests. Starvation is possible for some requests as it favors easy to reach requests and ignores the far-away processes.
SSTF disk scheduling is not practically feasible because it makes an external call and is forced to wait for I/O to complete, thereby giving up its first-place position.
What is SSTF disk scheduling?Shortest Seek Time First (SSTF) is a disc scheduling algorithm that is abbreviated as SSTF. Before moving the head away to service other requests, it selects the request that is closest to the current head location.
Because of the high variance in response time, there is a lack of predictability. Furthermore, SSTF may cause some requests to be denied. Some requests may experience starvation because the system prioritizes nearby requests and overlooks distant operations.
Therefore, because it makes an external call and is obliged to wait for I/O to complete, SSTF disc scheduling is not viable because it loses its first-place status.
To learn more about SSTF disk scheduling, refer to the link:
https://brainly.com/question/23552555
#SPJ2
A life insurance salesperson who takes advantage of the foot-in-the-door phenomenon would be most likely to:________
a. emphasize that his company is one of the largest in the insurance industry.
b. promise a free gift to those who agree to purchase an insurance policy.
c. address customers by their first names.
d. ask customers to respond to a brief survey of their attitudes regarding life insurance.
Answer:
d. ask customers to respond to a brief survey of their attitudes regarding life insurance.
Explanation:
A life insurance policy can be defined as a contract between a policyholder and an insurer, in which the insurer agrees to pay an amount of money to a specific beneficiary either upon the death of the insured person (decedent) or after a set period of time.
A salesperson (sales representative) refers to an individual or employee who is saddled with the responsibility of taking orders from customers, as well as selling finished goods and services to consumers or end users.
A foot-in-the-door phenomenon can be defined as a compliance (persuasive) technique or tactics that assumes a person agreeing to perform a small request increases the likelihood of he or she agreeing to a subsequent larger request. Thus, it posits that when a person agrees to a small, it makes it difficult for him or her to decline a second, larger (bigger) request.
In this context, a life insurance salesperson who takes advantage of the foot-in-the-door phenomenon would most likely ask his or her customers to respond to a brief survey of their attitudes regarding life insurance.
mk chưa hiểu nên các bạn giúp mk vs
Answer:
my tab and state it all over my name to
Design a dynamic programming algorithm for the following problem.
Find the maximum total sale price that can be obtained by cutting a rod of n units long into integer-length pieces if the sale price of a piece i units long is pi for i = 1, 2, . . . , n. What are the time and space efficiencies of your algorithm?
Answer:
please mark me brainlist
Explanation:
In the home tab under the paragraph group of options what are you unable to do?
Chất xơ có nhiều trong thực phẩm nào?
Answer: rau củ quả đều có lượng chất xơ nhiều hơn so với các loại thực phẩn khác
Explanation:
What is system software?
No Spam
Answer quickly
[tex]\large{\underline{\underline{\pmb{\tt{Answer:}}}}}[/tex]
System software controls a computer's internal functioning, chiefly through an operating system, and also controls such peripherals as monitors, printers, and storage devices.Answer:
[tex]\large\mathsf{\red{\underline{\underline{\pmb{System~ Software}}}}}[/tex]
[tex]\textsf{It is a set of programs}[/tex] [tex]\textsf{that control and manage the }[/tex] [tex]\textsf{operations of computer hardware.}[/tex] [tex]\textsf{It also helps application programs}[/tex][tex]\textsf{to execute correctly.}[/tex] [tex]\textsf{System Software are designed to}[/tex] [tex]\textsf{control the operation and extend}[/tex][tex]\textsf{the processing functionalities of}[/tex][tex]\textsf{ a computer system.}[/tex]if you want to present slides to fellow students or co workers, which productivity software should you use
Answer:
Power point is a good software to use for slides