0% found this document useful (0 votes)
292 views

22POP13-VTU-C Programming

This document outlines the details of a course titled "Principles of Programming using C". The course code is 22POP13/23. It is an integrated theory and practical course worth 3 credits with 50 marks allotted to continuous internal evaluation and 50 marks to semester end examination. The course aims to teach fundamental C programming concepts like data types, operators, control structures, functions, arrays, structures and file handling. It is divided into 5 modules covering these topics. Students will be evaluated based on programming assignments, a semester end exam and a practical examination involving experiments related to the concepts covered.

Uploaded by

Sunitha P
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
292 views

22POP13-VTU-C Programming

This document outlines the details of a course titled "Principles of Programming using C". The course code is 22POP13/23. It is an integrated theory and practical course worth 3 credits with 50 marks allotted to continuous internal evaluation and 50 marks to semester end examination. The course aims to teach fundamental C programming concepts like data types, operators, control structures, functions, arrays, structures and file handling. It is divided into 5 modules covering these topics. Students will be evaluated based on programming assignments, a semester end exam and a practical examination involving experiments related to the concepts covered.

Uploaded by

Sunitha P
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

20.11.

2022

Course Principles of Programming using C


Title:
Course Code: 22POP13/23 5
CIE Marks 50
0
Integrated 5
SEE Marks 50
Course Type 0
(Theory/Practical 1
/Integrated ) Total Marks100 0
0
Teaching Hours/Week 2:0:2 0
Exam Hours 3+2
(L:T:P: S) 3
40 hours 0
Total Hours of Pedagogy Credits 03
3
CourseObjectives:

CLO 1. Elucidate the basic architecture and functionalities of a Computer


CLO 2. Apply programming constructs of C language to solve the real-world
problems
CLO 3.Explore user-defined data structures like arrays, structures and pointers in
implementing solutions to problems
CLO 4. Design and Develop Solutions to problems using structured programming
constructs such as functions and procedures

Teaching-Learning Process(General Instructions)

ThesearesampleStrategies,whichteacherscanusetoacceleratetheattainmentofthevariouscourse
outcomes.
1. Lecturer method (L) need not to be only traditional lecture method, but
alternative effective teaching methods could be adopted to attain the outcomes.
2. Use of Video/Animation to explain functioning of various concepts.
3. Encourage collaborative (Group Learning)Learning in the class.
4. Ask atleast three HOT(Higher order Thinking) questions in the class,which
promotes critical thinking.
5. Adopt Problem Based Learning (PBL),which fosters students’ Analytical skills,
develop design thinking skills such as the ability to design, evaluate, generalize,
and analyze information rather than simply recall it.
6. Introduce Topics in manifold representations.
7. Show the different ways to solve the same problem and encourage the students
to come up with their own creative ways to solve them.
8. Discuss how every concept can be applied to the real world-and when that's
possible, it helps to improve the students' understanding.
9. Use https://pythontutor.com/visualize.html#mode=edit in order to visualize the
operations of C Programs
Module-1 (6 Hours of Pedagogy)

Introduction to C: Introduction to computers, input and output devices, designing efficient


programs. Introduction to C, Structure of C program, Files used in a C program,
Compilers, Compiling and executing C programs, variables, constants, Input/output
statements in C,

Textbook: Chapter 1.1-1.9, 2.1-2.2, 8.1 - 8.6 ,9.1-9.14


Teaching-Learning Chalk and talk method/Power Point Presentation/ Web Content:
Process https://tinyurl.com/4xmrexre
20.11.2022

Module-2 (6 Hours of Pedagogy)

Operators in C, Type conversion and typecasting.


Decision control and Looping statements: Introduction to decision control, Conditional
branching statements, iterative statements, nested loops, break and continue statements,
goto statement.
Textbook: Chapter 9.15-9.16, 10.1-10.6

Teaching-Learning Chalk and talk method/ Power Point Presentation


Process
Module-3 (8 Hours of Pedagogy)
Functions: Introduction using functions, Function definition, function declaration, function call, return
statement, passing parameters to functions, scope of variables, storage classes, recursive functions.
Arrays: Declaration of arrays, accessing the elements of an array, storing values in arrays, Operations on
arrays, Passing arrays to functions, two dimensional arrays, operations on two-dimensional arrays, two-
dimensional arrays to functions, multidimensional arrays, applications of arrays.
Textbook: Chapter 11.1-11.10, 12.1-12.10,12.12
Teaching-Learning Chalk and talk method/ Power Point Presentation
Process
Module-4 (6 Hours of Pedagogy)
Strings and Pointers: Introduction, string taxonomy, operations on strings, Miscellaneous string and
character functions, arrays of strings. Pointers: Introduction to pointers, declaring pointer variables, Types of
pointers, Passing arguments to functions using pointers
Textbook: Chapter 13.1-13.6, 14-14.7
Teaching-Learning Chalk and talk method/Power Point Presentation
Process
Module-5 (6 Hours of Pedagogy)

Structure, Union, and Enumerated Data Type: Introduction, structures and functions, Unions, unions
inside structures, Enumerated data type.
Files: Introduction to files, using files in C, reading and writing data files. , Detecting end of file
Textbook: Chapter 15.1 – 15.10, 16.1-16.5

Teaching-Learning Chalk and talk method/Power Point Presentation


Process
Course Outcomes(Course Skill S et)
At the end of the course the student will be able to:
CO1. Elucidate the basic architecture and functionalities of a computer and also recognize
the hardware parts.
CO 2. Apply programming constructs of C language to solve the real world problem
CO 3.Explore user-defined data structures like arrays in implementing solutions to
problems like searching and sorting
CO 4.Explore user-defined data structures like structures, unions and pointers in
implementing solutions
CO5.Design and Develop Solutions to problems using modular programming constructs
20.11.2022

using functions

Programming Assignments

1 Simulation of a Simple Calculator.


2 Compute the roots of a quadratic equation by accepting the coefficients. Print appropriate messages.
3 An electricity board charges the following rates for the use of electricity: for the first 200 units 80 paise per unit:
for the next 100 units 90 paise per unit: beyond 300 units Rs 1 per unit. All users are charged a minimum of Rs.
100 as meter charge. If the total amount is more than Rs 400, then an additional surcharge of 15% of total amount
is charged. Write a program to read the name of the user, number of units consumed and print out the charges.
4. Write a C Program to display the following by reading the number of rows as input,
1
1 2 1
1 2 3 2 1
12 3 4 3 2 1
---------------------------
nth row
5 Implement Binary Search on Integers.
6 Implement Matrix multiplication and validate the rules of multiplication.
7 Compute sin(x)/cos(x) using Taylor series approximation. Compare your result with the built-in library function.
Print both the results with appropriate inferences.
8 Sort the given set of N numbers using Bubble sort.
9 Write functions to implement string operations such as compare, concatenate, and find string length. Use the
parameter passing techniques.
10 Implement structures to read, write and compute average- marks of the students, list the students scoring above
and below the average marks for a class of N students.
11 Develop a program using pointers to compute the sum, mean and standard deviation of all elements stored in
an array of N real numbers.
12. Write a C program to copy a text file to another, read both the input file name and target file name.
Note:
SEE marks for the practical course is 50 Marks.
SEE shall be conducted jointly by the two examiners of the same institute, examiners are appointed by the
University
All laboratory experiments are to be included for practical examination.
(Rubrics) Breakup of marks and the instructions printed on the cover page of the answer script to be strictly
adhered to by the examiners. OR based on the course requirement evaluation rubrics shall be decided jointly by
examiners.
Students can pick one question (experiment) from the questions lot prepared by the internal /external examiners
jointly.
20.11.2022

Evaluation of test write-up/ conduction procedure and result/viva will be conducted jointly by examiners.
General rubrics suggested for SEE are mentioned here, writeup-20%, Conduction procedure and result in -60%,
Viva-voce 20% of maximum marks. SEE for practical shall be evaluated for 100 marks and scored marks shall be
scaled down to 50 marks (however, based on course type, rubrics shall be decided by the examiners)
Students can pick one experiment from the questions lot with equal choice to all the students in a batch. Student
should develop an algorithm, program, execute and demonstrate the results with appropriate output for the given
problem.
Change of experiment is allowed only once and 15% Marks allotted to the procedure part to be made zero.
The duration of SEE is 02 hours
Assessment Details (both CIE and SEE)
The weightage of Continuous Internal Evaluation (CIE) is 50% and for Semester End Exam (SEE) is 50%. The
minimum passing mark for the CIE is 40% of the maximum marks (20 marks out of 50). The minimum passing
mark for the SEE is 35% of the maximum marks (18 marks out of 50). A student shall be deemed to have
satisfied the academic requirements and earned the credits allotted to each subject/ course if the student secures
not less than 35% (18 Marks out of 50) in the semester-end examination(SEE), and a minimum of 40% (40
marks out of 100) in the sum total of the CIE (Continuous Internal Evaluation) and SEE (Semester End
Examination) taken together.
Continuous Internal Evaluation(CIE):
Two Unit Tests each of20 Marks (duration 01 hour)
• First test after the completion of 30-40 % of the syllabus
• Second test after completion of 80-90% of the syllabus
One Improvement test before the closing of the academic term may be conducted if necessary. However best two
tests out of three shall be taken into consideration.
Two assignments each of 10 Marks
The teacher has to plan the assignments and get them completed by the students well before the closing of the
term so that marks entry in the examination portal shall be done in time. Formative (Successive) Assessments
include Assignments/Quizzes/Seminars/ Course projects/Field surveys/ Case studies/ Hands-on practice
(experiments)/Group Discussions/ others. . The Teachers shall choose the types of assignments depending on
the requirement of the course and plan to attain the Cos and POs. (to have a less stressed CIE, the portion of
the syllabus should not be common /repeated for any of the methods of the CIE. Each method of CIE should
have a different syllabus portion of the course). CIE methods /test question paper is designed to attain the
different levels of Bloom’s taxonomy as per the outcome defined for the course.
The sum of two tests, two assignments, will be out of 60 marks and will be scaled down to 30 marks
CIE for the practical component of the Integrated Course
• On completion of every experiment/program in the laboratory, the students shall be evaluated and marks
shall be awarded on the same day. The15 marks are for conducting the experiment and preparation of
the laboratory record, the other 05 marks shall be for the test conducted at the end of the semester.
• The CIE marks awarded in the case of the Practical component shall be based on the continuous
evaluation of the laboratory report. Each experiment report can be evaluated for 10 marks. Marks of all
experiments’ write-ups are added and scaled down to 15 marks.
• The laboratory test (duration 02/03 hours) at the end of the 14th /15th week of the semester /after
completion of all the experiments (whichever is early) shall be conducted for 50 marks and scaled down
to 05 marks.
Scaled-down marks of write-up evaluations and tests added will be CIE marks for the laboratory component of
IPCC for 20 marks.
20.11.2022

Semester End Examination (SEE):


SEE for IC
Theory SEE will be conducted by University as per the scheduled time table, with common question papers
for the course (duration 03 hours)

1. The question paper will have ten questions. Each question is set for 20 marks.
2. There will be 2 questions from each module. Each of the two questions under a module (with a
maximum of 3 sub-questions), should have a mix of topics under that module.
3. The students have to answer 5 full questions, selecting one full question from each module.
The theory portion of the Integrated Course shall be for both CIE and SEE, whereas the practical
portion will have a CIE component only. Questions mentioned in the SEE paper shall include
questions from the practical component).

Passing standard:

• The minimum marks to be secured in CIE to appear for SEE shall be 12 (40% of maximum marks-
30) in the theory component and 08 (40% of maximum marks -20) in the practical component. The
laboratory component of the IPCC shall be for CIE only. However, in SEE, the questions from the
laboratory component shall be included. The maximum of 04/05 questions to be set from the
practical component of IPCC, the total marks of all questions should not be more than 30 marks.
• SEE will be conducted for 100 marks and students shall secure 35% of the maximum marks to
qualify for the SEE. Marks secured will be scaled down to 50.

Suggested Learning Resources:

Textbooks
1. Computer fundamentals and programming in c, “Reema Thareja”, Oxford University, Second edition,
2017.
Reference Books:
1. E. Balaguruswamy, Programming in ANSI C, 7th Edition, Tata McGraw-Hill.
2. Brian W. Kernighan and Dennis M. Ritchie, The ‘C’ Programming Language, Prentice Hall of India.
Web links and Video Lectures (e-Resources):
1. elearning.vtu.ac.in/econtent/courses/video/BS/15PCD23.html
2. https://nptel.ac.in/courses/106/105/106105171/ MOOC courses can be adopted for more clarity in
understanding the topics and verities of problem solving methods.
3. https://tinyurl.com/4xmrexre
Activity Based Learning (Suggested Activities in Class)/ Practical Based learning
• Quizzes
• Assignments
• Seminars
20.11.2022

You might also like