what is the output of this line of code?
print("hello"+"goodbye")
-"hello"+"goodbye"
-hello + goodbye
-hello goodbye
-hellogoodbye

Answers

Answer 1
The first one
“hello” + “goodbye”
Answer 2

Answer:

“hello” + “goodbye”

Explanation:


Related Questions

When it comes to having certain sales skills as a hotel manager, being able to really hear, learn about, and show customers that the products/services you offer will meet their needs is a vital skill to have. When you show customers that you truly hear their needs, what sales skill are you practicing?
active listening
product knowledge
communication
confidence

Answers

Answer:

Communication

Explanation:

The ability to communicate clearly when working with customers is a key skill because miscommunications can result in disappointment and frustration. The best customer service professionals know how to keep their communications with customers simple and leave nothing to doubt.

Code a complete Java program to load and process a 1-dimensional array.

Create clear comments as you code to tell me what you are doing.
Import the Java libraries that you will need.
Create a single dimensional array that will hold 15 wages.
In the main, load an array with all of the records from a .txt file named Salary txt. The file has 15 records in it.
Sort the array in ascending order.
Write a method named increaseWages(). This method will add $500 to each of the 15 wages. In other words, you are giving each person a raise of $500.
Pass the array to the method from the main().
Increase the wage amounts in the array (as described above), in the method. In other words, in the end the array should hold the NEW, higher wages.
Output each new wage (use the console for this)
Calculate a total of the new wages in the method
Output the total of the new wages in the method (use a dialog box for this)
Return the array with the new wages to the main().
There is NO user interaction in this program.

Answers

Answer:

Here you go.Consider giving brainliest if it helped.

Explanation:

import java.io.*;//include this header for the file operation

import java.util.*;//to perform java utilities

import javax.swing.JOptionPane;//needed fro dialog box

class Driver{

  public static void main(String args[]){

      int wages[]=new int[15];//array to hold the wages

      int index=0;

      try{

          //use try catch for the file operation

          File file=new File("wages.txt");

          Scanner sc=new Scanner(file);//pass the file object to the scanner to ready values

          while(sc.hasNext()){

              String data=sc.nextLine();//reads a wage as a string

              String w=data.substring(1);//remove the dollar from the string data

              wages[index++]=Integer.parseInt(w);//convert the wage to int and store it in the array

          }

          sc.close();//close the scanner

      }catch(FileNotFoundException e){

          System.out.println("Error Occurrred While Reading File");

      }

     

      //sort the array using in built sort function

      Arrays.sort(wages);

      //print the wages

      System.out.println("Wages of 15 person in ascending order:");

      for(int i=0;i<wages.length;i++){

          System.out.print("$"+wages[i]+" ");

      }

      //call the increases wages method

      wages=increaseWages(wages);//this method return the updated wages array

     

  }

 

  //since we can call only static methods from main hence increaseWages is also static

  public static int[] increaseWages(int wages[]){

      //increase the wages

      for(int i=0;i<wages.length;i++){

          wages[i]+=500;

      }

     

      //print the new wages

      int sum=0;

      System.out.println("\n\nNew wages of 15 person in ascending order:");

      for(int i=0;i<wages.length;i++){

          sum+=wages[i];//sums up the new wages

          System.out.print("$"+wages[i]+" ");

      }

     

      //display the summation of the new wages in a dialog box

      JOptionPane.showMessageDialog(null,"Total of new wages: "+sum);

      return wages;

  }

}

16. The Nintendo Entertainment System (NES) saw its sales skyrocket as a result of the launch of which of the following games?
a) Pac-Man
b) Super Mario Bros
c) The Legend of Zelda
d) Popeye

Answers

Answer:

Super Mario bros

Explanation:

From your finding,conclusion and recommendations can you make on the issue of human rights violations to:Government​

Answers

Answer:
Different recommendations and conclusion can be drawn on human rights violation in government and communities.
Explanation:
1-Foremost thing that government can do is the legislation to control the human rights violation and this law should be applicable on all the people belong to any community. Government also make human rights violation issue a part of their policy so that every government could understand before hand.
2-Communities should run campaign so that people understand their human rights and can complain against such violations.
Human right violations happens all over the world but individuals and government need to work together to stop and eradicate such violations

10.The front end side in cloud computing is​

Answers

Answer:

The front end is the side the computer user, or client, sees. The back end is the "cloud" section of the system.

The front end includes the client's computer (or computer network) and the application required to access the cloud computing system.

Explanation:

can i have brainliest please

Suppose the program counter is currently equal to 1700 and instr represents the instruction memory. What will be the access of the next instruction if:

instr[PC] = add $t0, $t1, $t2

Answers

Answer:

C

Explanation:

omputer chip

sorry btw

6. Which of the following games will most likely appeal to a casual player?
a) Wii Sport
b) Contra
c) Farmville
d) Both A and C

Answers

Answer:

A

Explanation:

Wii sports is a good game for a casual player. :)

Write a function process_spec that takes a dictionary (cmap), a list (spec) and a Boolean variable (Button A) as arguments and returns False: if the spec has a color that is not defined in the cmap or if Button A was pressed to stop the animation Otherwise return True

Answers

Answer:

Explanation:

The following code is written in Python. The function takes in the three arguments and first goes through an if statement to check if Button A was pressed, if it was it returns False otherwise passes. Then it creates a for loop to cycle through the list spec and checks to see if each value is in the dictionary cmap. If any value is not in the dictionary then it returns False, otherwise, it returns True for the entire function.

def process_spec(cmap, spec, buttonA):

   if buttonA == True:

       return False

   

   for color in spec:

       if color not in cmap:

           return False

   return True

a user called to inform you that the laptop she purchased yesterday is malfunctioning and will not connect to her wireless network. You personally checked to verify that the wireless worked properly before the user left your office. the user states she rebooted the computer several times but the problems still persists. Which of the following is the first step you should take to assist the user in resolving this issue?

Answers

1. Make sure most recent update has been installed.
2. Run Windows Network Trouble shooter to ensure proper drivers are up to date and existing.
3. Carefully Review Windows Event Log for more detailed troubleshooting.
4.Last resort install a fresh boot on the laptop.

In the following instruction sequence, show the values of the Carry, Zero, and Sign flags where indicated:_____.
mov al, 00001111b
test al, 00000010b
mov al, 00000110b
cmp al, 00000101b
(Hint: type in your answer as CF = ZF = SF = ___)

Answers

Answer:

CF  = 0

ZF = 0

SF = 0

Explanation:

Assuming that at the initial stage that all Flag values are = zero

every Instruction sequence will have the values of CF , ZF and SF = 0 respectively

i.e.

CF = 0

ZF = 0

SF = 0

This is because the instruction "mov" in the instruction sequence does not have an effect on the flags. until when the accumulator is loaded with the value zero

The percentage of the audience with TV sets turned on that is watching a particular program is known as the ____________________.

Answers

Answer:

Share.

Explanation:

Social media publishing also known as broadcasting, can be defined as a service that avails end users the ability to create or upload web contents in either textual, audio or video format in order to make them appealing to a target audience.

Thus, these multimedia contents are generally accessed by end users from time to time through the use of various network-based devices and television set. As users access these contents, they're presented with the option of sharing a particular content with several other people a number of times without any form of limitation.

Additionally, the demographic or amount of audience (viewers) that a television show or program is able to get to watch at a specific period of time is generally referred to as share.

Hence, the percentage of the audience with TV sets turned on that is watching a particular program is known as the share.

For example, the percentage of the audience tuned in to watch a champions league final on a Saturday night, 8:00pm via their television set.

13. By adding built-in writable memory to its cartridge, Nintendo’s _________________ was the first console game that gamers could save.
a) Mario Bros.
b) Donkey Kong
c) The Legend of Zelda
d) Zork

Answers


The answer is c
Explanation:

Write a script called fact.sh that is located in your workspace directory to calculate the factorial of a number n; where n is a non-negative integer between 1 and 20 that is passed as a parameter from the command line (e.g. ./fact.sh 5). The result should be echoed to the screen as a single integer (e.g. 120).
NOTE: Do not include any other output, just output the single integer result.
Submit your code to the auto-grader by pressing Check-It!
NOTE: You can submit as many times as you want up until the due date.

Answers

Answer:

hope this helps

Explanation:

12. What separated Grand turismo from other racing games was its focus on ______.
a) Your audiences and females in particular
b) Fantasy graphics and visuals
c) Pure simulation and ultrarealistic features
d) All of the above

Answers

Answer:

c) Pure simulation and ultrarealistic features

Explanation:

The main difference between Grand Turismo and other racing games was its focus on Pure simulation and ultrarealistic features. The Grand Turismo series has always been a racing simulation, which was made in order to give players the most realistic racing experience possible. This included hyperrealistic graphics, force feedback, realistic car mechanics, realistic weather, and wheel traction among other features. All of this while other racing games were focusing on the thrill of street racing and modifying cars. Therefore, it managed to set itself apart.

Your program will be used by many departments at the university. Your comments will be important to their IT people. What would be a useful comment?

This was a really hard part to write, but it finally works.

I’m not sure what this does, but I don’t have time to troubleshoot it.

This segment returns a value that is used by the segment marked B.

Answers

Answer:

This segment returns a value that is used by the segment marked B.

Explanation:

just took assigment

Answer:

C

Explanation:


What is Microsoft Excel? Why is it so popular​

Answers

Answer:

Its a spreadsheet devolpment by Microsoft.

Explanation:

What should be the first tag in any HTML document? A. <head> B. <title> C. <html> D. <!DOCTYPE >​

Answers

Answer:

C.

Explanation:

Consider the following code:
val = 50
def example():
val = 15
print (val)
print (val)
example)
print (val)
What is output?
1.
2.
3.

Answers

I got you bro the answer is 50, 15, 5

What best determines whether a borrower's interest rate on an adjustable rato loan goes up or down?
a fixed interest rate
a bank's finances
a market's condition
a persons finances

Answers

It should be noted that term that best determines whether a borrower's interest rate on an adjustable ratio loan goes up or down is market's condition.

This is because, Market conditions helps to know the state of an industry or economy, and this will helps to get the necessary information about borrower's interest rate on an adjustable ratio loan.

Therefore, option C is correct.

Learn more about Market conditions at:

https://brainly.com/question/11936819

Answer:c

Explanation:

Commands from the Quick Access toolbar can be used by
Clicking on the command
Navigating to Backstage view
Selecting the appropriate options on the status bar
Selecting the function key and clicking the command​

Answers

Answer:

Clicking on the command.

Explanation:

PowerPoint application can be defined as a software application or program designed and developed by Microsoft, to avail users the ability to create various slides containing textual and multimedia informations that can be used during a presentation.

Some of the features available on Microsoft PowerPoint are narrations, transition effects, custom slideshows, animation effects, formatting options etc.

A portion of the Outlook interface that contains commonly accessed commands that a user will require frequently and is able to be customized by the user based on their particular needs is referred to as the Quick Access toolbar.

Commands from the Quick Access toolbar can be used by clicking on the command.

What is a principle of DevOps?​

Answers

Answer:

the main principles of DevOps are automation, continuous delivery, and fast reaction to feedback. You can find a more detailed explanation of DevOps pillars in the CAMS acronym: Culture represented by human communication, technical processes, and tools.

The Freeze Panes feature would be most helpful for which situation?
A.when the functions used in a worksheet are not working correctly
B.when a large worksheet is difficult to interpret because the headings disappear during scrolling
C.when the data in a worksheet keeps changing, but it needs to be locked so it is not changeable
D.when a large worksheet is printing on too many pages

Answers

Answer:

i think a but not so sure

Explanation:

Answer: Option B is the correct answer :)

Explanation:

Explain the five generations of computer

Answers

Answer:

1 First Generation

The period of first generation: 1946-1959. Vacuum tube based.

2 Second Generation

The period of second generation: 1959-1965. Transistor based.

3 Third Generation

The period of third generation: 1965-1971. Integrated Circuit based.

4 Fourth Generation

The period of fourth generation: 1971-1980. VLSI microprocessor based.

5 Fifth Generation

The period of fifth generation: 1980-onwards. ULSI microprocessor based.

The phrase "generation" refers to a shift in the technology that a computer is/was using. The term "generation" was initially used to describe different hardware advancements. These days, a computer system's generation involves both hardware and software.

Who invented the 5th generation of computers?

The Japan Ministry of International Trade and Industry (MITI) launched the Fifth Generation Computer Systems (FGCS) initiative in 1982 with the goal of developing computers that use massively parallel computing and logic programming.

The generation of computers is determined by when significant technological advancements, such as the use of vacuum tubes, transistors, and microprocessors, take place inside the computer. There will be five computer generations between now and 2020, with the first one starting around 1940.

Earlier models of computers (1940-1956)Computers of the Second Generation (1956-1963)Computers of the Third Generation (1964-1971)Computers of the fourth generation (1971-Present)Computers of the fifth generation

Learn more about generations of computers here:

https://brainly.com/question/9354047

#SPJ2

1. It is a technique of creating a picture or pattern by forcing ink or metal on to a surface though a screen of fine material.​

Answers

Answer:

hmm

Explanation:

I'm pretty sure it's screen painting? it's a print making method that forces ink through fine mesh

In the code snippet below, pick which instructions will have pipeline bubbles between them due to hazards.

a. lw $t5, 0($t0)
b. lw $t4, 4($t0)
c. add $t3, $t5, $t4
d. sw $t3, 12($t0)
e. lw $t2, 8($t0)
f. add $t1, $t5, $t2
g. sw $t1, 16($t0)

Answers

Answer:

b. lw $t4, 4($t0)

c. add $t3, $t5, $t4

Explanation:

Pipeline hazard prevents other instruction from execution while one instruction is already in process. There is pipeline bubbles through which there is break in the structural hazard which preclude data. It helps to stop fetching any new instruction during clock cycle.

Evaluate 3³×2³×4²×3-¹×4-²​

Answers

Answer: I already answered this question here:

Answer:

72:)

Explanation:

Hope it helps;))))))))

Consider a logical address space of 64 pages of 1,024 words each, mapped onto a physical memory of 32 frames. Show your work. You can either type the solution or write

Answers

Answer:

Logical address = 16 bits

Physical address = 15 bits

Explanation:

Logical space, number of pages = 64 = 2^6

Word size per page = 1024 = 2^10

Size of logical address :

Number of pages * words per page

2^6 * 2^10 = 2^(6+10) = 2^16 = 16 bits

For the physical address :

Number of frames = 32 = 2^5 frames

Word size = 1024 = 2^10

Number of frames * word size

2^5 * 2^10 = 2^(10+5) = 15 bits

How to connect on phpmyadmin?plss

Answers

Open your browser and go to localhost/PHPMyAdmin or click “Admin” in XAMPP UI. Now click Edit privileges and go to Change Admin password, type your password there and save it. Remember this password as it will be used to connect to your Database.

hope this helps!

write a c program to find product of all even numbers between 10 t0 30

Answers

Answer:

#include <stdio.h>

int main(void) {

 unsigned long n = 1;

 for(unsigned long i=10; i<=30; i+=2) {

   n *= i;

 }

 printf("%lu",n);

 return 0;

}

Explanation:

The output is: 111588212736000

The answer will take 47 bits, so you have to use 64-bit longs. An int is 32 bit thus will give the wrong answer due to a numeric overflow.

CODE

#include <stdio.h>

int main() {

   long long int product = 1;

   for(int i = 10; i <= 30; i = i + 1) {

       if(i%2 == 0) {

          product = product * i;

       }

   }

   

   printf("%lld",product);

   return 0;

}

DISPLAY

111588212736000

EXPLANATION

Declare the variable product as a long long integer type to hold 8 bytes.

Use a for loop which initializes at 10 and maximizes at 30, and increases a point each time.

Use an if statement to check for even numbers by checking the remainder.

Display the product.

Write a method that converts a time given in seconds to hours, minutes and seconds using the following header:

public static String convertTime(int totalSeconds)

The method returns a string that represents the time as hours:minutes:seconds.

Write a test program that asks the user for the time in seconds and then display the time in the above format.

Answers

Answer:

hope this helps.

Explanation:

import java.util.*;

class Timeconvert{ //class nane

public static String convertTime(int totalSeconds) /* fn to convert seconds to hh:mm:ss format */

{

int sec = totalSeconds; // a copy of totalSeconds is stored in sec

int m=sec/60; //to find the total min which obtained by doing sec/60

int psec=sec%60; //psec store remaining seconds

int hrs=m/60; //stores hr value obtained by doing m/60

int min=m%60; //stores min value obtained by m%60

return (hrs + ":" + min+ ":" +psec);// returning that string

}

}

public class Main

{

  public static void main(String[] args) {

  Timeconvert t = new Timeconvert();

  Scanner in = new Scanner(System.in); //Scanner class

System.out.println("Enter the number of seconds:");

int sec = in.nextInt(); //to input number of seconds

System.out.println("hours:minutes:seconds is " + t.convertTime(sec)); //result

 

  }

}

Other Questions
Which of the following is NOTa structural element in "DoverBeach"? Line A passes through the points (-3,2) and (-23,54). Line B is parallel to line A and passes through the point (-8,0). Considerthe equation of line B in the form y= a (x + b), where a and b are rational numbers. what operation do we use 2/5 of 100? what operation is involved when you use the word of here? For financial reporting, Clinton Poultry Farms has used the declining-balance method of depreciation for conveyor equipment acquired at the beginning of 2018 for $2,592,000. Its useful life was estimated to be six years with a $168,000 residual value. At the beginning of 2021, Clinton decides to change to the straight-line method. The effect of this change on depreciation for each year is as follows: ($ in 1000) Year Straight-Line Declining Balance Difference 2018 $404 $864 $460 2019 404 576 172 2020 404 384 (20) $1,212 $1,824 $612Required:Prepare any 2013 journal entry related to the change. What are the differences between progressive, regressive and flat taxes? Firm X develops and licenses its designs to be produced by outside manufacturers. Firm Y develops and manufactures its own designs. If the total invested capital of the two firms is the same, which likely has more equity capital and why right answers onlyWhich statement supports the conclusion that natural resources are important to Australias economy? A. Australia has the largest stock exchange in the South Pacific and Oceania. B. Over half of the Australian economy is a part of the service sector. C. Australia is one of the top twenty largest economies in the world. D. The top three exports of Australia are iron ore, coal, and natural gas. What is the answer to this question? This petition was signed while the US was engaged in WWI in 1917.TrueFalse Convert 0.00045 kg to mg. the time taken by the earth to rotate once about its own axis is called?. Enter the unlock number to unlock this door!Find the volume of each shape. Then, form the unlock code by arranging theletters of the shapes in order from greatest to least volume. (NOT drawn to scale!)44 m42 mA14 mBase Area32 m17.25 m72 mV4 mB72mD9 34 mE5 m372 mBase Area = 26 73 m872 mYour answerIPlease fill out this field. Checking account A charges a monthly service fee of $2 and a per-check feeof $0.30, while checking account B charges a monthly service fee of $3 and aper-check fee of $0.20. How many checks would a person have to write forthe two accounts to cost the same? Each of 6 students reported the number of movies they saw in the past year. Here is what they reported.8,6,8,5,4,6Find the mean number of movies that the students saw.If necessary, round your answer to the nearest tenth. 30 POINTS, NO LINKS, AND ANSWER RIGHT.-15 = 8z + 7. what is the value of z The table shows home runs for 2 baseball players over 5 games. Which statement is true?A The mean for Steve and Henry is the same.B The mean for Steve is greater that the mean for Henry.C The mean for Henry is greater than the mean for Steve.D The range is NOT the same. A solution has a pH of 10.What is the concentration of hydrogen ions? Ill give brainlist to anyone who answers correctly During the Industrial Revolution, the Whig Party was formed in order tooppose the policies of the Democratic Party. How did the two parties differ?A. Whigs supported an agricultural economy, Democrats did not.B. Democrats were in favor of high tariffs; Whigs were not.C. Whigs wanted to promote manufacturing and finance; Democratsdid not.D. Democrats wanted a strong central government; Whigs did not. triangle ABC has A(1,2), B(3,1), and C(2,4). it is reflected across the x-axis and then across the y-axis. which point is in the resulting image 100 points possible What do you need to do when your computer experiences difficulties? installer aller redmarrer visiter un site