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

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

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

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

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

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

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


EN010301B ENGINEERING MATHEMATICS II (CS, IT)

Credits 4


MODULE 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

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.


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.

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
#include<stdio.h>
void main()
{

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:
#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);
}