Posts

C Programming - Assignment 7

Image
 Assignment - 7 ------------------------------ There are total 9 question in this assignment. These questions are based on loops. You can use best logics to solve these questions.  Write programs to print the multiplication table of all the numbers between 1 and 10. Examples :           2 * 1 = 2           3 * 1 = 3          4 * 1 = 4          2 * 2 = 4           3 * 2 = 6          4 * 2 = 8          .............               ....                 ... ... ...  ..          .... .... ...                .......          2 * 10 = 20      3 * 10 = 30      4 * 10 = 40  Input...

C Programming - Assignment 6

 Assignment - 6 ------------------------------ Write a program to input two numbers and find the LCM Write a program to input Principal, rate and time and then calculate Simple Interest. Write a program to input Principal, Rate and Time and then calculate the compound interest. Write a program to input any digit number and then find the sum of only those digits which are even. Write a program to enter any digit number and then find the difference of the sums of even and odd digits Write a program to input two numbers and multiply them without using multiplication operator. Write a program to input two numbers and divide one number by another without using division operator. Write a program to input two limits and then find the sum of all the values between those limits Write a program to input two limits and then find the sum of the all the even values. Write an interactive program which asks for choice:  Addition Subtraction Multiplication Division      ...

Responsive Web Designing

Image
  Understanding Responsive Web Design (RWD) R esponsive  W eb  D esign is an approach to web design which is aimed at : Crafting sites to provide an optimal viewing and interaction experience Easy reading and navigation with a minimum resizing, panning and scrolling We may see the below snapshot which shows the same web site in different devices (like desktop, tab and mobile phone): History  The journey of Responsive Web Design is seen from the old days. This is traced in phase as :  Fixed-Width Design  Mobile Revolution Responsive Web.                     In case of Fixed-Width Design the websites were specially designed to fit well on most of the desktop screens. Usually the monitors were 800 x 1024 pixels wide. Gradually the monitors with other sizes also started appearing. This was now a problem and the designers had to work for all the different types of screen sizes.Gradually people started hearing abo...

Introduction to Programming Language

Image
 

C Programming - Assignment - 5

 Assignment - 5 ------------------- Write a program to input a number and print it’s all the factor Write a program to input a number and print all its non factors Write a program to input a number and count the number of factors of the number Write a program to input a number and check it is a prime number or not Write a program to input a number and print its multiplication table. For example if the number is 2 , multiplication table would be 2, 4, 6, 8, 10, 12, 14, 16, 18 , 20 Write a program to input a number and check whether the number is a perfect number or no Write a program to input a number and find the difference of the sums of its factors and non factors. Write a program to input a three digit number and find the sum of the digits [ say n= 456 then answer : 15 ] Write a program to input any digit number and find the sum of the digits. Write a program to input any digit number and then reverse the digit [ say n=567 then y=765] Write a program to input the base and power ...