Create a program that will ask the user to input 9 integer numbers and display its vertical and horizontal sum. The numbers should be encoded in a 3 rows and 3 columns manner. After the user entered each set of numbers in a row, the horizontal sum of the set of numbers should automatically be shown.
Write a C Program to calculate the Average of an array elements where the elements are received as input.
Write a C program to input number from user and check number is palindrome or not using while loop.
Looping a number and taking away each digit of it is so much fun, but I wanted to try out a much more complex task: getting the largest digit among them all.
Think you can handle the job?
Instructions:
Input
A line containing an integer.
214
Output
A line containing an integer.
4
1. What do you mean by Program? Briefly describe the basic structure of C programs.
2. What is a token? Differentiate between a for loop and a while loop? What are it uses?
3. What is a data type? Differentiate between array and pointer. Write a program to interchange 2 variables without using the third one.
4. What is an array of pointers? Is it possible to have negative index in an array? Why is it necessary to give the size of an array in an array declaration?
5. Submit a Report "the impact of improving debugging skill on programming ability".
Suppose you have a main() with three local arrays, all the same size and type (say
float). The first two are already initialized to values. Write a function called
addarrays() that accepts the addresses of the three arrays as arguments; adds the contents
of the first two arrays together, element by element; and places the results in the
third array before returning. A fourth argument to this function can carry the size of the
arrays. Use pointer notation throughout; the only place you need brackets is in defining
the arrays.
Given a square matrix of size N*N, print the sum of upper and lower triangular elements. Upper Triangle consists of elements on the diagonal and above it. The lower triangle consists of elements on the diagonal and below it.
8.3) write a program for the development board that repeatedly counts:
• from 0 to 9 in 1-second increments
Credit card default risk is the chance that companies or Individuals will not be able to return the money lent on time.
Task
You are given relevant information about the customers of a company.
You are required to build a machine learning model that can predict if there will be credit card default.
Dataset description
The dataset folder contains the following files:
• train.csv: 45528 x 19
• test.csv: 1 1383 x 18
• sample_submission.csv: 5 x 2
The columns provided in the dataset are as follows:
https://docs.google.com/document/d/1sBFhLpOjK8dEMvkIuVAgBW6FV6evDLJ1XrVbz_qoJFM/edit?usp=sharing
Please Help