About Me

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

Sunday 24 October 2021

Project Phase - 1 Presentation

Dear students,

Your presentation (PPT) needs to have the minimum slides for following contents.

TITLE SLIDE
   College Name with LOGO
   Department Name
   Project Title
   Under the Guidance of
   [Guide Name with Designation]
   Students Name with USN

INDEX slide

INTRODUCTION slide

MOTIVATION slide

LITERATURE SURVEY slide

Better write the literature survey in table format.
[Ref.No | Title of Paper | Year of Publish | Contributions | Advantages | Limitations if any | Future Scope (if any)]
Conclude the Literature Survey with yours own conclusion i.e. by identifying the problem, That will be yours objective of the project work.

PROBLEM STATEMENT slide

METHODOLOGY slide

ALGORITHM (if any) slide

SOFTWARE REQUIREMENT slide

HARDWARE REQUIREMENT slide
(if any specific)

EXPECTED OUTCOME

REFERENCES slide

[1]   ...............................
[2]   ...............................
[3]   ..............................

THANK YOU slide

Note:

All slides must have only points i.e. do not write explanation on slides.
You need to explain points by yours own during presentation.

Use appropriate font and font size for the contents of slide.

USE same font, font size and color for all titles in the PPT.

Different font and font size for Heading-1, Heading-2,Heading-3 and for the contents.

For figure give the caption like Fig. 1. [...................] and so on...

For Table give the caption at the top like Table 1. [ ................. ]


During Presentation:

Wear formal dresses.

You need to explain the points by yours own i.e. do not read the contents of slide.

All the group members needs to know all the points from all slides.

Project Reviewers may ask questions to any of the group member.

Suggestions given by Professors must be taken as positive and work accordingly.

Very important is that show the prepared PPT to yours assigned guide before the main presentation. Do the changes as the guide suggests....Ok....

NOTE:
Contents of Presentation may change as per the objective of the Project Work. 
Above listed flow is just for reference....


All the best!











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)


Sunday 18 April 2021

Design and develop a c program to calculate simple intetrest. (algorithm...

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


       






GCD of two numbers and its application...

The greatest common divisor (gcd) of two numbers is the largest positive integer that divides both numbers without leaving a remainder. The ...