Answer:
select name,department,phone_number,email from employee e
where e.phone_number like '5-%'
Explanation:
On Chegg + SQL textbook
here we are making use of like operator to match any phone number that starts with '5-'.Like operator has two wild card that can be used with it.
(%)--This represents zero, one or multiple characters.
(_)-- This represents a single character.
Pseudocode:
import random
fetch user input on a lucky number
insert input into variable - "response"
new variable, random = randint
condition to check wheather random is our response
display results
Python Code:
import random
def main():
response = int(input("Guess my lucky number, its between 1 and 100: "))
lucky_number = random.randint(1,100)
if response == lucky_number:
print(f"Wow you're right, it is {lucky_number}")
else:
print("Sorry, Try Again")
main()
Reminder:
intended for python3 as i included the format f
also it could be done without the import, just manually insert a number
i'll leave the post mortum to you
An <u>IC extractor</u> would be the best choice for removing and replacing the motherboard bios chip.
<h3>What is a computer hardware?</h3>
A computer hardware can be defined as a physical component of an information technology (IT) or computer system that can be seen and touched.
<h3>The hardware components of a computer.</h3>
Some examples of the hardware components of a computer system and these include:
- Random access memory (RAM).
- Central processing unit (CPU)
In Computer technology, an <u>IC extractor</u> would be the best choice for removing and replacing the motherboard bios chip.
Read more on motherboard bios chip here: brainly.com/question/17373331
#SPJ1
The two <span>statements that give good definitions of financial credit are : 1) Balance Sheet & 2) Income Statement.
</span>
1) Balance sheet shows the assets, liabilities, and net worth on a
given date;
2) Income statement (profit & loss account), shows how the net income of
the firm is arrived at over a stated period.
Another statement is Cash flow statement, which shows the inflows and outflows of cash caused by the firm's activities during a given period of time.