Max()
------------------------------------------------------------
Answer:
1. open the software
2. select a new blank database or database wizard
3. name the database
4. enter field names and select the type of field (text, number, date, currency)
5. make one of the fields the primary key
6. click done, or save and close
7. open the table and add records
The OC level is primarily used as a regional ISP backbone, and occasionally by very large hospitals, universities, or other major enterprises is <u>OC-48.</u>
<u></u>
<h3>What is the greatest amount of throughput provided by an OC 12?</h3>
OC-12 is a network line with communication speeds of up to 622.08 Mbit/s (payload: 601.344 Mbit/s; overhead: 20.736 Mbit/s). OC-12 lines are generally used by ISPs as wide area network (WAN) connections.
<h3>When using frame relay What is the appellation of the identifier?</h3>
A data-link connection identifier (DLCI) determines the Frame Relay PVC. Frames are routed through one or more virtual circuits determined by DLCIs.
Each DLCI has a permanently configured switching path to a particular destination
To learn more about OC level , refer
brainly.com/question/25899244
#SPJ4
<u></u>
Answer:
The program to this question as follows:
Program:
def lettersOnly(s): #defining method lettersOnly
val="" #defining string variable that return value
for i in s: #defining loop to calculate value
if(i.isalpha()): #check condition that value is string
val=val+ i #add value
return val #return value
print(lettersOnly("data3base_ro1c3k5s")) #call method and print value
Output:
databaserocks
Explanation:
In the above python code, a method lettersOnly is declared that accepts a string variable "s" in its parameter. Inside the method, a string variable "val", and loop is declared, in which the "val" variable holds method return value.
- In the loop and if block is used that uses "isalpha" string method, which checks the check alphabetic character in the given value. if this is true it will calculate all value in "val" variable and return its value.
- At the last, the print method is used, which calls the lettersOnly method and prints its return value.