https://github.com/devendracollage/collage-flutter-solution
https://github.com/devendracollage/collage-flutter-solution
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/devendracollage/collage-flutter-solution
- Owner: DevendraCollage
- Created: 2024-06-22T13:10:00.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-25T05:38:36.000Z (almost 2 years ago)
- Last Synced: 2025-03-21T00:20:49.696Z (over 1 year ago)
- Language: Dart
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
1. Practical Lab-1
[Solution For Practical-Lab-1](https://github.com/DevendraCollage/Collage-Flutter-Solution/tree/main/lab_1_solution)
```
1. WAP to print your name in console.
2. WAP to Print addition of 2 number.
3. WAP to convert temperature from Fahrenheit to Celsius.
4. WAP to find percentage of 5 subject.
5. WAP that reads a number in meters, converts it to feet, and display the result.
6. Body Mass Index (BMI) is measure of health on weight. It can be calculated by taking your weight in kilograms and dividing by square of your height in meters. Write a program that prompts the user to enter a weight in pounds and height in inches and display the BMI.
Note: 1 pound=.45359237 Kg and 1 inch=0.254 meters.
```
2. Practical Lab-2
[Solution For Practical-Lab-2](https://github.com/DevendraCollage/Collage-Flutter-Solution/tree/main/lab_2_solution)
```
1. WAP to check whether the given number is positive or negative.
2. WAP to perform Addition, Subtraction, Multiplication, Division based on user choice using if, if..else..if, & switch.
3. WAP to find out largest number from given three numbers without using Logical Operator.
4. WAP to read marks of five subjects. Calculate percentage and print class accordingly. Fail below 35, Pass Class between 35 to 45, Second Class between 45 to 60, First Class between 60 to 70, Distinction if more than 70.
5. WAP to find out largest number from given 3 numbers using conditional operator.
6. WAP to make a Simple Calculator using switch...case
```
3. Practical Lab-3
[Solution For Practical-Lab-3](https://github.com/DevendraCollage/Collage-Flutter-Solution/tree/main/lab_3_solution)
```
1. WAP to print numbers between two given numbers which is divisible by 2 but not divisible by 3.
2. WAP to find factorial of the given number.
3. WAP to find whether the given number is prime or not.
4. WAP to print given number in reverse order.
5. WAP to print reverse string.
6. WAP program to calculate the sum of all positive even numbers and the sum of all negative odd numbers from a set of numbers. you can enter 0 (zero) to quit the program and thus it displays the result.
```
4. Practical Lab-4
[Solution For Practical-Lab-4](https://github.com/DevendraCollage/Collage-Flutter-Solution/tree/main/lab_4_solution)
```
1. WAP to calculate simple interest using method.
2. WAP to find maximum number from given two numbers using method.
3. WAP to generate Fibonacci series of N given number using method.
4. WAP to accept a number and check whether the number is prime or not. Use method name check (int n). The method returns 1, if the number is prime otherwise, it returns 0.
5. WAP to count number of even or odd number from an array of n numbers.
```
5. Practical Lab-5
[Solution For Practical-Lab-5](https://github.com/DevendraCollage/Collage-Flutter-Solution/tree/main/lab_5_solution)
```
1. WAP that prompts the user to enter 5 numbers, stores them in a List, and displays them in increasing order.
2. WAP to read 2 list and return list that contains only the elements that are common between them.
3. WAP that creates List with following value:“Delhi”, “Mumbai”, “Bangalore”, “Hyderabad” and “Ahmadabad” Replace “Ahmadabad” with “Surat” in above List.
4. WAP to create and read phonebook dictionary.
5. WAP to find friends detail by their name using dictionary. (Create local dictionary and search from it using Map & Model Class).
6. WAP to accept n numbers in an array. Display the sum of all the numbers which are divisible by either 3 or 5.
```