The Scanner.nextInt method throws an unchecked ____ if a user enters an input that is not an integer.

A) InputMismatchException

B) NumberFormatException

C) IllegalArgumentException

D) IOException

Answers

Answer 1

Answer:

A) Input Mismatch Exception

Explanation:

The Scanner.nextInt method throws an unchecked Input Mismatch Exception if a user enters an input that is not an integer.

Answer 2

The Scanner.nextInt method throws an unchecked ____ if a user enters an input that is not an integer.

A) InputMismatchException

B) NumberFormatException

C) IllegalArgumentException

D) IOException


Related Questions

Give Short and to the point answers(Answer the question keeping in view itsmarks)

Why we called COBOL as a professional language and not ataught language

Answers

Answer:

COBOL(Common Business Oriented Language).As the name suggests it is most commonly used to develop business tools and hence it is called a professional language and it is not used in schools or colleges as a teaching tool like FORTAN hence it is not called a taught Language.

COBOL is also used to develop business applications.It is mainly designed for businesses.

_______exception inherits from exception class and _________exception is anywhere in the program.
Java , C#
C++ , C#
C# , Java
Java ,C++

Answers

Answer: Java exception inherits from exception class and  C++ exception is everywhere in the program.

Explanation: Java exception are the unwanted events that occur during the run time of a particular program and breaks the flow of it. Java exception are the subclass of the exception class that is it is derived from them.So, java exception inherits from exception class.

C++ exception are those circumstances which appear during a program which are unnecessary faults during the execution of a program. the exception allows to transfer the control  from one part to another part in a particular program. So, the C++ exception is anywhere in the  program.

please exaplain to me, how people, Software andHardware relates specifically to
1. LANs
2. WANs

Answers

Answer:

No Answer

Explanation:

LAN : Local Area Network

Used to connect all the computers with in a building or some limited distance

so that people can share data  and applications between different computers

useful for Intranet applications

WAN: Wide Area Network

used to cover large geographical area. it is network of networks. useful for computer networking.In short a WAN connects several LAN

Where (what memory location) is the data read from for the following code:

ORG $3000
LDAA #$C2

Answers

Answer: ORG $3000 tell us that we want to load the program from the address $3000.

LDAA #$C2 tell us to load the value contained in the address present in the register C2 into the accumulator.

Explanation:

ORG instruction in  microprocessor does not have a fixed address. It tell us where to begin the execution of the program by loading into a starting address space. It does not uses fixed addressing

LDAA instruction uses indirect addressing by placing the value from the address present in the register. Here  the address is contained in register C2.

What happens when a returntype, even void, is specified as a constructor in Java?

Answers

Answer:

If a returntype is added to a constructor method in Java, it ceases to be a constructor and behaves like an ordinary class method with the same name as class name.

Explanation:

If a returntype is added to a constructor method in Java, it ceases to be a constructor and behaves like an ordinary class method with the same name as class name.

Constructors are special methods which are used for initializing the object. Constructors do not have a return type. If we add a return type to the constructor method , it does not play any role during object initialization and can be involved like any other object method.

Elevating privileges to those of an administrator is also called ___________________ escalation.

Answers

Answer: Privilege

Explanation:

Privilege escalation is type of intrusion attack whereby the attacker gain access into the system with the privileges of that of an administrator. This may be due to programming errors or any type of bug in the system. This attack is extremely dangerous because the attack can change the environment of the system as it gets the administrator rights and access.

If we compare the push function of the stack with the insertFirst function for general lists, we see that the algorithms to implement these operations are similar.

True

False

Answers

Answer:

True

Explanation:

Algorithm for push function

The method of placing data on a stack is called a push operation.

It involves these steps −

Check that the stack is complete.  If the stack is complete, it will cause an error .   Increases top to point next empty room if the stack is not complete.   Adds the data component to the place of the stack where top is pointing. Success returns.

Algorithm for Insertfirst function

Create a new Link with provided data. Point New Link to old First Link. Point First Link to this New Link.

As we can see that in both algorithms ,we are inserting data to a new nodes and incrementing/pointing to a new node for inserting data.Both algorithms uses the same approach.

______________ Gives the Mean time for which systemremained available for use.

a) MTTF

b) MTBF

c) MTTR

d) MTTD

Answers

Answer: d)MTTD

Explanation: MTTD(Mean Time To Detect) is the time for the discovery of the  problem in a system.  It is basically the average time until the problem is noticed by someone. For e.g.- if there is a problem in a computer system at 9:00 am and the problem is noticed at 9:10 am by then user then the MTTD is  10 minutes . So, MTTD gives the mean time for which the system remains available for use.

A ____ is a structure that allows repeated execution of a block of statements.

a.
loop control

b.
loop

c.
body

d.
Boolean expression

Answers

Answer:

loop

Explanation:

Loop is the one which is used to execute the specific statement again and again until the condition is true.

In the programming, there are 3 basic loop used.

1. for loop

Syntax:

for(initialization, condition, increment/decrement)

{

  statement;

}

the above statement execute until the condition in the for loop true when it goes to false, the loop will terminate.

2. while loop

Syntax:

initialization;

while(condition)

{

  statement;

increment/decrement;

}

it is work same as for loop and the increment/decrement can be write after or before the statement.

3. do while

syntax:

initialization;

do

{

   statement;

   increment/decrement;

}while(condition);

here, the statement execute first then, it check the condition is true or not.

so, if the condition is false it execute the statement one time. this is different with other loops.

Final answer:

A loop is a structure that allows repeated execution of a block of statements in programming. It is controlled by a condition that, when false, will terminate the loop to prevent an infinite loop.

Explanation:

The correct answer to the question is b. loop. A loop is frequently used in programming to allow the repeated execution of a block of statements until a specified condition is met. Loops are a form of conditional control flow that can drastically alter the execution path of a program.

For instance, a while-loop will continue to execute so long as its condition remains True. If the condition evaluates to False, the loop terminates and control is passed to the statements that follow. During each iteration within the loop, it is essential to modify some variables, such as the iteration variable, to ensure the loop does not continue indefinitely, potentially leading to an infinite loop.

ebay employs the _____ auction mechanism.

A. forward

B. reverse

C. dutch

D. proprietary ebay

Answers

Answer:

A. Foward

Explanation:

ebay employs the forward auction mechanism.

True of False - use T or F An abstract class can be extended by another abstract class.

Answers

Answer:

T

Explanation:

an abstract class can be extended by another.the abstract class which is extending should be implemented by another class

---------------- is an operating systems ability to be easily enhanced over time

a) performance

b) portability

c) reliability

d) extensibility

Answers

Answer: Extensibility

Explanation:

Extensibility is one of the features which can be easily enhanced over time. As the term extensibility refers to the addition of new features and adding more features to the present modules. This does not change the internal organisation of the earlier modules in fact they add new and more improved features to the present.

Why has the PCM sampling time beenset at 125 microseconds?

Answers

Answer Explanation:c

PCM( pulse code modulation) is a process for transmitting the analog data from one place to other place the signal which are used in pulse code modulation are binary that is only 0 and 1 using PCM all forms of analog data can be form including voice music etc.

to obtain pcm an analog signal is sampled at regular time interval the sampling rate is very high as compared to the frequency used by analog signal. the instant amplitude of analog signal at each sampling is being closer to the nearest several specific earlier levels.this process is called tantalization. in this the number of level is power of 2 so the sampling time is set as 125 microseconds.

What do you mean by preemptive and nonpreemptive multitasking and multithreading ?

Answers

Answer:

Preemptive multitasking is the operating system that control the processor by not involving in task cooperation and preemptive is the process of controlling the task. On the other hand, preemptive multi threading is the parallel processing system in which the execution of the thread is preemptive.

Non-preemptive multitasking is the process in which the processor are never involves with the task and it is used for many window applications. Whereas, in non preemptive multi threading when a thread are given control then, it continues run until it can control the blocks.

Develop a C++ program that simulates a user creating/entering a new password into a system.
You may presume that the username is irrelevant to complete this program.

Have the program ask the user to enter a proposed password as a string.

Validate that the password meets the following criteria:

Password must be at least ten characters long
Password must contain at least one uppercase letter
Password must contain at least one lowercase letter

Answers

C++ program for Validating password

#include <iostream>

#include<cstring>

using namespace std;

int main()//driver function

{

char password[100];//declaring variables password

int lower=0,upper=0,flag=1;

cout<<"Enter the password\n";//taking input

cin>>password;

int length = strlen(password);//finding length

for(int i=0;i<length;i++)

{

if(password[i]>=65&&password[i]<=90)/*checking string must contain at least one uppercase letter */

{

upper=1;

}

if(password[i]>=97&&password[i]<=122)/*Checking string must contain at least one uppercase letter*/

{

lower=1;

}

}

if(length<10)//checking that string length should be less than 10

{

flag=0;

cout<<"Password must be at least ten characters long\n";

}

if(upper==0)

{

flag=0;

cout<<"Password have to be at least one uppercase letter\n";

}

if(lower==0)

{

flag=0;

cout<<"Password have to be at least one lowercase letter\n";    

}

if(flag==1)//if all condition turns out to true,printing Valid Password  

{

cout<<"Valid Password";

}

}

Output

Enter the password  

 Ayushyadav

  Valid Password

Enter the password  

  Ayush

Password must be at least ten characters long

 Enter the password

anmolyadav

Password have to be at least one uppercase letter

ANMOLVIJWANI

Password have to be at least one lowercase letter

The _________ statement causes a function to end immediately.

Answers

Answer:

return

Explanation:

return is the statement which is used to return the value from the function definition to the function calling.

it is also used as exit from the function.

for example:

int count()

{

     return 0;

     printf("hello");

}

In the above the function return 0 without print the message "hello". we can used return any where inside the function for immediately ending the execution of function.

Final answer:

The statement that causes a function to end immediately is the 'return' statement, which halts function execution and returns the flow of execution to where the function was called.

Explanation:

The statement that causes a function to end immediately in most programming languages is a return statement. When the return statement is executed, it ends the function execution and the flow of execution goes back to where the function was called, which can be likened to coming back from a 'detour'. It's important to realize that defining a function also creates a variable with the same name, which can be used to call the function later in the code.

A functional approach to programming includes various other concepts. For instance, to end the function, you have to enter an empty line in some interactive environments like REPLs (Read-Eval-Print Loop), although this is not necessary in a script. The last statement of a function plays a role similar to a 'Note of Finality' in a speech, indicating the end of the logic encapsulated by the function.

Write a program that lets the user guess the coin's head or tail. The program randomly generates an integer 0 or 1, which represents the head or the tail. The program prompts the user to enter a guess and reports whether the guess is correct or incorrect. include step by step commentary.

Answers

Answer:

#include <iostream>

#include <stdlib.h>

#include <time.h>

using namespace std;

int main()

{

   srand (time(NULL));  //initialize random seed

   int guess;

    int number = rand() % 2;  //generate random number 0 or 1

    cout<<"Enter the guess (0 or 1): ";

    cin>>guess;     //store in guess

    if(number == guess){     //check if number equal to guess

       cout<<"Guess is correct."<<endl;   //if true print correct message.

    }else{

        cout<<"Guess is incorrect."<<endl;  //otherwise print correct message.

    }

    return 0;

}

Explanation:

first include the three library iostream for input/output, stdlib,h for using the rand() function and time for using the time() function.

create the main function and initialize the random number generation seed, then generate the random number using the function rand() from 0 to 1.

after that, take input from user and then with the help of conditional statement if else check if random number is equal to guess number or not and print the appropriate message.

Define a class Complex for complex numbers. A complex number is a number of the form: ???? + ???? ∗???? where a and b are real and imaginary part of a complex number and i is a number that represents the quantity √−1 . Addition of two complex numbers: (???? +???????? )+(???? +????????) = (???? +????) + (???? +????)???? Subtraction of two complex numbers: (???? +????????)−(???? +????????) = (???? −????)+(???? −????)???? Create a class Complex that contains:  Two private variables real and imaginary of type double.  Define accessor and mutator functions of real and imaginary variables.  Overload the following operators "+" and "–" so that they apply correctly to the type Complex. Test your program with inputs (5+4i) and (2+2i).b

Answers

Explanation:

--!#&?&#&#(-$(-$)-"-)"(-'-)';'!'+%

A magnetic disk has an average seek time of 8 ms. The transferrate is 50 MB/sec. The

disk rotates at 10,000 rpm and the controller overhead is 0.3msec. Find the average time to read or write 1024 bytes.

Answers

Answer:

11.32milisec.

Explanation:

Average seek time = 8ms

transfer rate = 50MB/sec

disk rotate = 10000 rpm

controller overhead = 0.3 msec

Average time = ?

Average time is the addition of the seek time, transfer time, rotation time and ontroller overhead

[tex]Average\,time = Seek\,time+Rotation\,time+Transfer\,time+Controller\,overhead[/tex]

now, find the rotation time,

Rotation time is the time at which half rotation is made.

[tex]Rotation\,time=\frac{0.5}{rotation\,per\,second}[/tex]

convert rotation per minute to rotation per second.

[tex]rps=\frac{10000}{60}[/tex]

substitute in the above formula.

[tex]Rotation\,time=\frac{0.5}{\frac{10000}{60} }=0.003sec[/tex]

or 3milisec

now, find the transfer time by formula:

[tex]Transfer\,time=\frac{Number\,of \,read\,or\,write\,bytes}{transfer\,rate}[/tex]

so, read or write bytes is 1024

[tex][tex]Transfer\,time=\frac{1024}{50*10^{6} }=0.02milisec[/tex][/tex]

The average time is:

[tex][tex]Average\,time= 8+3+0.02+0.3=11.32milisec[/tex][/tex]

Open addressing can be implemented in several ways.

True

False

Answers

Answer: True

Explanation:

yes, open addressing can be implemented in several ways as it is a method of collision resolution in hash table. Open addressing can be implemented in different ways as linear probing, quadratic probing and double hashing. As open addressing requires more computation. In open addressing as everything is stored in the same table.

Is the Internet a LAN or a WAN?

give the answer at least five line for one question

Answers

Answer:

Internet is a WAN (wide are network)

Explanation:

Great question, it is always good to ask away and get rid of any doubts that you may be having.

The Internet is a worldwide interconnected network with computers acting as nodes around the world. Communicating and sharing information between one another. LAN and WAN are connection types for the Internet.

LAN is a Local Area Network, which interconnects local computer nodes physically using Ethernet cables. Which are then connected to the internet itself.

WAN are wide area networks, which are usually interconnected through public communication services such as telephone cable.

Therefore the Internet is a WAN (wide are network)

I hope this answered your question. If you have any more questions feel free to ask away at Brainly.

What is infix, prefix and postfixexpressions in data structures?

Answers

Explanation:

Infix notation: A+B

Operators are written in-between their operands. Expression  X * ( Y + Z) / P is means: "First add Y and Z together, then multiply the result by X, then divide by P to give the final answer."

Postfix notation : A B +

Operands are written before their operators. Expression given above is equivalent to X Y Z + * P /  

Operators evaluation is always left-to-right, we will not consider brackets for the order.

Prefix notation : + A B

Operands are written after their operators. Expression given above is equivalent to / * X + Y Z P

Operators evaluation is always right-to-left,we will not consider brackets for the order.

Write a code segment that takes an emailaddress stored in the string email and stores theuser name in the string user and the hostaddress in the string host. Remember that the user name and host address are separated by thecharacter @.

Answers

Answer:

#include <bits/stdc++.h>

using namespace std;

int main() {

  string email,username,host;//strings to store email,username,hostname..

  cout<<"Enter the email address "<<endl;

  cin>>email;//taking input of email address..

  bool flag=1;

  for(int i=0;i<email.length();i++)//iterating over the string email..

  {

      if(email[i]=='@')//if @ symbol is encountered make flag 0 skip this iteration.

      {

          flag=0;

          continue;

      }

      if(flag==1)//add to username if flag is 1.

      {

          username+=email[i];

      }

      else//add tom host..

      host+=email[i];

  }

  cout<<"The username is "<<username<<endl<<"The host name is "<<host;//printing the username and hostname..

return 0;

}

Explanation:

I have taken  three strings to store the email address entered by user ,username and host to store username and host name respectively.Then I am iterating over the string email if @ is encountered then skip that iteration before that keep adding characters to username string and after that keep adding characters to host.

Once the logical expression at the start of a while loop is false, the statements after the end statement are

executed.



True or False?

Answers

Answer:

True

Explanation:

the while loop is used to execute the statement again and again unti the condition is true. Once the condition is False, the program control terminate the while loop and execute the next statement after the while loop.

for example:

int i=0;

while(i<5)

{

i++;

}

cout<<i<<endl;

one the code execute the while loop run 5 times and in the 6th times the condition become False then program control moves to print statement.

What are the requirement analysis for COREBANKING?

Answers

Answer:

Core Banking is the system which is defined as the backbone  of products and service that Bank offers. with the upcoming technology it becomes a value differentiator, and a wrong system selection  that may cost tremendous opportunity losses. Core banking solution are transformed in the way bank used to operate in different manner.

 The requirement analysis for CORE-BANKING is:

FunctionalityService-oriented architectureFlexibilityProgram management

Given a is 3, b is 4, and c is 5, what is the value of the expression
--a * (3 + b) / 2 - c++ * b?

Answers

Answer:

--a * (3 + b) / 2 - c++ * b = -13

Explanation:

First we have to evaluate (3+b) = 7

As a=3, so "--a" will be 2.

So we need to evaluate "--a * (3 + b) / 2" and as we know * and / has same precedence we have to follow left association.

So in "--a * (3 + b) / 2", "--a * (3 + b)" = 2*7 is evaluated first that is 14. then [tex]\frac{14}{2}[/tex] = 7.

Now in "c++*b" as c is post-incremented, so it will take 5 rather than 6.

So c++*b = 5 *4 = 20.

Now --a * (3 + b) / 2 - c++ * b = 7-20 = -13

What is internal recruitment ?

Answers

Answer:

The term ‘Internal Recruitment’ refers to the process of identifying and attracting candidates from a certain organization to another position within the same organization.

Instead of opening the position to the public and attracting random candidates some companies may choose to advertise the vacancy internally and only allow members of the staff to apply.

Internal recruitment also refers to a strategy mostly big corporations use to advertise their jobs internally. Due to the size of these companies, these job openings would otherwise go unnoticed by employees in other departments.

What is the effect of this program?
#define MAX 50
int a[MAX], i, j, temp;
for(i = 0; i < MAX / 2; + + i)
{
temp = a[i];
a[i] = a[MAX - i -1];
a[MAX - i - 1] =temp;
}
A. Arranges the elements of array a inascending order
B. Counts the numbers of elements of agreater than its first element
C. Reverses the numbers stored in thearray
D. Puts the largest value in the last arrayposition
E. None of the above

Answers

Answer:

The answer is (C)

Let’s run the algorithm on a small input to see the working process.

Let say we have an array {3, 4, 1, 5, 2, 7, 6}. MAX = 7

Now for i=0,  i < 7/2, here we exchange the value at ith index with value at (MAX-i-1)th index. So the array becomes {6, 4, 1,  5, 2, 7, 3}. //value at 0th index =3 and value at (7-0-1)th index is 6. Then for i=1, i < 7/2, the value at index 1 and (7-1-1)=5 are swapped. So the array becomes {6, 7, 1,  5, 2, 4, 3}. Then for i=2, i < 7/2, the value at index 2 and (7-2-1)=4 are swapped. So the array becomes {6, 7, 2,  5, 1, 4, 3}. Then for i=3, i not < 7/2, so stop here. Now the current array is {6, 7, 2,  5, 1, 4, 3} and the previous array was{3, 4, 1, 5, 2, 7, 6}.

Explanation:

So from the above execution, we got that the program reverses the numbers stored in the array.

Final answer:

The provided program reverses the numbers stored in the array by swapping elements from the start of the array with their corresponding elements at the end until it reaches the middle of the array. The correct answer is C. Reverses the numbers stored in the array.

Explanation:

The effect of the provided program is that it reverses the numbers stored in the array a. It uses a for-loop to swap elements symmetrically from the start and end of the array towards the middle. Specifically, for each iteration of the loop, it takes an element from the beginning part of the array (indexed by i) and swaps it with the corresponding element from the end of the array (indexed by MAX - i - 1).

The correct choice from the given options is:

C. Reverses the numbers stored in the array

This code does not arrange the elements in ascending order, count elements, or specifically move the largest value to the last position, so options A, B, and D are incorrect.

Whichmultiplexing technique involves signals composed of lightbeams?

1 TDM

2 FDM

3 WDM

4 None of theabove

Answers

Answer:

3.WDM

Explanation:

WDM ( wavelength division multiplexing ) involves signals composed of light beams WDM is used in communication where fibers are used it is used for multiplexing of number of carrier signals  which are made of optical fibers by using different wavelength of laser light it has different wavelength so this WDM is used for signals composed of light beams it has property of multiplexing of signal

What is Software Testing ? How many types of testing we mayutilize for a component using CBSE approach ?

Answers

Answer:

Software testing is defined as, it the process of evaluation of the functionality of the system software application to check whether the software met the specified requirement or not and also used to identify defects which ensured that the product is free from all defects in order to produce the quality products.

Types of testing we may utilize for a component using CBSE approach are:

As, CBSE stands for the component based software engineering where  programmers should design and implemented software components in such a way that many different program can reuse them.

Unit testing Integration testing System testing

Other Questions
What is the simplified form of the quantity x over 3 plus y over 4 all over the quantity x over 4 minus y over 3? the quantity 4x plus 3y all over the quantity 3x minus 4y the quantity 4x minus 3y all over the quantity 3x plus 4y the quantity 3x plus 4y all over the quantity 4x minus 3y the quantity 3x minus 4y all over the quantity 4x plus 3y What two (2) laws are central to the federal governments efforts to protect a patients right to privacy. Birds resting on high-voltage power lines are a common sight. The copper wire on which a bird stands is 2.3 cm in diameter and carries a current of 45 A. If the bird's feet are 3.9 cm apart, calculate the potential difference between its feet. (The resistivity of the wire is 1.7 10-8 m) Scenario 1: Aiden comes in from work. Jane had cooked dinner and is waiting for him so they could eat. However, Aiden is tired and just wants to go to bed. Jane is furious and refuses to speak to him. In response, he merely goes to their room and sleeps. Scenario 2: Aiden comes in from work. Jane cooked dinner and is waiting for him so they could eat. However, Aiden is tired and just wants to go to bed. Jane is furious and tells him how she feels whenever he does this to her. Aiden empathizes with Jane?s feelings and offers a compromise; the next time he would be in late for dinner, he promises to call ahead of time. Which scenario is an example of defensive communication? Parenteral administration includes which of the following?A) Oral administrationB) Intramuscular (IM) injectionC) Intravenous (IV) injectionD) Both A and C What did boethius call the music that unifies the body and soul and creates harmony within the body? where d is the length of the diameter. If d is a rational number, what can you conclude about the circumference? Write an equation in standard form for each ellipse with center (0, 0) and co-vertex at (5, 0); focus at (0, 3). Question 1 with 18 blanks El mes pasado mi amiga Clara y yo (1) de vacaciones a Per. El vuelo (flight) (2) un mircoles por la maana y (3) cmodo. Primero, Clara y yo (4) a Lima y (5) a comer a un restaurante de comida peruana. La comida (6) muy buena. Luego (7) al hotel y nos (8) a dormir. El jueves (9) un da nublado. Nos (10) a Cuzco, y el viaje en autobs (11) largo. Yo (12) la primera en despertarse y ver la ciudad de Cuzco. Aquella maana, el paisaje (13) impresionante. Luego, Clara y yo (14) de excursin a Machu Picchu. El cuarto da nos levantamos muy temprano y (15) a la ciudad inca. El amanecer sobre Machu Picchu (16) hermoso. La excursin (17) una experiencia inolvidable (unforgettable). (18) t a Per el ao pasado? find all solutions of each equation on the interval 0 x < 2 pi.tan^2 x sec^2 x +2 sec^2 x - tan^2 x=2 SOMEONE PLEASE HELPPP!! A town in a rural state facing financial difficulties passed a variety of "sin taxes," including one aimed at electronic game arcades frequented by local juveniles. The tax is a one cent per game tax imposed on the manufacturers of the games based on the estimated number of plays over a machine's lifetime. There are no electronic game manufacturers in the state.Which of the following constitutional provisions would support the best argument against enforcement of the tax?A The Equal Protection Clause.B Substantive due process.C The Privileges and Immunities Clause of Article IV.D The Commerce Clause Parent Corporation purchased land from S1 Corporation for $220,000 on December 26, 20X8. This purchase followed a series of transactions between P-controlled subsidiaries. On February 15, 20X8, S3 Corporation purchased the land from a non affiliate for $160,000. It sold the land to S2 Company for $145,000 on October 19, 20X8, and S2 sold the land to S1 for $197,000 on November 27, 20X8. Parent has control of the following companies:Subsidiary Level of Ownership 2008 Net IncomeS3 80% $100,000S2 70% $70,000S1 90% $95,000Parent reported income from its separate operations of $200,000 for 20X8.10-3. Based on the preceding information, at what amount should the land be reported in the consolidated balance sheet as of December 31, 20X8?A. $145,000B. $220,000C. $197,000D. $160,000 What was the significance of the Battle of Stalingrad during World War II? A. It allowed American forces to attack western Germany. B. It was the first large-scale Soviet victory. C. It knocked the Soviet Union out of the war. D. It was a major victory for the German forces. Select the correct answer.What point of view does Jefferson Davis express in this excerpt from his inaugural address?A. He believes secession is necessary because the United States is defying the principles on which the nation was built.B. He believes the United States is corrupting the South with its illegal activities, so the South must secede.C. He believes separation from the United States is necessary because the government is exploiting the Souths natural resources.D. He believes the Southern states are superior to the Northern states in every respect, and therefore it is best to secede. |Which expression is equivalent to the following complex fraction?. Laramie produces two products: Basic and Deluxe. The plants overhead for January was $45,000 and the plant used 600 direct labor (DL) hours. The factory has two departments: Preparation and Processing. The Preparation Department incurred $25,000 of overhead and used 400 DL hours. In the Processing Department, $20,000 of manufacturing overhead was incurred and 160 DL hours were used. During January, 300 DL hours were used by the Basic model and 300 DL hours were used by the Deluxe model to make 100 units of each. What is Laramie departmental overhead rates based on DL hours (DLH)? As you stand by the side of the road, a car approaches you at a constant speed, sounding its horn, and you hear a frequency of 76 Hz. After the car goes by, you hear a frequency of 65 Hz. What is the speed of the car? The speed of sound in the air is 343 m/s. The function p(x) = -2(x-9)2 + 100 used to determine the profit on T-shirts sold for x dollars. What would the profit from sales be if the price of T-shirts were 15 apiece For each of the following transactions, what is the initial effect (increase or decrease) on M1? On M2? a. You sell a few shares of stock and put the proceeds into your savings account. b. You sell a few shares of stock and put the proceeds into your checking account. c. You transfer money from your savings account to your checking account. d. You discover $0.25 under the floor mat in your car and deposit it in your checking account. e. You discover $0.25 under the floor mat in your car and deposit it in your savings account. 2. There are three types of money: commodity money, commodity-backed money, and fiat money. Which type of money is used in each of the following situations? a. Bottles of rum were used to pay for goods in colonial Australia. NEED HELP!!!see picture*****