Mr. Chidanand S. Kusur, Asst. Professor, Department of Computer Science and Engineering, BLDEAs V. P. Dr. P. G. H. College of Engineering and Technology, Vijayapur-03, Karnataka, India. ~ send your feedback to cs.kusur@gmail.com
About Me
Thursday, 30 December 2021
Saturday, 25 December 2021
Wednesday, 22 December 2021
Thursday, 16 December 2021
Monday, 13 December 2021
Sunday, 12 December 2021
Thursday, 9 December 2021
Wednesday, 1 December 2021
Sunday, 24 October 2021
Project Phase - 1 Presentation
Wednesday, 29 September 2021
Tips to pass the arrear subject PCD 18CPS13/23 [BE first or second semester students for the affiliated college of VTU, Belagavi]
Dear students,
You are clever.
Be positive and be inspired.
Prepare all modules for arrear subject. (evethough Open Choice QP)
Prepare easy topics from all modules first.
Better start revision or practive in reverse order i.e. Module 5 , Module 4 , Module 3, Module 2 and Module 1
Attemept that question first in exam whichever you know perfect.
Write the practiced programs as example for answered question.
Always write more examples.
For example, if you have practiced some programs like bubble sort, if you are not getting the practied program question in exam, then write this practiced program as example for Array or For loop or if condition...i.e. highlight the part of that program as example for the answered question. Then possibility of getting more marks from valuators.
All valuators are good and they are interested in giving marks to you.so, if you write more examples with quality points and neatly , defninetly, you get good marks.
So, make the valuator happy by good handwriting with quality points and more examples.
Whatever the topics you preprare for exams, use that knowledge to write as a part of any of the question from QP wherever it matches.
For every answers:
There must be EXPLANATION
There must be SYNTAX if any (Draw box around syntax)
If necessary draw FLOWCHART
Write PROGRAMMING EXAMPLES for all answered questions.
Prepare the following programs and use as examples for few of the questions from question paper.
simple inetrest
area and circumefrence of circle
area and perimeter of rectangle
area of triangle by reading breadth and height
area of triangle by reading 3 sides of it.
eligible for VOTE or NOT
largest of 2 nos
largest of 3 nos
largest of N nos
Palindrome or NOT
Factorial of N
Programming example for switch
Buuble sort
Linear search
Binary search
Read and Display N students information using array of structure
Example for Dynamic Memory Allocation
Using Pointers, swap two values.
Practice all the above programs...use these examples for some topics while answering questions in examination.
Tuesday, 28 September 2021
Modulewise Important Questions ( C Programming for Problem Solving (18CP13/23) )
Dear students,
Minimum topics to be prepared are as follows.
For all answers, write a c program as example, wherever necessary.
Module-1
Generations of Computers
Types of computers
Structure of a computer or Block diagram of a computer
C tokens
What are identifiers?Write rules for defining identifiers with valid and inavlid examples.
What are formatted I/O functions?Dicuss with syntax and examples.
List and discuss C operators.
Structure of C program
Module-2
Discuss the following decision making(conditional/selection/branching) statements with explanation, syntax,flowchart and examples.
simple if
if else
nested if
else if ladder
switch
Discuss the following loop statements with examples.
while
do while
for
Write differences between break and continue
Module-3
What is 1D array?Discuss its declaration and initalization with syntax and examples.
What is 2D array?Discuss its declaration and initalization with syntax and examples.
Discuss all string handling functions with syntax and exaples.
Module-4
Discuss elements of user defined functions with example.
(function declaration, function call and function definition)
Categories of functions based on parameters(arguments) and return value.
(4 categories)
What is recursive function?Give programming example.
Module-5
What is structure?Discuss its definiton and declaration of variables with syntax and examples.
What is pointer?Discuss its declaration and initalization with syntax and examples.
What are preprocessors?Discuss the different types with examples.
Programs
1.C program to calculate simple inetrest
2.C program to find largest of 3 numbers
3.C program to find area and perimeter of rectangle
4.C program to find area of triangle by reading 3 sides of it.
5. C program to check for PALINDROME or NOT
6. C program to implement bubble sort technique.
7.C program to implements linear search
8.C program to implement binary search.
9.C program to find factorail of N
10.C program to find factorial of N using recursive function.
11. C program to read and display N students information using array of structure.
12. Write user defined function to swap 2 values using pointers.(Call by reference Method)
Friday, 9 July 2021
Wednesday, 7 July 2021
Sunday, 4 July 2021
Sunday, 20 June 2021
Saturday, 19 June 2021
Saturday, 29 May 2021
Friday, 28 May 2021
Tuesday, 25 May 2021
Sunday, 23 May 2021
Sunday, 18 April 2021
Module wise Important Questions to Be Practice!
Module-1
Block diagram of a computer with explanation of each part in brief.
List of input devices with explanation in brief about each.
List of output devices with explanation in brief about each.
Generations of Computers
Types of Computers
What is computer network? list its advantages.
Write differences between LAN, WAN and MAN
Discuss network topologies (bus, star, ring and mesh) with diagram and examples.
Module-2
Structure of a c program with programming example.
C-tokens (list and explain in brief)
What is identifier? Discuss rules for defining identifiers with valid and invalid examples for each rule.
What is variable? Discuss its declaration and initialization with syntax and examples.
What are formatted input and output functions(scanf and printf)? Discuss with syntax and examples.
What are unformatted input and output functions? Discuss with syntax and examples.
List and discuss the following operators with explanation and examples.
Arithmetic
Relational
Logical
increment and decrement
Conditional operator
Bitwise operators
Special operators (comma and sizeof)
What is typecast(type conversion)? Discuss implicit and explicit type conversions with examples.
Write c programs for following.
To find simple interest (algorithm, flowchart, pesudocode, program)
To find area and circumference of a circle (algorithm, flowchart, pseudocode, program)
To find area and perimeter of rectangle.
To find area of triangle by reading breadth and height of it.
To find area of triangle by reading 3 sides of it (a,b,c)
To swap to values using temporary variable.
To swap to values without using temporary variable.
Module-3
Discuss the following conditional(decision making/selection/branching) statements with syntax, flowchart and examples.
simple if
if else
nested if
else if ladder
switch
Discuss the following loop statements with syntax, flowchart and examples.
while
do while
for
Write differences between while and do while statements.
Write differences between break and continue statements.
Discuss the following storage classes used in C with examples.
automatic variables
global variables
static variables
register variables
Programs:
To check for leap year
To check, whether the number N is even or odd number.
To check, whether the number is PALINDROME or not.
To find factorial of N
GCD and LCM using Euclid's algorithm.
To print first N fibonacci numbers.
Module-4
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 all string handling functions with syntax and examples.
Programs:
Bubble sort
Linear search
Binary search
Sum and Avg of N numbers
Find maximum and minimum of N numbers
Module-4
Discuss the 3 elements of user defined functions with syntax and examples.
Discuss categories of function with examples.
What are actual and formal parameters?Discuss with examples.
Discuss parameter passing mechanism. (call by value and call by reference)
What is recursive function?Give example.
Programs:
Function to check for prime number.
Function to find length of a string.
Module-5
What is structure?Discuss declaration of structure and structure variable with syntax and examples.
What is array of structure?Give programming example.
What is nested structure?Give example.
Discuss structures and functions with example.
What is pointer? Discuss its declaration and initialization with syntax and examples.
What is dynamic memory allocation? Discuss memory allocation functions like malloc(), calloc(), realloc(), fee().
What are pre-processors? Discuss three types with examples.
Programs:
Swap two values using pointers.
Standard deviation
C Program to print Pascals Triangle (Click below link)
https://drive.google.com/file/d/1gv62LCGTury6zdevYFfRUUrPRME17fxV/view?usp=sharing
Saturday, 27 March 2021
Tuesday, 23 March 2021
Sunday, 14 March 2021
Saturday, 13 March 2021
Thursday, 11 March 2021
Saturday, 6 March 2021
Sunday, 21 February 2021
Saturday, 20 February 2021
Saturday, 13 February 2021
Sunday, 7 February 2021
Saturday, 30 January 2021
Tuesday, 26 January 2021
Tuesday, 19 January 2021
Sunday, 17 January 2021
Saturday, 16 January 2021
Friday, 15 January 2021
Thursday, 14 January 2021
Monday, 11 January 2021
Sunday, 10 January 2021
Saturday, 9 January 2021
Thursday, 7 January 2021
Sunday, 3 January 2021
Quiz-1 for DCET 2025 (Introduction to Python)
1. Introduction to Python https://docs.google.com/forms/d/e/1FAIpQLSc3LFrMaswLg6mltJ3NN5QGbALA9Uc53KWPp4oV5HN4SaM0Iw/viewform?usp=sharing...
-
1. Introduction to Python https://docs.google.com/forms/d/e/1FAIpQLSc3LFrMaswLg6mltJ3NN5QGbALA9Uc53KWPp4oV5HN4SaM0Iw/viewform?usp=sharing...
-
Module wise most expected questions on " Unix and Shell Programming " Module-1 1. Explain in brief about " UNIX Arc...
-
Dear students, You are hereby informed to follow the following instructions to get good marks in Practical Examinations. Wear the formal and...
-
What is computer? Name some input and output devices. What is CPU? Name types of memories. Tell me about computer generations. Ca...
-
Module-1 Block diagram of a computer with explanation of each part in brief. List of input devices with explanation in brief about eac...