The output of the given code is 21.
Explanation:
int num = 12;
int x = 20
while (num <= x)
12<=20 13<=20 14 <= 20 15 <= 20 16 <=20 17 <=20 18 <=20 19 <=20 20 <= 20
{
num = num + 1; num = 13 num= 14 num= 15 num=16 num= 17 num= 18 num= 19 num= 20 num= 21
if (num*2 > x+num)
{ 26 > 32 28>34 30> 36 32> 36 34> 37 36> 38 38> 39 40> 40 42> 41
console.log(num);
} }
So this above output happens while you execute the given code, hence the output will be 21.
Because, when the num is 20, the execution goes like the following:
while(num<=x) while (20 <=12) {
20= num+1 (20+1) =21
if(num*2> x+num)
if (42 > 41)
{ console.log(21))}
Where would be the best place to obtain a master's degree?
Answer:
Collage
Explanation:
It all depends on what your preferences are I want to be a vet so when I graduate I'm going to go to Texas state because they have a great vet program
Final answer:
Choosing the best place to obtain a master's degree requires considering personal educational goals and specific study areas. Online programs and traditional institutions both offer diverse options, like the award-winning GIS program at Penn State. Contacting universities directly and utilizing resources such as graduate rankings can assist in making an informed decision.
Explanation:
The best place to obtain a master's degree depends on your educational goals and the specific area of study you wish to pursue. Whether it is a traditional institution or an online program like the one at UMN for Parent and Family Ed, it is important to choose a school that aligns with your career aspirations and educational needs. For example, the Penn State Professional Masters Degree in GIS was recognized with the 2009 Sloan Consortium award for Most Outstanding Online Program, suggesting that some online programs can offer exceptional educational experiences.
If your interest lies in teacher certification, an alternative pathway might be through a master's degree program that allows you to work in a school while studying, as mentioned in the historical context of graduate programs which first emerged as Masters of Arts in Teaching (MAT) in the 1970s. Moreover, graduate economics rankings and resources provided by organizations like the American Economics Association can be invaluable when researching graduate degree program options in specific fields.
It's essential to consider different institutions for your advanced degrees, as this can offer a broader scope of education and potential opportunities. Remember to thoroughly research and engage with colleges or universities to understand the nuances of their graduate programs.
What’s the lcm compare and making equivalent fractions 4/5 and 5/6
Answer:
For the two fractions 4/5 and 5/6, the least common denominator is 30. The fraction 4/5 is equivalent to 24/30 (To get this I multiplied both the numerator and denominator by 6). The fraction 5/6 is equivalent to 25/30 (To get this I multiplied both the numerator and denominator by 5).
Explanation:
How do you start an HTML webpage?
Lots of details will be nice
Answer:
The HTML page code starts with <!Doctype html>, and it confirms the version of HTML you are coding in. Remember HTML 4.01 was based on SGML, and hence a reference to a DTD is required. However, HTML 5 is not based on SGML, and hence it is not required to refer to a DTD in that case. Also, Doctype is not a tag. Hence, the first tag used is the next in the list, and that is the head tag. It comprises of a title, meta keywords, meta description, styles if used any, and scripts. However, remember, in modern-day coding script is pasted at the last portion of a web page. And this is to ensure that the web page gets loaded once at least just in case the script does not gets loaded. However, style ( CSS, Bootstrap, etc) is part of the head tag only, and always. And finally comes the body. And in the body, we use all the popular HTML tags. The form tag is also a part of the body. Remember a form can be a GET or POST, and these are the two methods. Also, the action is used to set the URL where the data needs to be sent when the form is loaded. You should study Form tag deeply, and the rest of the tags are easy, and you should know how to add the styles and javascript functions to each of them. Also, knowledge of jQuery and JavaScript is a must these days.
Explanation:
A simplest of HTML code will look like:
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<meta charset="UTF-8">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
The content
</body>
</html>
Remember viewport above is meant for making the page responsive, and we mention here width= device width, and this means it will set to the width of the device on which it is running. And there is a media tag in CSS, which we use for making the page responsive as well. Or else you can make use of Bootstrap. And initial scale sets the initial zoom level.
Jacobson furniture pseudo-code
Use the following planning chart, create the pseudo-code for the btncalc_click event handling procedure. This procedure should calculate and display the Sales Tax on the Sales Amount and then the Total Due (Sales Amount + Sales Tax). Place the pseudo-code (do not give me Visual Basic statements)
Planning Chart for the Jacobson Furniture application
Purpose: Calculate and display the sales tax and total due amounts.
How?
User-provided
1. Sales amount
Application-provided
1. 5% sales tax
2. Total due
3. Button for ending the application
User will enter in txtSales
BtnCalc_Click will calculate and display in lblTax
BtnCalc_Click will calculate and display in lblTotal
BtnExit_Click will end the application
Please answer this immediately!!!
Answer:
We need to add four labels Taxable Income, Tax rate, total tax, and Total Due. And in front of them, you can add four textBoxes, or labels or as required.
The Tax rate is 5%.
And
Explanation:
BtnCalc_Click will calculate and display in lblTax
double tax = Convert.ToDouble((textBox1.Text)) * 5/100;
double Roundedtax = Math.Round(tax, 2);
textBox2.Text = Convert.ToString(Roundedtax);
textBox2.Show();
// we can use lblTax instead of textBox2. The further code will be almost change, and we need to use lblTax label instead of textBox2.Text.
BtnCalc_Click will calculate and display in lblTotal
textBox3.Text = Convert.ToString(Convert.ToDouble(textBox1.Text) + Convert.ToDouble(textBox2.Text));
textBox3.Show();
//This is lblTotal or the total Tax. We can use lblTotal label instead of the textBox3.Text.
BtnExit_Click will end the application:
Use this code in this method.
this.Close();
// This closes the application immediately on click on the Exit button.
* Create a list of places and situations in which we use a computer
PLACE
SITUATION
DESCRIPTION
Answer:
Place:
Coffee shop. Railway Reservation System, Airport Reservation System, Machine learning and a long list follow.
Situation:
We find that there is a similar type of calculation and in bulk. Thus we can create a piece of software, and run that with the help of a computer to solve our problem of tackling the massive number of clients.
Description:
The situation demands a similar sort of calculation, and we can hence make a program or most favorably a software that can do all these calculations for us. A perfect example is a coffee shop, which has 100 to 1000 customers drinking coffee each second. And you can understand how badly they need a computer and software. This cannot be done manually.
Explanation:
Please check the answer section.
how to do pseudocode and flowchart in BMI ( computer programming
Answer:
You need to find out what is the units of measurement of the height and weight. You also need to find that the weight is in Kilogram or pounds, and whether the height is in feet and inches, or inches, or meters and centimeters.
Part1: You need to read the values of the weight and height, and validate it as required.
Part2: Now you need to convert those findings into English measures or metrics for computation.
Part3: Output: You need to display as well as echo the input as well as the BMI; and you need to mention the supplementary message which is based on the BMI findings related to Obesity, borderline overweight, normal and overweight, etc.
The program is as below:
import java.io. *;
class Main
{
// weight in pounds and heights are in inches
private double your_wght;
private double your_hght;
Main ( double ht, double wt)
{
your_wght = wt; your_hght = ht;
}
public double GetHght() { return(your_hght); }
public double GetWght() { return(your_wght); }
public double CalculBMI() { return(your_wght*703/(your_hght*your_hght)); }
public double PrintDouble( String promptMessage) throws IOException
{
double Num=0;
String x=null;
Console console = System.console();
System.out.print(promptMessage);
x = console.readLine();
Num = Double.parseDouble(x);
return(Num);
}
public static void main( String args[])
{
double heightinFeet=0,heightinInch=0,w=0;
Main Input = new Main(0,0);
try
{
System.out.println(" Please input the height(feet/inches) \n");
heightinFeet = Input.PrintDouble(" In feet :> ");
heightinInch = Input.PrintDouble(" In inches :> ");
w = Input.PrintDouble(" Please enter the weight(pounds) :>");
}
catch (IOException ex) { System.out.println("occurred Input Exception"); }
Main BMI_value = new Main(heightinFeet*12+heightinInch,w);
System.out.println(" Weight = " + BMI_value.GetWght() );
System.out.println(" Height(inches) " + BMI_value.GetHght() );
System.out.println(" BMI is " + BMI_value.CalculBMI() );
}
}
Explanation:
Rest of the fields and properties are self understood, however, PrintMessage needs explanation. It takes a string as input, which calls for entering some double value like in feet, and in inches, and returns that value, which is assigned to relevant double variable. And Main is the class with Main constructor, which is a parameterized constructor, and takes height and weight as input.
use the drop-down menus to complete statements about the quick steps function
Answer:
Quick Steps comes preconfigured, or you can
(✔ create a new one).
Quick Steps creates one-step commands for
(✔ multistep)
processes.
Clicking Create New opens the Manage Quick Steps
(✔ dialog box.)
Explanation:
edg 2021
Answer:
✔ create a new one
✔ multistep
✔ dialog box
Explanation:
hope this helps :)
Gian wants to add audio to his presentation whichaude ves not supported
MIDI file
MP3 audio file
Windows Media Aude File
TIFF file
Answer:
TIFF file is not audio format file rather it is graphic container that stores raster images.
Explanation:
Gain can add all other audio files (MIDI, MP3, Windows media audio file) to his presentation.
What are MIDI, MP3 and WMA :
MIDI:
Musical Instrument Digital Interface (MIDI) is a protocol that is designed for recording and playback music on digital synthesizers that is supported by many computer sound cards. Gian can add MIDI audio format file in his presentation.
MP3:
This audio file format technology compress a sound technology into very small file while preserving the original quality of sound when it is played. Gian can add this audio format in presentation to play audio in presentation.
WMA
This audio format is developed by Microsoft. It contains a series of audio codecs and their corresponding audio formats.
Gian can add WMA extension audio file to his presentation to play audio.
Answer:
D.TIFF File on tezt
Explanation:
What is the default left margin in word 2003 document ?
Answer:
1.25 inches
Explanation:
It is 1.25 inches or 3.17 cm which is the left and right margin in the " Word 2003 document". And 1 inch or the 2.54 cm is being set as both sides left and right standard margin and 1.25 inches are also set for the top and bottom margin in the "Word 2003 document". And hence, by default, the left margin in Word 2003 document happens to be 1.25 inches.
Type the correct answer in the box. Spell the word correctly.
An online job portal asks you to upload your official photograph for better job matches. Which data type stores images and audio visual clips?
The
data type stores images and audio visual clips.
Reset
Next
Answer:
i think it is mp4
Explanation:
Final answer:
The data type that stores images and audio-visual clips is known as binary data or BLOB (Binary Large Object), which encodes the information into binary code for storage and processing.
Explanation:
The data type that stores images and audio-visual clips is commonly referred to as binary data or BLOB (Binary Large Object). When you upload your official photograph to an online job portal, the image file is stored in the form of binary data.
This type of data can include various formats like JPEG, PNG, GIF for images, and MP4, AVI for videos. Each format has a different way of encoding the graphical or audio-visual information into binary code that computers can store and process.
a Write about why it is important for a person to upgrade their job skills
It is important for a person to upgrade their job skills because upgrading their skills will Increase their self-confidence, Helps to learn new techniques at work, Keep Your Knowledge Up-to-Date, increase your ability in order to do your job well, and so on.
Explanation:
The most significant purposes behind abilities improvement in an association is for the development significant by and by and in an association. Workers need to remain learning so as to develop. At the point when you are going after another position, it's extremely significant that you can exhibit that you stay up with the latest. With certain callings, it's obligatory.
And, the more the abilities hole is developing, the more significant these three viewpoints become. This is on the grounds that we have to unmistakably comprehend whether it is information, expertise or capacity that should be created.
What are the answers to everfi
Final answer:
The answers to Everfi exercises can be found in resources provided by Everfi, including answer keys, instructor guides, and student resources.
Explanation:
The answers to Everfi exercises can be found in resources provided by Everfi. These resources include answer keys, instructor guides, and student resources. Answer keys are often available at the end of the book or in the instructor resources. Students can also access resources such as Getting Started Guides and PowerPoint slides to supplement their learning.
Where can you place CSS statements in an HTML file?
You can place CSS statements within the
section.
The CSS statement are usually placed in the head section of our HTML file.
HTML and CSSHTML is known as hypertext markup language and it is used to structure a web page and its content.
HTML describes the structure of a Web page
CSS is the language we use to style an HTML document. CSS describes how HTML elements should be displayed. CSS describes the colour, text structure, arrangement of our HTML.
The CSS statement are usually placed in the head section of our HTML document.
learn more on HTML/CSS here:https://brainly.com/question/14054531
#SPJ2
Questions
1
) Listen
)
Which function does an Internet content filter NOT perform?
content inspection
intrusion detection
malware inspection
URL filtering
Answer:
intrusion detection
Explanation:
The internet content filter is not going to check whether you are not welcome to any site, and that is done by intrusion detection, and hence, this is not performed by the internet content filter. However, content inspection, malware inspection, and URL filtering are performed by the internet content filter.
what is the relationship between binary and modern technology
Answer:
Explanation:
Binary numbers are in our technology life, this is because the data in the cellphone, computer, printer, and on the internet are binary numbers, the data is represented in 0 and 1, only that is the binary numbers, people cannot see this numbers in their routines because these numbers are coded, for example, in mp3 or mp4 code, nowadays we hear about 8K resolution and artificial intelligence, and even these technologies are binary numbers.
Question #1
Which of the following shows the correct evolution of marketing
over time?
Marketing Era - Selling Era - Production Era - Relationship
Era
Production Era - Selling Era - Marketing Era - Relationship
Era
Relationship Era - Selling Era - Marketing Era - Production
Era
Selling Era - Relationship Era - Production Era - Marketing
Era
The correct evolution is the production era-selling era-marketing era-relationship era
Explanation:
Evolution of marketing is the systematic way in which the marketing industry developed and hence the various developments and the modifications are systematically defined in each of the era
There are four major stages of development the product life cycle, the introduction, the growth and the maturity and finally the decline of the product. Philip Kotler is the founder of this modern method of marketing
Which of the following best describes the infrastructure ISPs provide?
OCAB GAME
phone service, websites and files
email, search engines and videos
READ &
RESPOND
cables, towers and underground tubes
QUIZ
D
computers, keyboards and ethernet cables
Answer:
cables, towers, and underground tubes
Explanation:
Its certainly the above one, and through this internet service is being provided. So internet service is self-understood, and what ISP firstly provides are cables, underground tubes, and the towers. And it is only these all through which the ISP provides internet service. And remember we are in this question dealing with the infrastructure and not the services or products. Hence, phone service, websites, and files, as well as the emails, search engines, and the videos, are not the solution here as they are not the infrastructure. And ISPs never provide the computers, ethernet cables or keyboards.
Hence, the correct answer is as mentioned in the answer section.
The infrastructure provided by ISPs consists of physical components such as cables, towers, and underground tubes that enable data transmission for internet services. Technological advances from wired to wireless communication have evolved this infrastructure, impacting regulation and service development.
Explanation:The infrastructure that Internet Service Providers (ISPs) provide is primarily the physical framework that enables online communication and access. This includes cables, towers, and underground tubes used to transmit data. ISPs rely on this physical network to offer services like high-speed internet access and are key to connecting individuals and businesses alike to the global network.
Over time, technology has evolved from standard phone lines and modems to broadband connections that use cable TV lines and dedicated lines, enhancing the quality and speed of internet services. The growth in cellular phone systems also reflects changes in infrastructure, moving from wired to wireless communication methods driven by advances in microwaves and satellite transmission. This evolution has fueled the debate on how ISPs should be regulated, balancing innovation with accessibility.
It is essential to have a robust infrastructure for ISPs to continue improving their services and extend their reach, supporting both the economy and society's technological needs.
Jonah wants to type an assignment using Word. Arrange the steps he needs to follow in the correct order.
Click the Blank document icon.
Click the File tab.
Click the New tab.
Open the Word application.
Answer:
New document can be created in Ms Word by following steps.
Open the Word application. Click the File tab. Click the New tab. Click the Blank document icon.Explanation:
In Microsoft word, if some one want to create a new document for the purpose of assignment writing, making a report or some other purpose. He should follow the above mentioned Steps in same order. The above mentioned steps will lead to open a new text document.
So, Jonah should follow the above mentioned steps to open a new word file for writing his assignment.
Answer:
Open the Word application.
Click the File tab.
Click the New tab.
Click the Blank document icon.
Explanation:
just took it
to adapt to dimmer light with a film camera would be more complicated than with a digital
Changing the
camera
Answer:
Changing the _exposure_ to adapt to dimmer light with a film camera would be more complicated than with a digital camera.
Explanation:
Film Camera is heavier, and it can cost a lot if we want to adapt to dimmer light and shoot in that dimmer light. Digital cameras are cheaper. In the case of a Film Camera, you need to lower down the shutter speed, make adjustments related to the aperture, ensure that the camera does not shake a lot, make use of the faster lens, as well as adjust the while balances, and use certain different light source. And all this confirms that it is not that easy to do this with Film cameras, and they can cost a lot as well. Digital Cameras are cheaper, and a better option for you. And you need to change the exposure to adapt to less light with the film Camera, but this is much easier with the digital camera. You will soon find out if you use them.
all famliy roles are chosen,except for ones you are born into
Answer:
false
Explanation:
The role of a person can be chosen but is not always in this way, for example, if someone live in a dangerous place can get a negative role, and when a baby born into a family, maybe that kid has a brother, there are negative and positive roles, tattletale can be an example of a negative role, and the role can be different depends on the places, for example in your house, in school, or in your job.
n the formula "=A3/B3", what part of the formula is the "/"?
Answer:
/ is the Arithmetic operator, and A3 and B3 are the cells.
Explanation:
This formula with taking A3 cell as the quotient, and B3 cell as the divisor. It then calculates and finally prints the value. And this value will be printed in the cell to which the formula is assigned.
And do not forget to put the = sign as mentioned, as it is the syntax of each excel formula to use = sign at first.
A college at which a student has a good chance of being accepted because
he or she meets the admission requirements is called a
A. safety college
B. selective college
C. reach college
D. probable college
Answer:
D. Probable college
Explanation:
Joann wants to insert a table of contents to her document so readers can easily navigate to the different parts of her document.
Which option of Quick Parts does she use?
Answer:
d
Explanation:
edge 2020
Joann should use the "Table of Contents" option from the Quick Parts menu to insert a table of contents into her document.
What is Table of ContentsIn Microsoft Word, the "Table of Contents" option in the Quick Parts menu helps users make a list to help them find different parts of their document. This is how it works:
Joann must make sure she chooses the right heading styles for the different parts of her document in order to use the "Table of Contents" feature. These styles are called "Heading 1," "Heading 2," and so on. These styles make it easier for Word to organize the content in a specific order.
Read more about Table of Contents here:
https://brainly.com/question/1493356
#SPJ3
What is the graphic design term for page number?
Answer:
Pagination (The numbering to individual pages in a multi-page document)
Explanation:
Pagination is the process of separating print or digital content into discrete pages.
Pagination is the process of separating print documents or digital content that can be used online into discrete pages, and you assign numbers to each page of the print document.
However, in the print industry (graphics designing) and for some online contents such as landing pages, etc, pagination refers to the automated process of adding consecutive numbers to identify the sequential order of pages in a multi-page document.
Pagination is essential for magazines and brochures, as magazine and brochure’s pages position are important when printing such documents.
Example of Pagination tools in daily life
You can do pagination using Adobe Illustrator, Adobe InDesign, and other graphic designing tools that handle the multi-page document.
Which BEST identifies the primary function of the key words above?
A)
The key words help identify your reading audience,
The key words help identify your writing purpose or goal,
The key words help determine how much evidence you should cite,
D)
The key words help determine the most appropriate length for your essay,
Submit
Answer:
A. The key words help identify your reading audience.
Explanation:
Through the keyword, you can identify your reading audience. Like, suppose you are writing about Android developers as a keyword. Thus it clarifies that your reading audience will be Android developers mainly. However, the keyword has nothing to do with writing purposes or goals. We first analyze our goal, and then we search for the keyword that can be best for fulfilling our goals. Hence, keywords not in best identify the writing purpose or goal. Like I want to be rich by writing, Now keyword is Android developers, which is confirming that our reading audience will be Android developers mainly, but it does not confirm that we want to be rich, as we might write for charity as well. And keywords does not have anything to do with how much evidence you should cite or the appropriate length of your essay. And hence, A. is the correct option.
IN YOUR OWN WORDS, create a new thread and compare and contrast paraphrasing, summarizing, and quoting and how to do each successfully.
Answer:
Such three ways to include the work of other writers in your own writing differ depending on whether you are close to the source.
Explanation:
Quotations must be the same as the original, using a narrow source segment. We must be word for word on the source document and the original author must be credited.
Paraphrasing means putting your own words into a line from the source material. The original source should also be assigned a paraphrase. Paraphrased material usually is shorter than the original one, which takes and slightly condenses a somewhat broader part of the source.
In summary, you have to put the main idea(s), including only the main point(s), in your own words. Again, summarized ideas must be attributed to the source. Summaries are much shorter than the original and give a broad overview of the source documents.
Which of the following is an example of an appropriate name for a control?
Answer:
btnExit
Explanation:
Which property of a text element controls how the browser handles text that does not fit within the element box?
A. width
B. overflow
C. padding
D. margin
Answer: B overflow
Explanation: just got right on a test
Select the correct answer.
Which statement is true about the elements of the interface of a presentation program?
OA. The status bar appears at the top of the page and displays options to style your slides.
B. The tool bar displays the thumbnails of your presentation slides in the order they will appear in the presentation.
C. Rulers indicate the margins, tabs, and indents in a presentation slide.
D.
The document area provides a list of commands to create, format, and edit presentations.
Reset
Next
Answer:
C. Rulers indicate the margins, tabs, and indents in a presentation slide.
Explanation:
The status bar appears at the bottom of the page, and it never displays options the options to style the slides. And the toolbar never displays the thumbnails of the slides, as well as the document area never provides a list of the commands for creating, formatting or editing the presentations. However, the rules do indicates the margins, tabs, and indents in a presentation slide. Hence C. is the right option.
Answer: c
Explanation:
An experienced user has installed Oracle VM VirtualBox on her workstation and is attempting to use it to create a virtual machine (VM). The software is causing error messages while attempting to create the VM. What is the most likely problem? a. The user does not know how to use the software. b. Virtualization is not enabled in BIOS/UEFI. c. The version of Windows she is using is not rated for installations of Oracle software. d. The processor is not rated to support VirtualBox and VMs.
is the correct answer.
Explanation:Virtualization can be defined as the process which allows simultaneous usage of more than one operating systems on a single system. Actually a virtual instance is ran on a system on layer which is abstract from original hardware. Virtual Machines are of much use now-a-days.
Sometimes it happens that the Operating System disables the Virtualization process by default so the Option B is correct one in this case. So user will have to enable the Virtualization option in order to overcome the problem.
As the user who is trying to install VM is an experienced one so the option A goes wrong.As the error or problem occurred after the installation process so the option C also goes wrong.As a workstation comprises of memory storage as primary and secondary so the option D cannot be true in this scenario.I hope it will help you!