Write a program that reads in a sequence of characters and prints them in reverse order (Use a stack)?
Write a C program to implement Queue operations such as enqueue, dequeue and display using linked list?
Given an array array[], its starting position l and its ending position r. Sort the
array using Bucket Sort algorithm.
Input: N = 10
array[] = {10 9 7 8 6 2 4 3 5 1}
Output: 1 2 3 4 5 6 7 8 9 10
In this lab project:You are a given a CSV file, and you should copy the file into some directory on
the server.
Using Python- you will import the CSV file and analyse the data frames (i.e. data structured as
columns and rows). To be able to do this - you need to install “pandas” on Python.
1. Write both TCP client and TCP server in Python version 3.8 or above.
2. Test the network connectivity between TCP client and TCP server.
3. Import the CSV file into the TCP server.
4. Find the number of rows and columns of the data set, and display the results on the TCP client
machine.
5. Output the 2
nd row on the TCP client machine.
6. Find the averages(mean) of the statistics for NBA players and display the results on the TCP
client machine.
pop()
a=[10, 20,30,40,50,30]
a. remove(30)
Write a Python program that get a number using keyboard input. (Remember to use input for Python 3 but raw_input for Python 2.)
n distributed systems, most of the time the processing is based on client/server computing- the
client will request a service from the server and the server will process the service-request and
then send a reply to the client. The communication takes place over wired or wireless computer
networks.
In this lab project:You are a given a CSV file, and you should copy the file into some directory on
the server.
Using Python- you will import the CSV file and analyse the data frames (i.e. data structured as
columns and rows). To be able to do this - you need to install “pandas” on Python.
1. Write both TCP client and TCP server in Python version 3.8 or above.
2. Test the network connectivity between TCP client and TCP server.
3. Import the CSV file into the TCP server.
4. Find the number of rows and columns of the data set, and display the results on the TCP client
machine.
5. Output the 2
nd row on the TCP client machine.
def countdown (n):
If n<=0:
print('Blastoff!')
else:
print(n)
countdown(n-1)
Write a new recursive function countup that expects a negative argument and counts "up" from that number.
Assume, you have been given a tuple with details about books that won the Good Reads Choice Awards.
book_info = (
("Best Mystery & Thriller","The Silent Patient",68821),
("Best Horror","The Institute",75717),
("Best History & Biography","The five",31783 ),
("Best Fiction","The Testaments",98291)
)
Write a Python program that prints the award category, the book name, and its total votes earned as shown below.
5. Write a C Program to calculate the Average of an array elements where the elements are received as input