Answer:
data = [0,1,2,3,4]
for i in range(4):
print(data[i])
i+=1
Explanation:
Loops can be utilized in a listing process by looping back to a list with a variable while the loop increases that variable to give a different response from the list.
Answer:
115200000 bits
Explanation:
Given Data:
Total Time = 3 minute = 3 x 60 sec = 180 sec
Sampling rate = 40,000 bits / sample
Each sample contain bits = 16 bits /sample
Total bits of song = ?
Solution
Total bits of song = Total Time x Sampling rate x Each sample contain bits
= 180 sec x 40,000 bits / sec x 16 bits /sample
= 115200000 bits
= 115200000/8 bits
= 14400000 bytes
= 144 MB
There are total samples in one second are 40000. Total time of the song is 180 seconds and one sample contains 16 bits. so the total bits in the song are 144 MB.
Answer:
Explanation:
a)use order by clause for sorting
for $x in doc("books.xml")/bib/book order by xs:float($x/price) return $x/title (default sorted in ascending order)
or
for $x in doc("books.xml")/bib/book order by xs:float($b/price) descending return $b/title (sorted in descending order)
b)doc("books.xml")//book[author = 'Abiteboul']
c)for $x in distinct-values(doc("bib.xml")/bib/book/author)
return <res>
<name>{$x}</name>
<count>
{count (doc("bib.xml")//book[exists(indexof(author,$x))]) }
</count>
<res>
Answer:
Significance of top administration responsibility: Top administration duty assumes an indispensable job in the development of any association. The duties of top administration decied the future objective of the association. So we can say that the development of association is straightforwardly proportional to the duties set by the top administration.
The viable and effective headings and the duties bargains the association to achive the arranged objectives and the objectives.
Improvement of Standards: Development of norms are likewise significant in any association. The quality check of the association or the review is being finished dealing with the these measures. So we can say that the nature of association is estimated on the bases of norms set. That is the reason its essential to set the gauges
initially, characterize the measures and flow it inside the association. Since it by implication sway the nature of any association.
For example if we are developing any project that its important that we should be clear about the expectation and commitments set by the top management regarding the
project and it should be developed on the standards set by the organization. Because without these two fators it may happen that our project fails in real
scenario
1. Difficulties in regards to asset the board.
2. Difficulties with respect to cost and budgetary needs
3. Difficulties in regards to innovations and skiils
4. Difficulties in regards to convenient conveyance of the task
Explanation:
Answer:
a = float(input("Enter Side A: "))
b = float(input("Enter Side B: "))
c = float(input("Enter Side C: "))
d = float(input("Enter Side D: "))
e = float(input("Enter Side E: "))
area1 = 1.0* a * b
area2 = (a - c) * (d - e -b)
area3 = 0.5 * (a - c) * e
print ("Room Area: " + str(area1 + area2 + area3))
Explanation:
happy to help ^3^