Answer:
“hello” + “goodbye”
Explanation:
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
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.
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
Answer:
Super Mario bros
Explanation:
From your finding,conclusion and recommendations can you make on the issue of human rights violations to:Government
10.The front end side in cloud computing is
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
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
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
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?
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 = ___)
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 ____________________.
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
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.
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
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.
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
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 >
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.
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
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
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?
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
Answer:
i think a but not so sure
Explanation:
Answer: Option B is the correct answer :)
Explanation:
Explain the five generations of computer
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 generationLearn 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.
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)
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-²
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
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
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
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.
#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;
}
DISPLAY111588212736000
EXPLANATIONDeclare 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.
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
}
}