About Me

My photo
Vijayapur, Karnataka, India
I am interested in Teaching.

Thursday 28 November 2019

Download C language Notes on C for Problem Solving Syllabus as per VTU, Belagavi for first and second semester

Dear students,

Please click on below link to download the notes of Module-5.

Module-5 C for Problem Solving Notes as per VTU Syllabus

Send your feedback to cs.kusur@gmail.com

Send request to get cs.kusur@gmail.com to get notes of other modules..

Good luck!

Sunday 24 November 2019

2nd IA Marks of C for Problem Solving I Sem. G division.


Results of 2nd IA Marks
Class: I Sem. 'G' Division  Staff: C. S. Kusur


Click on below link to see yours 2nd IA marks of CPS.
All the best!
Click here to see yours 2nd IA Marks of CPS

Note: Dear students, Those who scored less than 19 as a final 2nd IA. You need to solve 2nd IA question paper once again and submit before 7th Dec. 2019

Wednesday 20 November 2019

Assignment-3 C for Problem Solving for I Sem G Division by C. S. Kusur

What is one dimensional array? Discuss its declaration and initialization with syntax and examples.

What is two dimensional array? Discuss its declaration and initialization with syntax and examples.

Discuss the elements of user defined functions with syntax and examples.

What are actual and formal parameters?Give programming example.

Discuss the categories of functions with examples.

Write differences between call by value and call by reference methods.

What is recursive function? Give programming example.

Discuss the following storage classes used in C with examples.
automatic variables
global variables
static variables
register variables


Write a function to find largest of two numbers.
Write a function to find factorial of n
Write a function to find length of a string
Write a function named isprime(n) that returns 0 if the number is not prime; otherwise, it returns 1.

What is structure? Discuss its declaration with syntax and examples.

What is pointer? Discuss its declaration and initialization with syntax and examples.

What is DMA (dynamic Memory Allocation)?Discuss the memory allocation functions like malloc(), calloc(), realloc() and free() with syntax and examples.

Give programming example for DMA.

What are preprocessors?List and discuss the different types of preprocessors.

Write a c program to swap (interchange) the contents of two variables using pointers.





Assignment-3 SAN (Storage Area Networks) 7th Semester A Division (C. S. Kusur)


Answer any 5 of the following.

1. List and explain the four security goals of information security environment.

Hint:
(CIAA)
Confidentiality
Integrity
Availability and
Accountability.

2.  Discuss Risk Triad in brief.

Hint:
1. threats
2. assets
3. vulnerabilities


3.  With neat diagrams explain storage security domains.

Hint:
a) Application access
b) Management access
c) backup, replication and archive

4. Discuss about the security implementations in storage networking.

a) Securing FC SAN Environment
b) Securing NAS Environment
c) Securing IP-SAN Environment

6. Discuss the monitoring the storage infrastructure with monitoring parameters and components.

Hint:
Monitoring Parameters
a) accessibility
b) capacity
c) performance
d) security

Monitoring components
1) Hosts 2) Networks 3) storage

7. List and discuss the following monitoring parameters

Hint:
1. Accessibility monitoring
2. Capacity monitoring
3. Performance monitoring
4. Security Monitoring
5. Alerting of events by alerts


8. Write short note on "Alerts".

9. List and discuss the storage infrastructure management activities.

Hint:
Availability Management
Capacity "
Performance "
Security "
Reporting


10. Discuss Information Lifecycle Management (ILM) with its key benefits.

11. Discuss the challenges for consumers and providers of cloud computing.

12. Write short note on  IP-SAN security implementation in storage networking.

13. Discuss the cloud adoption considerations.

14. Discuss in brief about cloud computing infrastructure.







Friday 8 November 2019

Questions on Arrays and Strings as a part of Assignment-2 CPS for I Sem G Division Civil Students

What is one dimensional array?Discuss its declaration and initialization with syntax and examples.

What is two dimensional array?Discuss its declaration and initialization with syntax and examples.

What is string ?Discuss its declaration and initialization with syntax and examples.

Discuss following string handling (manipulation) functions with explanation, syntax and examples.

1. strlen()
2. strcpy()
3. strncpy()
4. strcat()
5. strncat()
6. strcmp()
7. strncmp()
8. strupr()
9. strler()
10.strupr()


Programs on 1D array:

Write a c program to implement implement linear search technique.

Write a c program to implement implement binary search technique.

Write a c program to implement implement bubble sort technique.

Write a c program to find largest and lowest of N numbers.

Write a c program to find sum and average of N integers using 1D array.

Programs on 2D array:

Write a c program to find addition of two matrices.

Write a c program to find multiplication of two matrices.


Programs on strings:

Write a c program to find length of a string without using built in function.

Write a c program to copy one string into another string variable without using built in function.

Write a c program to concatenate one string to another string without using built in function.

Write a c program to reverse a string without using a built in function.