Answer:
customer-serious orientation
Explanation:
Customer-serious orientation can be defined as the willingness to put a customer’s needs above ones own needs and to go beyond a job description to achieve customer satisfaction.
This ultimately implies that, a customer-serious oriented business firm or company puts the needs, wants and requirements of its customers first without considering their own needs in a bid to satisfy and retain them.
Hence, customer-serious orientation requires the employees working in an organization to show and demonstrate positive attitudes and behaviors at all times.
package brainly;
import java.util.*;
/**
*
* @author CotrinaAlejandra
*/
public class Brainly {
/*Provide the java code, including a comment with your name, course code and date.
Name:
Course:
Date: */
public static void main(String[] args) {
// TODO code application logic here
int number;
Scanner sc = new Scanner(System.in);
System.out.print("Write a four digit number: ");
number=sc.nextInt();
String newLine= String.valueOf(number);
System.out.println(newLine.charAt(0)+" "+newLine.charAt(1)+" "+newLine.charAt(2)+" "+newLine.charAt(3));
}
}
Answer:
num1 = 600
Explanation:
Given
The attached code snippet
Required
The output of n = funcOne(funcTwo(n)); when n = 30
The inner function is first executed, i.e.
funcTwo(n)
When n = 30, we have:
funcTwo(30)
This returns the product of n and 10 i.e. 30 * 10 = 300
So:
funcTwo(30) = 300
n = funcOne(funcTwo(n)); becomes: n = funcOne(300);
This passes 300 to funcOne; So, we have:
n = funcOne(300);
This returns the product of n and 2 i.e. 300 * 2 = 600
Hence, the output is 600
Answer:
Option A, Option B, and Option C are the correct options.
Explanation:
The following options are correct because when any person is facing a problem related to its laptop and he wanted to contact with the customer service agent to solve his problem of the Laptop that is his Laptop battery does not work more than the half-hour and his Laptop's battery not charge more than 15%.
So, his laptop will be facing the problems related to Battery, LCD power inverter, or AC adapter.
Bedrooms are too small.
Bedrooms are too comfortable.
Bedrooms are messy and cluttered.
Answer:
It would basically be based on how you study and what your room is like. But my opinion would be
Bedrooms are Too Comfortable- which causes you to want to sleep or not due your work
Bedrooms are dimly lit- Which makes it hard for you to see your work and see anything
Bedrooms are too small- You will fell crushed and hard to focus (I would most likely choose this answer)
Bedrooms are messy and cluttered- You will not be able to concentrate and make it hard to study or do school work. ( I would choose this because I have experienced with this and I score higher in a cleaner environment and able to focus more)
Explanation: This would all depend on how you best work.
Hope this Helps!!
np.numpy
numpy
Answer:
The correct option is np.array
Explanation:
Numpy is a library to perform numerical calculation in python. It allows us to create and modify vectors, and make operations on them easily. Numpy arrays are an excellent alternative to python lists. Some of the key advantages of numpy arrays are that they are fast, easy to work with, and offer users the opportunity to perform calculations through full arrays.
To start using numpy, the library must be imported:
import numpy as np
The most common way to create a vector or matrix already initialized is with the np.array function, which takes a list (or list of lists) as a parameter and returns a numpy matrix. The numpy arrays are static and homogeneous typing. They are more efficient in the use of memory.
Example:
list = [25,12,15,66,12.5]
v = np.array (list)
print (v)