for (int j- 4; j > 0; j--)
for (int k 1; k < j; k+)
System.out.print (j +);
System.out . println() ;
What is output when the program runs?
a.
4444
b
4321
321
21
4444
333
22
1234
123
12
4321
432
43

Answers

Answer 1

Answer:

C is your awnser

Explanation:


Related Questions

Consider this query:
SELECT Email
FROM Teachers
WHERE License Expire Month = "February";

Can you explain what each part of it does? Why might someone perform this query, and what use could they make of the results?

Answers

Answer:

There is a table in the database named Teacher having columns Email, Expiry Month etc. this query is selecting the email address from the table Teachers on the basis of expiry month that is February.\  

Explanation:

Based on the given SQL query, the function which it will do is to:

Create a dB named "Teacher"Create columns

What is an SQL query?

This refers to the structured query language that is used in databases to create and handle databases.

Hence, we can see that the action of the query is that it would select an email address based on the expiry month, which is February by SORTing the data.

Read more about SQL here:

https://brainly.com/question/25694408

#SPJ2

heeeeeeeeeelp its timed :(
drag the correct word to the correct place
plllz help

Answers

Answer:

Upward Blue arrow= Lift

Downward Blue arrow= Drag

Upward yellow arrow= Thrust

Downward yellow arrow= Weight

i m not so sure

Please help me!!!

Use searching laterally to find more out about obesitymyths.com and if it is credible. Share your findings here.

Answers

Explanation:

I am verry bad at computer science. ...........

Using the search tool, it is discovered that the website is not a credible website.

Why is the website not credible?

This is due to the fact that the domain of the website has been put up for sale. The website does not contain information about what its name suggests.

There is a transfer of ownership waiting to happen. Hence we can conclude that it is not a credible website.

Read more on websites here: https://brainly.com/question/1382377

#SPJ2

Match the database function to its purpose
finds the largest number in a database that
matches conditions
DCOUNT
DMIN
adds the numbers in a field of records in a
database that matches conditions
finds the smallest number in a database that
matches conditions
DAVERAGE
counts the cells that contain numbers in a
database that matches conditions
DMAX
DSUM
averages values in a field of records in a
database that matches conditions
Icy ll

Answers

Answer:

DCOUNT

counts the cells that contain numbers in a database that matches conditions

DMAX

finds the largest number in a database that matches conditions

DMIN

finds the smallest number in a database that matches conditions

DSUM

adds the numbers in a field of records in a database that matches conditions

DAVERAGE

averages values in a field of records in a database that matches conditions

Explanation: I got it right

here is something cool

Answers

cool beans s s s s s s s s

Answer:

Ok

Explanation:

What is the next line? >>> myTuple = [10, 20, 50, 20, 20, 60] >>> myTuple.index(50) 1 2 4 3

Answers

Answer:

2

Explanation:

got right on edg.

Answer:

2

Explanation:

i got it wrong for the right answer

Is it still worth it to get Airpods right now?

Answers

Answer:

Well that depends if you're getting them for Christmas.

Explanation:

Also I have Airpods, and in my point of view There kinda hard to keep track of, but maybe that's just me :P

I hope I helped!

What does a pencil icon in the row selector area indicate?

The record is missing some text or data values in its fields.
The row is blank and is available for inserting a new record.
The row is being edited, and the changes are not yet saved.
The record has incorrect data values or conflicting data values.

(This is using Excel)

Answers

Answer:

c

Explanation:

The pencil icon is in the row selector area it indicates that the row is being edited, and the changes are not yet saved.

What are fields in computer?

We all have to use the computer to fill in forms and these forms have spaces for us to provide information. These spaces that we are required to fill are called fields.

When the pencil icon is in the row selector area it indicates that the row is being edited, and the changes are not yet saved.

Learn more about computer:https://brainly.com/question/21080395

#SPJ2

How can data consolidation be helpful? Check all that apply
•It can set up automatic updating of data within one worksheet.
•it can summarize data from worksheets in different workbooks.
•it helps to summarize data from worksheets that are not identical.
•it combines data from multiple sheets to create one concise table.
• it summarizes data based on how many rows and columns have values.

Answers

Answer:2,3, and 4

Explanation:

Answer:

2,3,4

Explanation:

How does just listening improve your understanding of a poem?​

Answers

Answer

The more you listen to the poem the more words you may hear. Then you ay be able to brea it down, to understand it yourself.

Explanation:

At the end of a presentation it is important to:

Answers

Answer: We just no man, Don't ask us, just watch and learn.

Explanation: These are just facts, and you know it.

Which of the following will result in a True value?
1. NOT (TRUE AND FALSE) AND TRUE
II. NOT (TRUE AND TRUE) AND TRUE
111. NOT (TRUE AND TRUE) OR TRUE

Answers

Answer:

1. 'NOT(TRUE AND FALSE) AND TRUE'

3. 'NOT (TRUE AND TRUE) OR TRUE'

Explanation:

We can go through each option to find out which statements will result in a 'TRUE' value.

1. 'NOT (TRUE AND FALSE) AND TRUE':

'TRUE AND FALSE' inside the parentheses will result in 'FALSE' since the Boolean operator 'AND' requires both terms to be 'TRUE' for the resulting value to become 'TRUE', otherwise it returns 'FALSE'.

'NOT (TRUE AND FALSE) AND TRUE' now becomes 'NOT FALSE AND TRUE'. The Boolean operator 'NOT' will return the opposite of the term given, so 'NOT FALSE' becomes 'TRUE'. This leaves us with 'TRUE AND TRUE' which returns 'TRUE'.

2. 'NOT (TRUE AND TRUE) AND TRUE':

'TRUE AND TRUE' inside the parentheses will result in 'TRUE', leaving us with 'NOT TRUE AND TRUE'. 'NOT TRUE' will give us 'FALSE', resulting in 'FALSE AND TRUE'. The resulting value of 'FALSE AND TRUE' is 'FALSE'.

3. 'NOT (TRUE AND TRUE) OR TRUE':

Again, 'TRUE AND TRUE' inside the parentheses will result in 'TRUE', leaving us with NOT TRUE OR TRUE'. The Boolean operator 'OR' requires only one term to be 'TRUE' for the resulting value to become 'TRUE'. This means that this statement will return 'TRUE'.

Hope this helps :)

PYTON CODERS I NEED HELP I WILL GIVE BRAINLIEST!!! Why is this python code giving me problems?
This is having the user input a decimal number and the code has to round it up to the 2nd decimal place. This code is giving me problems, please fix it.

num3 = int(input("Please input a decimal number:")

num3 = int(round(num3, 2))

print ("your decimal rounded to the 2nd decimal place is:", x)

Answers

Answer:

num3 = float(input('Insert a decimal: '))

num3 = round(num, 2)

print(f"You rounded decimal is: {num3}")

Explanation on why this works:

This block of code resembles a decimal from user input and round it to its nearest 10th. Let me explain the flaws in the original:

>>> num3 = int(input("Please input a decimal number:")

On this line of code you put it as the user input will be transferred to an int when in reality it should be a decimal float so we can round it later in the program. so it should be:

>>> num3 = float(input("Insert a decimal: "))

Second Line of code:

>>> num3 = int(round(num3, 2))

In this case, the int() function is not needed. so just remove and its good.

Lastly you used:

>>> print("your rounded decimal is: ", x)

Which is perfectly fine. Two more ways to output the same thing is by using:

>>> print(f"You rounded decimal is: {num3}")

Or just use the format() string method:

>> print("You rounded decimal is: {0}", num3)

the ratio of length, breadth and height of a room is 4:3:1. If 12m^3 air is contained in a room, find the length , breadth and height of the room​

Answers

Explanation:

The ratio of length, breadth and height of a room is 4:3:1

Let length = 4x

Breadth = 3x

Height = x

Volume of air contained in the room, V = 12 m³

We need to find the length, breadth and height of the room. The room is in the shape of a cubiod. The volume of a cuboid is given by :

V = lbh

[tex]4x\times 3x\times x=12\\\\12x^3=12\\\\x=1[/tex]

Height of the room = 1 m

Breadth of the room = 3x = 3 m

Length of the room = 4x = 4 m

can some one please help

Answers

Answer:

i will try other questions too

Franklin has a photographic assignment, and he needs to print some photographs using Adobe Photoshop. Which feature will help him see the
printed version of the document on the screen before he actually prints it?
The
feature in Photoshop will help Franklin see the printed version of the document on the screen before he actually
prints it.

Answers

Answer:

print preview

Explanation: i got it correct in plato

Answer:

print preview

Explanation:

on plato/edmentum

Suraj is installing Microsoft Windows on his home computer. On which device will the installer copy the system files? A.  read-only memory B.  hard disk C.  random access memory D.  control unit E.  arithmetic logic unit​

Answers

The device that will the installer copy the system files are:

Random access memory.Control unit.

What are the Windows system files?

A Windows system file is known to be a file that is said to have a hidden system attribute  that is said to have been put on.

Conclusively, Note that  system files are files that are said to depends on the Windows so that they can work and as such the use of Random access memory and Control unit are the two device that can help Suraj in his work.

Learn more about  system files from

https://brainly.com/question/1226264

Which phrase best describes a scenario in Excel 2016?


A. a type of what-if analysis that allows a user to define a single variable for a single function or formula

B. a type of what-if analysis that allows a user to define multiple variables for multiple functions or formulas

C. a type of chart analysis that allows a user to predict outcomes using data

D. a type of chart analysis that allows a user to set predetermined outcomes using data

Answers

A phrase which best describes a scenario in Microsoft Excel 2016 is: B. a type of what-if analysis that allows a user to define multiple variables for multiple functions or formulas.

What is Microsoft Excel?

Microsoft Excel simply refers to a software application that is designed and developed by Microsoft Inc., for analyzing and displaying spreadsheet documents, especially by using rows and columns in a tabulated format.

The types of function in Microsoft Excel.

In Microsoft Excel, there are different types of functions which are referred to as "predefined formulas" and these include the following:

Sum functionMaximum functionAverage functionCount functionIF functionMinimum function

In conclusion, Microsoft Excel 2016 is designed and developed by Microsoft Inc., as a type of what-if analysis which avail its end users to use multiple variables in defining multiple functions or formulas.

Read more on Excel function here: https://brainly.com/question/14371857

#SPJ1

oof x oof = ? idk what that is

Answers

Answer:

= 1 off!

Explanation:

1x1

Answer:

Double OOF!!!!!!!!

Explanation:

I dont have one....

Which is an example of correct HTML?

This is a heading
This is a heading
This is a title
This is a title
Question 3(Multiple Choice Worth 5 points)

Answers

Answer:

An HTML tag is a special word or letter surrounded by angle brackets, &lt​; and &gt;. You use tags to create HTML elements , such as ...

Explanation:

Which statement allows more than one condition in an If statement? O Else O While O Elif If-then ​

Answers

Answer:

C. Elif

Explanation:

:)

Answer:

Eilf 100000%

Explanation:

What's the maximum number of ad extensions that can show for a particular query or device at any given time?

Answers

Answer:

Four (4) extensions.

Explanation:

Go-ogle Ads can be defined as a strategic advertising platform designed and developed by Go-ogle for use over the internet. It can be used to display product listings, services and campaigns to any web user over the internet.

Basically, for those who are relatively new to the Go-ogle Ads, the company provides a feature known as the dynamic search ads which helps various users to easily run a successful ad campaign. Through the use of machine learning, a dynamic search ad allows phrases and titles associated with a website to be automatically indexed and presented as a landing page to any user who is searching with the keywords.

The maximum number of ad extensions that can show for a particular query or device at any given time is four (4) extensions. The Go-ogle Ad extension platform is designed to display all the ads simultaneously or co-trigger and as such, the maximum number of ad extensions that are displayed per query or device are four (4).

Which computer program offers a comprehensive collection of tools for creating digital art by using a variety of
shapes, lines, and letters which can be easily measured and formatted?
O LibreOffice Draw
O Microsoft Excel
O LibreOffice Calc
O Microsoft PowerPoint

Answers

Answer:

the anwer is probaly B

Explanation:

Answer:

A- LibreOffice Draw

Explanation:

PLS HURRRYYYYYY!1!1!1!1!1
You have used different ways to store data. Match each definition with its type.

movieAwards = ('Oscar', 'Golden Globe', 'Director's Guild')

movie = 'Star Wars'

movieStars = ['Carrie Fisher', 'Harrison Ford']

movieRatings = {5:'language', 3:'violence'}

movieID = 132

movieCost = 4.95


Vocab:

Float

Tuple

int

string

list

dictionary

Answers

movieID = 132 Int

movieCost = 4.95 Float

movie ='Star Wars' string

movieAwards = ('Oscar', 'Golden Globe', 'Director's Guild') tuple

movieStars = ['Carrie Fisher', 'Harrison Ford'] list

movieRatings = {5:'language', 3:'violence'} dictionary

If you want these explained , can do in replies :)

Answer: Int, Float, String, tuple, list, dictionary

Explanation: got it right on edgen

Which of the following is the fastest computer processing speed?
Group of answer choices

bytes

megahertz

megabytes

gigahertz

Answers

Answer: Gigahertz

Explanation: One megahertz is equal to one million cycles per second, while one gigahertz equals one billion cycles per second.

This means a 1.8 GHz processor has twice the clock speed of a 900 MHz processor.

Gross profit i how much it costs to bring a business products to the costumers true or false

Answers

Answer:

True

Explanation:

The overall appearance of goods and services can be trademarked.
True
False

Answers

Answer:

true

Explanation:

Will you mark me the brainest plz I will follow you

The answer would be True

Un electrodoméstico presenta un rendimiento del 70% y absorbe de la red eléctrica una energía de 2,3 kWh durante 45 minutos. Calcula La potencia que tiene el electrodoméstico

Answers

Answer:

1.6KWh

Explanation:

La fórmula de la eficiencia del consumo energético es,

eficiencia = (salida / entrada) x 100

La eficiencia del aparato es = 70%

potencia en = 2,3 KWh

potencia de salida = vatios x (45 minutos / 60) veces en horas.

70 = (vatios(45/60) / 2,3 x 10 ^ 3) 100

0.7 = vatios(45/60) / 2,3 x 10 ^ 3     //dividir ambos lados por 100

1610 = vatios(0.75)                           //multiplica ambos lados por 2300

potencia de salida = vatios (0,75) = 1610/1000 = 1,6KWh

A twitch streamer has Disney music playing in the background through Spotify while they play Fortnite. The video is taken down the next day. Why is the video taken down.


Please help, Thank you! :)

Answers

This is due to copyright
Explanation: certain music is copyrighted . Which means you can’t use it without permission from them

What are two things that happen when a home computer scanner uses electromagnetic waves?
A.Red light shines on patterns of black and white, recording the pattern of reflected light
B. A charge-coupled device captures visible light that is reflected off an object.
C. A silicon chip releases electrons by the photoelectric effect, producing an image.
D. Objects are exposed to X-rays, which either pass through or are absorbed by the objects.

Answers

Answer:b

Explanation:

A charge-coupled device captures visible light that is reflected off an object are two things that happen when a home computer scanner uses electromagnetic waves. Hence, option B is correct.

What are electromagnetic waves?

Electromagnetic waves can be used to carry communications signals by changing the wave's amplitude frequency, or phase. The signal is transformed into a series of binary ones and zeros that can be used to transfer audio and video across televisions and mobile devices.

Electromagnetic energy is a form of radiation that travels at the speed of light in waves. Other names for it include light, electromagnetic radiation, electromagnetic waves, radiant energy, or the movement of radiation. Heat can be transferred through electromagnetic field radiation.

Electromagnetic waves, or EM waves, are produced by the oscillations of an electric field and a magnetic field. In other words, electromagnetic waves are created when magnetic and electric fields oscillate.

Thus, option B is correct.

For more information about electromagnetic waves, click here:

https://brainly.com/question/3101711

#SPJ5

Other Questions
Tell whether the slope of the line is positive, negative, zero, or undefined fat in the body helps to protect vital organs. true or false? Yo HELP ASAP Click above the numbers tocreate a line plot for the givenpercent chances of rain indifferent cities.65, 65, 70, 70, 80, 80, 80, 80,85, 95, 95, 95, 100 Can u help me ??plss please help me I'll give brainlyest if your answer is correct How are George and Lennie different from other ranch hands? (from Of Mice and Men)Question options:a) They are not alone.b) They are older than most.c) They have never gotten into trouble.d) They work more than most others. (PLATO)Rationalizing the Denominator in Rational Expressions: Mastery Test[tex]\sqrt[6]{27a^{6}b^{3}c^{9}}[/tex] The library can store up to 100 books. Each book has information of title, author, year, and a borrowed status (true or false). The library allows adding new books to it, checking out a book, and returning a book. We assume different books have different titles in the library. An angle measures 135. What is the measure of its supplement Write the center and radius of a circle with the equation: x^2+8x+y^2-24y+144=0 A group of art songs connected by a theme or common story is aO A. programB. song cycleC. symphonic poemD. tone poem A typical ID number in a college class consists of a four-digit number, such as 0119. When an ID number is randomly selected, what is the probability that no two of its digits are the same Y'all, please read this, its just a short sermon that I think everyone needs to hear nowadays.The science fiction genera is filled with stories of alien races that are controlled by a single over mind that uses its psychic power to control its population. Star Trek has the Borg. The Borg assimilate other races, and control them using a hive mind. The Christian bible describes Gods spirit as living within the believer, that the Christians body becomes the temple of the Holy Spirit. Christians are influenced in a special way by God. But unlike the Borg, Christ does not control Christians, He does not take over their mind or will, although he fills them. The job of the Holy Spirit is to instruct Christian, to teach, and correct them, protect them from harm, but he never controls them.We only have a limited time on this earth, and before we die we must receive Gods Spirit. Our body will one day die, but if God dwells in us he will give life to us, we will be drawn away from hell beneath.Rom 8:11-14 But if the Spirit of him that raised up Jesus from the dead dwell in you, he that raised up Christ from the dead shall also quicken your mortal bodies by his Spirit that dwelleth in you. Therefore, brethren, we are debtors, not to the flesh, to live after the flesh. For if ye live after the flesh, ye shall die: but if ye through the Spirit do mortify the deeds of the body, ye shall live. For as many as are led by the Spirit of God, they are the sons of God.God is not like the Borg, he will not force you to do anything, but he does expect us to be open to his leading in life. If we have sin in our life, he wants to gently change us. He wont push us and shove us around, but using love he will draw us into a life that is profitable. What honors God, not a broken life, full of suffering, but a life that is prospering. Every person, Christian or non Christian will experience some times of suffering, but Gods ultimate plan for us is to make our lives shine. 473 heartbeats in 5 1/2 minutes Where do you think the flow of water will be faster in a stream/river, along the inside of a bend or the outside? Why do schools put us through this torture? S. sixC.cruleH.hoursO.ofO.ourL.lives Write two equivalent fractions for the perimeter of this rectangle. (not sure if this helps but the perimeter is 18 I'm pretty sure) If you count one by one till 100 in 1 minute, how long does it take to count till 1 billion? Convert your answer to seconds, hours, years. . Find the values of the variables in DEFG. The compound CO2 is made of?