Explanation:
Data structure is a way of gathering and organizing the data in such a way that we can perform operation on the data very efficiently.There are different types of data structures such as :-
- Arrays
- Linked list
- Stacks
- Queues
- Trees
- Graphs
These are the basic data structures.
Algorithm:-It is a finite set of instructions written to accomplish a certain task.An algorithm's performance is measured on the basis of two properties:-
- Time complexity.
- Space complexity.
Software developers need to know data structures and algorithms because all the computers rely on data structures and algorithms so if you know data structures and algorithms better you will know the computer better.
data bases
plz mark brainliest if u want or need explanation im here
Answer:
True
Explanation:
Top-level domain name (TDN) is one of the domain name at the highest position in the hierarchy of domain name system. TDN are installed in the root zone of the domain. An example of these domain names are the "com", "org", "net" etc, of a website's name. Organisations like the ICANN are in charge of managing the root zone for the top level domains are installed in.
Answer:
def make_keeper(n):
"""Returns a function which takes one parameter cond and prints
out all integers 1..i..n where calling cond(i) returns True.
>>> def is_even(x):
# Even numbers have remainder 0 when divided by 2.
return x % 2 == 0
>>> make_keeper(5)(is_even)
2
4
"""
def fun(cond):
for i in range(1,n):
if(cond(i)):
print(i)
return fun
Explanation:
- Define a function called fun that takes cond as input.
- loop from 1 to n and display the value if it meets the requirement.
Answer:
11000011
Explanation:
This is because of the rules of bas 2