Sunday, 19 January 2020
Sunday, 30 June 2019
Tuesday, 14 May 2019
UCEED 2019
UCEED is a design aptitude test. Aptitude tests assume that individuals have inherent strengths and weaknesses, and are naturally inclined toward success or failure in certain areas based on their inherent characteristics. It is being conducted for admission to the Bachelor of Design (B. Des.) programmes at IIT Bombay, IIT Guwahati, IIT Hyderabad, and IIITDM Jabalpur are done through the Undergraduate Common Entrance Exam for Design (UCEED). Students who have passed Class XII (or equivalent) in 2018 or appearing in 2019 in ANY STREAM (Science, Commerce, or Arts & Humanities), are eligible to appear for UCEED 2019.
Important Dates:
- Start date for Online Registration - 9th October, 2018
- Last date for Online Registration with regular fee - 14th November, 2018
- Last date for Online Registration with late fee - 20th November, 2018
- Start date for Admit Card downloading 1st January, 2019 onwards
- Last date for rectification of discrepancies in the admit card - 5th January, 2019
- UCEED 2019 Examination Saturday - 19th January, 2019
- Release of Draft Answer Key - 25th January, 2019
- Last date for sending Comments about Draft Answer Key - 31st January, 2019
- Declaration of result 1st March, 2019
- Start date for Score Card downloading - 1st March, 2019
- Application for B. Des. programme - 8th to 30th June 2019
- Seat allotment round 1 - 4th July, 2019
- Seat allotment round 2 - 11th July, 2019
- Seat allotment round 3 - 15th July, 2019
Syllabus:
VISUALIZATION AND SPATIAL ABILITY
Pictorial and diagrammatic questions to test, understanding of transformation and/or manipulation of 2D shapes and 3D objects and their spatial relationships, knowledge of practical and everyday mechanical and scientific concepts.
OBSERVATION AND DESIGN SENSITIVITY
Ability to detect concealed properties in ordinary things, people, situations, and events, and thinking critically about them. Applying attention to certain details, analysing, reasoning, classifying, inferring and predicting. Ability to discern subtle differences in visual properties and aesthetic outcomes.
ENVIRONMENTAL AND SOCIAL AWARENESS
General awareness of environmental factors such as climate, population, water, vegetation, pollution, weather, natural resources etc., and their implications on the design of products, images, infrastructure and environment. Awareness of social and cultural connection with design, history of the designed artefact, and socially responsible and environmentally sustainable design responses. History of art, sculpture and literature.
ANALYTICAL AND LOGICAL REASONING
Ability to look at information, be it qualitative or quantitative in nature, and discern patterns within the information. Ability to weigh opinions, arguments or solutions against appropriate criteria. Ability to check for hidden bias or hidden assumptions and whether evidence and argument support conclusions. Ability to use logic and structured thinking to deduce from a short passage, which of a number of statements is the most accurate response to a posed question. Data Interpretation, brainteasers, and patterns.
LANGUAGE AND CREATIVITY
Ability to understand and use Standard English. Reading comprehension, knowledge of English grammar. Ability to think creatively in terms of alternatives, ability to distinguish innovative options and think out of the box.
DESIGN THINKING AND PROBLEM SOLVING
Ability to use visual analogies, metaphors, signs and symbols. Ability to understand complexity, identify problem, generate alternatives, evaluate options and select solutions.
UCEED Qualifying Examination Details
Contact Details:
Chairman
JEE (Advanced)-UCEED-CEED 2019
IIT Bombay, Powai, Mumbai 400076
Email: uceed@iitb.ac.in
Phone: +91-22-2576 4063/9093/9094
Fax: +91-22-2572-0305
Sunday, 28 April 2019
Sunday, 31 August 2014
C Practical Section 8
36. Accept a Character from user and check if it is a lower case to convert yet into upper
case and vise versa.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
char ch, a;
clrscr();
printf("Enter any character");
scanf("%c", & ch);
if(ch>= 65 && ch<=91)
{
a = ch+32;
printf("Your character is %c", a);
}
else
{
a= ch-32;
printf("Your Character is %c", a);
}
getch();
}
_________________________________________________________________________________
37.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
int lower, upper;
printf("Enter the lower & upper limit");
scanf("%d%d", & lower, & upper);
while(lower<=upper)
{
printf(%d\t", lower);
lower++;
}
getch();
}
_________________________________________________________________________________
38. Accept a Number from user between 1 to 5 and print it in words.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
int num;
printf("Enter the Number between 1 to 5");
scanf(%d", & num);
if(num == 1)
printf("One");
else if(num == 2)
printf("Two");
else if(num == 3)
printf("Three");
else if(num == 4)
printf("Four");
else if(num == 5)
printf("Five");
else
printf("Number is out of range");
getch();
}
_________________________________________________________________________________
39. Write a Program to enter radius in any circle and find out diameter, area and circumference.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
float r,d,a,c;
const float pi=3.14;
printf("Enter Radius for the circle");
scanf("%f", &r);
d=2*r;
printf("Diameter is %f",d);
a=pi*r*r;
printf("Area of Circle is %f", a);
c=2*pi*r;
printf("Circumference is %f", c);
getch();
}
_________________________________________________________________________________
40. Write a Program to find simple Interest.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
float p=10000, r=2, t=2;
float si;
clrscr();
si=(P*R*T)/100;
printf("Simple Interest is %f", si);
getch();
}
*********************************************************************************
case and vise versa.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
char ch, a;
clrscr();
printf("Enter any character");
scanf("%c", & ch);
if(ch>= 65 && ch<=91)
{
a = ch+32;
printf("Your character is %c", a);
}
else
{
a= ch-32;
printf("Your Character is %c", a);
}
getch();
}
_________________________________________________________________________________
37.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
int lower, upper;
printf("Enter the lower & upper limit");
scanf("%d%d", & lower, & upper);
while(lower<=upper)
{
printf(%d\t", lower);
lower++;
}
getch();
}
_________________________________________________________________________________
38. Accept a Number from user between 1 to 5 and print it in words.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
int num;
printf("Enter the Number between 1 to 5");
scanf(%d", & num);
if(num == 1)
printf("One");
else if(num == 2)
printf("Two");
else if(num == 3)
printf("Three");
else if(num == 4)
printf("Four");
else if(num == 5)
printf("Five");
else
printf("Number is out of range");
getch();
}
_________________________________________________________________________________
39. Write a Program to enter radius in any circle and find out diameter, area and circumference.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
float r,d,a,c;
const float pi=3.14;
printf("Enter Radius for the circle");
scanf("%f", &r);
d=2*r;
printf("Diameter is %f",d);
a=pi*r*r;
printf("Area of Circle is %f", a);
c=2*pi*r;
printf("Circumference is %f", c);
getch();
}
_________________________________________________________________________________
40. Write a Program to find simple Interest.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
float p=10000, r=2, t=2;
float si;
clrscr();
si=(P*R*T)/100;
printf("Simple Interest is %f", si);
getch();
}
*********************************************************************************
C Practical Session 7
31. The Program that accept a number from the user and will printf whether it is positive
or negative.
#include<stdio.h>
#include<conio.h>
Void main()
{
int num;
printf("\n Enter any Number:");
scanf("%d", & num);
if(num<0)
printf("\n Number is a Negative Number");
else
printf("\n Number is a Positive Number");
getch();
}
_________________________________________________________________________________
32. Write a Program calculates the average of the non-negative in list of n Numbers.
#include<stdio.h>
#include<conio.h>
Void main()
{
int n, i, avg;
float x, average, sum;
avg = 0;
sum = 0.0;
printf("How many numbers?\n");
scanf("%d", &n);
for(i=1; i<=n; ++i)
{
printf("x= ");
scanf("%&", &x);
if(x<0)
continue;
sum ++ = x;
++ avg;
}
average = sum/avg;
printf("\n The Average is %f\n", average);
getch();
}
_________________________________________________________________________________
33. Example of Goto Statement.
#include<stdio.h>
#include<conio.h>
#include<math.h>
Void main()
{
double r,y;
int count=1;
printf("Enter the five real Numbers:");
read;
printf("%d", &x);
if(x<0)
printf("Number is Negative");
else
{
y = sqrt(x)
}
printf("%d",y);
count++;
if(count<=5)
goto read;
printf("The Five Numbers square root is ended");
getch();
}
_________________________________________________________________________________
34. Write a Program to accept 10 numbers from the user and will print the total number of
positive, total number of negative and zero input by the user.
#include<stdio.h>
#include<conio.h>
Void main()
{
int num, p=n=z=0,i;
printf("\n Enter any ten numbers:\n");
for(i=1; i<=10; ++i)
{
scanf(%d", & num);
if(num>0)
++p;
else if(num<0)
++n;
else
++z;
}
printf("\n Total no. of Positive=%d", p);
printf("\n Total no. of Negative=%d", n);
printf("\n Total no. of Zeros=%d", z);
getch();
}
_________________________________________________________________________________
35. Write a Program to reads a character from the keyboard and print whether it is vowel or
not vowel.
#include<stdio.h>
#include<conio.h>
Void main()
{
char ch;
printf("%c", & ch);
if((ch == 'a') || (ch == 'A') || (ch == 'e') || (ch == 'E') || (ch == 'i') || (ch == 'I') || (ch == 'o') || (ch == 'O') || (ch == 'u') || (ch == 'U'))
printf("\n Letter (%c) is vowel", ch);
else
printf("\n Letter (%c) is vowel", ch);
getch();
}
*********************************************************************************
or negative.
#include<stdio.h>
#include<conio.h>
Void main()
{
int num;
printf("\n Enter any Number:");
scanf("%d", & num);
if(num<0)
printf("\n Number is a Negative Number");
else
printf("\n Number is a Positive Number");
getch();
}
_________________________________________________________________________________
32. Write a Program calculates the average of the non-negative in list of n Numbers.
#include<stdio.h>
#include<conio.h>
Void main()
{
int n, i, avg;
float x, average, sum;
avg = 0;
sum = 0.0;
printf("How many numbers?\n");
scanf("%d", &n);
for(i=1; i<=n; ++i)
{
printf("x= ");
scanf("%&", &x);
if(x<0)
continue;
sum ++ = x;
++ avg;
}
average = sum/avg;
printf("\n The Average is %f\n", average);
getch();
}
_________________________________________________________________________________
33. Example of Goto Statement.
#include<stdio.h>
#include<conio.h>
#include<math.h>
Void main()
{
double r,y;
int count=1;
printf("Enter the five real Numbers:");
read;
printf("%d", &x);
if(x<0)
printf("Number is Negative");
else
{
y = sqrt(x)
}
printf("%d",y);
count++;
if(count<=5)
goto read;
printf("The Five Numbers square root is ended");
getch();
}
_________________________________________________________________________________
34. Write a Program to accept 10 numbers from the user and will print the total number of
positive, total number of negative and zero input by the user.
#include<stdio.h>
#include<conio.h>
Void main()
{
int num, p=n=z=0,i;
printf("\n Enter any ten numbers:\n");
for(i=1; i<=10; ++i)
{
scanf(%d", & num);
if(num>0)
++p;
else if(num<0)
++n;
else
++z;
}
printf("\n Total no. of Positive=%d", p);
printf("\n Total no. of Negative=%d", n);
printf("\n Total no. of Zeros=%d", z);
getch();
}
_________________________________________________________________________________
35. Write a Program to reads a character from the keyboard and print whether it is vowel or
not vowel.
#include<stdio.h>
#include<conio.h>
Void main()
{
char ch;
printf("%c", & ch);
if((ch == 'a') || (ch == 'A') || (ch == 'e') || (ch == 'E') || (ch == 'i') || (ch == 'I') || (ch == 'o') || (ch == 'O') || (ch == 'u') || (ch == 'U'))
printf("\n Letter (%c) is vowel", ch);
else
printf("\n Letter (%c) is vowel", ch);
getch();
}
*********************************************************************************
C Practical Session 6
26. Write a Program to find Factorial of any number (from for loop).
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
int i, f=1, n;
printf("Enter any Number:");
scanf("%d",&n);
for(i=1; i<=n; i++)
{
f = f*i;
}
printf("Factorial is : %d",f);
getch();
}
_________________________________________________________________________________
27. Accept a Number from user and calculate its factorial (while loop).
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
int n,num;
long fact=1;
printf("Enter the Number:");
scanf("%d", &n);
num=n;
if(n<0)
printf("No Factorial of Negative Number\n");
else
{
while(n>1)
}
fact*=n;
n--;
}
printf("Factorial of %d = %1d\n", fact);
}
getch();
}
_________________________________________________________________________________
28. Write a Program to Print the Feboniccy series.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
int f=0, s=1, a=0, n,i;
clrscr();
printf("Enter any number:");
scanf("%d", s);
for(i=1; i<=n; i++)
{
a=f+s;
printf("%d",a);
f=s;
s=a;
}
getch();
}
_________________________________________________________________________________
29. Write a Program to check the given year is leap year or not.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
int y;
printf("Enter Any Year:");
scanf("%d", &y);
if(y%u == 0)
{
printf("It is Leap Year");
}
else
{
printf("Not a Leap Year");
}
getch();
}
_________________________________________________________________________________
30. Write a Program to find the difference of two date in years months and days. Assume that
the dates are entered in valid range and that the first date falls before the second date.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
int d1, d2, d, m1, m2, m, y1, y2, y;
printf("Enter first date (dd/mm/yyyy):");
scanf("%d%d%d", &d1, &m1, &y1);
printf("Enter second date (dd/mm/yyyy):");
scanf("%d%d%d", &d2, &m2, &y2);
if(d2<d1)
{
if(m2 == 3)
{
if(y2%4 == 0 && y2%100 != || y2%400 == 0)
d2 = d2+29;
else
d2 = d2+28;
}
else if(m2 == 5 || m2 == 7 || m2 == 10 || m2 == 12)
d2 = d2+30;
else
d2 = d2+31;
m2 = m2-1;
}
if(m2<m1)
{
y2 = y2-y1;
m2 = m2+12;
}
y=y2-y1;
m=m2-m1;
d=d2-d1;
printf("Difference of the Two dates are:");
printf("%d years %d months %d days\n"); y,m,d);
getch();
}
*********************************************************************************
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
int i, f=1, n;
printf("Enter any Number:");
scanf("%d",&n);
for(i=1; i<=n; i++)
{
f = f*i;
}
printf("Factorial is : %d",f);
getch();
}
_________________________________________________________________________________
27. Accept a Number from user and calculate its factorial (while loop).
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
int n,num;
long fact=1;
printf("Enter the Number:");
scanf("%d", &n);
num=n;
if(n<0)
printf("No Factorial of Negative Number\n");
else
{
while(n>1)
}
fact*=n;
n--;
}
printf("Factorial of %d = %1d\n", fact);
}
getch();
}
_________________________________________________________________________________
28. Write a Program to Print the Feboniccy series.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
int f=0, s=1, a=0, n,i;
clrscr();
printf("Enter any number:");
scanf("%d", s);
for(i=1; i<=n; i++)
{
a=f+s;
printf("%d",a);
f=s;
s=a;
}
getch();
}
_________________________________________________________________________________
29. Write a Program to check the given year is leap year or not.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
int y;
printf("Enter Any Year:");
scanf("%d", &y);
if(y%u == 0)
{
printf("It is Leap Year");
}
else
{
printf("Not a Leap Year");
}
getch();
}
_________________________________________________________________________________
30. Write a Program to find the difference of two date in years months and days. Assume that
the dates are entered in valid range and that the first date falls before the second date.
Answer :
#include<stdio.h>
#include<conio.h>
Void main()
{
int d1, d2, d, m1, m2, m, y1, y2, y;
printf("Enter first date (dd/mm/yyyy):");
scanf("%d%d%d", &d1, &m1, &y1);
printf("Enter second date (dd/mm/yyyy):");
scanf("%d%d%d", &d2, &m2, &y2);
if(d2<d1)
{
if(m2 == 3)
{
if(y2%4 == 0 && y2%100 != || y2%400 == 0)
d2 = d2+29;
else
d2 = d2+28;
}
else if(m2 == 5 || m2 == 7 || m2 == 10 || m2 == 12)
d2 = d2+30;
else
d2 = d2+31;
m2 = m2-1;
}
if(m2<m1)
{
y2 = y2-y1;
m2 = m2+12;
}
y=y2-y1;
m=m2-m1;
d=d2-d1;
printf("Difference of the Two dates are:");
printf("%d years %d months %d days\n"); y,m,d);
getch();
}
*********************************************************************************
Popular Posts
-
26. Write a Program to find Factorial of any number (from for loop). Answer : #include<stdio.h> #include<conio.h> Void m...
Text Widget
Pages
Blog Archive
Powered by Blogger.
Text Widget
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation test link ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate another link velit esse cillum dolore eu fugiat nulla pariatur.
Duis aute irure dolor in reprehenderit in voluptate another link velit esse cillum dolore eu fugiat nulla pariatur.
No one has ever become poor by giving, Please Donate
About Me
Contact Form
Contact Us
Blog Archive
Search This Blog
Labels
- C Practical (9)
- C++ Practical (12)
- Computer Theory (26)
- Exams (1)
- Keyboard Shortcut Keys (14)
- Photo Gallery (2)
Unordered List
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
- Aliquam tincidunt mauris eu risus.
- Vestibulum auctor dapibus neque.
Theme Support
Need our help to upload or customize this blogger template? Contact me with details about the theme customization you need.
Site Links
About
Hello, my name is Jack Sparrow. I'm a 50 year old self-employed Pirate from the Caribbean.
Learn More →
Follow on Facebook
Follow on Facebook
Featured
Site Links
Copyright ©
Geniusbhai | Powered by Blogger
Design by Flythemes | Blogger Theme by NewBloggerThemes.com