Here i have uploaded the previous year (2014 November) question paper of Programming in C for Third semester for Automobile Engineering, Mechanical Engineering, Production Engineering or Metallurgy branches under MG university BTech course.
Course : B.Tech Engineering (degree)
University: MG university (Mahatma Gandhi university) Kottayam, Kerala
Department or branch: Automobile Engineering, Mechanical Engineering, Production Engineering or Metallurgy
Information about resetting and configuring Mobile phones (Java, Android, Symbian etc), educational articles especially for programming in C, C++ and Java and more about Computers and operating systems
Showing posts with label third. Show all posts
Showing posts with label third. Show all posts
C Programming Previous Year Question Paper for Automobile, Mechanical, Production or Metallurgy
Labels:
$studymat
,
2014
,
Automobile
,
B TEch
,
B.Tech
,
BTech
,
c language
,
C programming
,
calicut
,
download
,
engineering
,
mechanical
,
MG University
,
pdf
,
previous
,
production
,
question paper
,
s3
,
semester
,
third
STLD Previous Year Question Paper 2013 for Third Semester Computer Science
Free download Previous year 2013 question paper for B.Tech degree examination of Switching Theory and Logic Design for third semester Computer science and engineering (CSE).
Subject : Switching Theory and Logic Design or STLD (3rd sem)
Course : BTech Engineering
Department: Computer Science and engineering (CS)
Semester: Third semester (s3)
University : MG university Kottayam kerala
Subject : Switching Theory and Logic Design or STLD (3rd sem)
Course : BTech Engineering
Department: Computer Science and engineering (CS)
Semester: Third semester (s3)
University : MG university Kottayam kerala
Labels:
$studymat
,
2013
,
BTech
,
Computer Science
,
download
,
engineering
,
free
,
Logic design
,
MG University
,
paper
,
pdf
,
previous
,
questions
,
semester
,
STLD
,
switching theory
,
third
MG University BTech Mechanical Engineering Third Semester Syllabus
The syllabus for Third semester BTech (B.Tech) Mechanical Engineering under MG University ( Mahatma Gandhi university Kottayam Kerala) is available for download in pdf format. To download it, click here
Labels:
$studymat
,
B.Tech
,
BTech
,
download
,
engineering
,
free pdf
,
Kerala
,
mechanical
,
MG University
,
semester
,
syllabus
,
third
EDC Previous Year Question Paper 2013 for Third Semester Computer Science
Free download Previous year 2013 question paper for B.Tech degree examination of Electronic devices and circuits for third semester Computer science and engineering (CSE).
Subject : Electronic devices and circuits (3rd sem)
Course : BTech Engineering
Department: Computer Science and engineering (CS)
Semester: Third semester (s3)
University : MG university Kottayam kerala
Subject : Electronic devices and circuits (3rd sem)
Course : BTech Engineering
Department: Computer Science and engineering (CS)
Semester: Third semester (s3)
University : MG university Kottayam kerala
Computer Organisation Previous Year Question Paper 2013 for Third Semester Computer Science
Computer Organisation 2013 Previous year Question Paper for BTech third Semester Computer Science under MG university
Free Download pdf Computer Organization (CO) Previous years Questions Papers 2013 November s3 (third semester) B.Tech Computer Science exam.
Subject : Computer Organisation (3rd semester)
Course : BTech Engineering
Department: Computer Science
Semester: Third semester (s3)
University : MG university Kottayam kerala
Free Download pdf Computer Organization (CO) Previous years Questions Papers 2013 November s3 (third semester) B.Tech Computer Science exam.
Subject : Computer Organisation (3rd semester)
Course : BTech Engineering
Department: Computer Science
Semester: Third semester (s3)
University : MG university Kottayam kerala
BTech Computer Science and Engineering Third Semester Syllabus for MG University
The syllabus for Third semester BTech Computer Science and Engineering under MG (Mahatma Gandhi) University is given below. You can also download the syllabus.
Click here to download as pdf
Click here to download as pdf
EN010301B ENGINEERING MATHEMATICS II (CS, IT)
Credits 4MODULE 1 Mathematical logic (12 hours)
Basic concept of statement, logical connectives, Tautology and logical equivalence - Laws of algebra of propositions - equivalence formulas- Tautological implications (proof not expected for the above laws, formulas and implications). Theory of inference for statements — Predicate calculus - quantifiers - valid formulas and equivalences -free and bound variables - inference theory of predicate calculus
Labels:
$studymat
,
BTech
,
Computer Science
,
Computer science and engineering
,
download
,
Engg.
,
engineering
,
MG University
,
pdf
,
s3
,
science
,
sem
,
semester
,
syllabus
,
third
,
third semester
BTech Civil Engineering Third Semester Syllabus for MG University Students
You can download the syllabus for third semester civil engineering under MG (Mahatma Gandhi) university, Kerala. Click here to Download as pdf.
credits:4
[Teaching Scheme: 2 hours lecture and 2 hours tutorial per week]
EN010301A ENGINEERING MATHEMATICS II
(common to all branches except CS & IT)credits:4
[Teaching Scheme: 2 hours lecture and 2 hours tutorial per week]
MODULE 1: Vector differential calculus ( 12 hours)
Scalar and vector fields-gradient -physical meaning-directional derivative-divergence and curl-physical meaning-scalar potential conservative field-identities-simple problems.
Labels:
$studymat
,
3rd
,
BTech
,
civil
,
Engg.
,
engineering
,
Kerala
,
Mahatma Gandhi
,
MG University
,
pdf
,
s3
,
sem
,
semester
,
syllabus
,
third
C and C++ Program for Swapping Two Numbers Without Third Variable
This post contains C and C ++ programs for swapping two given numbers without using any temporary variable. Only the two variables are required, not a third.
C Program
C Program
#include<stdio.h> void main() {
Labels:
$ccpp
,
c
,
C++
,
interchange
,
number swap
,
numbers
,
program
,
source code
,
swap
,
swapping
,
temporary
,
third
,
variable
,
without
C and C++ swapping numbers
The following are C and C++ programs to swap the values of two variables using a third variable.
C Program:
C Program:
#include<stdio.h> void main() { int x,y,temp; printf("Enter the value of xand y\n"); scanf("%d%d", &x, &y); printf("Before Swapping\n x= %d\n y = %d\n",x,y); temp = x; x= y; y = temp; printf("After Swapping\n x= %d\ny= %d\n",x,y); }
Subscribe to:
Posts
(
Atom
)