Answer:
I need a better explanation??
Answer:
Following are the code to the given question:
user_num = int(input())#defining a variable user_num that takes input from user-end
x = int(input())#defining a variable x that takes input from user-end
for j in range(3):#defining for loop that divides the value three times
user_num = user_num // x#dividing the value and store integer part
print(user_num)#print value
Output:
2000
2
1000
500
250
Explanation:
In the above-given program code two-variable "user_num and x" is declared that inputs the value from the user-end and define a for loop that uses the "j" variable with the range method.
In the loop, it divides the "user_num" value with the "x" value and holds the integer part in the "user_num" variable, and prints its value.
Answer:
SELECT CONCATENATE(FIRST_NAME, " ", LAST_NAME) as FULL_NAME FROM TABLE_NAME WHERE MANAGER_ID = 105;
Explanation:
SELECT IS THE KEYWORD TO FETCH DATA
CONCATENATE combines FIRST_NAME, " " AND LAST_NAME and displays as FULL_NAME
TABLE_NAME is the name of the table containing the data
MANAGER _ID is the name of the column containing the manager id data
Answer: Pascal case
Explanation:
The most of the professional coder use the standard pascal case for initialize the name of the class in the programming language. The pascal is basically use for writing the class name and each word must begin with the capital letter.
The pascal casing is one of the popular case styling in the programming language which is also known as pascal programming language.