#Concepts of Arrays and pointer
1. What is a 2D array? Explain the memory representation of 2D arrays in C.
Login to view solution
2. How to calculate the address of a 2-D array element? Explain row major order with example in C.
Login to view solution
3. What is a 2D character array? Write different ways to initialize 2D character arrays in C.
Solution not available
#Structure and Union
1. Write a note on Structure in C with an example.
Solution not available
2. Discuss memory allocation in union.
Solution not available
3. Difference between Union and structure
Solution not available
#User defined functions
1. What is a function prototype? Write its importance.
Solution not available
2. What is a Recursive function? Explain recursion in C with proper examples.
Solution not available
#Iterative statements
1. Explain fixed loop iterative statements in Python.
Solution not available
2. Discuss any two iterative statements of Python.
Solution not available
3. Explain the while loop in Python with the else clause.
Solution not available
#Python Collections
1. What is a List? How to create a list in Python? How to access list members? Explain with examples.
Solution not available
2. Explain list with its methods.
Solution not available
3. Explain list slicing with examples.
Solution not available
4. Write a note on sets and its methods with examples.
Solution not available
5. Explain operations performed on tuples.
Solution not available
6. Differentiate tuple and dictionary
Solution not available
#Python conditional
1. Explain conditional statements in Python.
Solution not available
#Python Fundamentals
1. Write a note on features of the Python programming language.
Solution not available
2. Explain numeric data types in Python
Solution not available
3. How to declare variables in Python? Explain local and global variables with examples.
Solution not available
4. Explain different ways to pass arguments to user defined functions in Python.
Solution not available
5. Write a Python program with a user defined function that checks whether a number is palindrome or not.
Solution not available
6. Write a Python program with a user defined function that accepts a string and replaces all vowels with '*'
Solution not available
#Python Operators
1. Explain arithmetic operators in Python.
Solution not available
2. Explain arithmetic operators in Python
Solution not available
3. Explain identity and membership operators in Python in detail.
Solution not available
4. Explain logical and member operators in Python.
Solution not available
#Python Strings
1. Write a note on operations performed on string in Python.
Solution not available
2. Explain any four string methods in Python with examples.
Solution not available
3. Differentiate find() and index() functions of string in Python.
Solution not available
4. Write difference between replace() and split() of string in Python
Solution not available
#Python Library
1. What is NumPy? Write a note on NumPy with its methods.
Solution not available
2. How to create an array using NumPy? Explain any two methods with examples.
Solution not available
3. Write a Python program which repeatedly asks the user to enter product name and its price. Store the information in a dictionary and allow searching by product name.
Solution not available
4. Explain Pandas DataFrame in brief. How to create a DataFrame using a list?
Solution not available