Vignan_First_Year_Practice_Part_3_2023_24
- The Practice link Three (https://p.hck.re/yrZv ) will be conducted on 4th Dec 2023 to 11th Dec 2023.
- You are given 15 questions and 100 hours to complete them.
- Questions will be on Conditional statements. you can attempt it only in C language.
- When you the Start coding, please give your Roll No instead of Name.
- Please participate in the following
Hello First year students of Vignan, Complete Second part of Coding Assignments I_Can_Do_Coding_Part_3, this assignment will be available from 4nd Dec to 11th Dec 2023. The questions are very basic. When you start coding, please provide your Roll No instead of your Name. Please participate using the following
link: https://p.hck.re/yrZv
Vignan_First_Year_Practice_Part_3_2023_24
Recent videos
Hello First year students of Vignan, we are going to start Introduction_to_Coding Assignments. Please complete I_Can_Do_Coding_Part_One, this Assignment will be available from 28th Nov to 1st Dec 2023. The questions are very basic. When you start coding, please provide your Roll No instead of your Name. Please participate using the following link:
https://p.hck.re/zrQc
Teast-1
NPTEL Problem Solving Through Programming In C Week 12 : Programming Assignment 1-5
Week 12 : Programming Assignment 1
Write a program in C to find the factorial of a given number using pointers.
Private Test cases used for Evaluation | Status |
Test Case 1 | Passed |
Week 12 : Programming Assignment 2
Public Test Cases | Input | Expected Output | Actual Output | Status |
---|---|---|---|---|
Test Case 1 | 3
1
Santanu
700
2
Aparna
550
3
Vivek
900 | The Merit List is :\n
3 Vivek 900\n
1 Santanu 700\n
2 Aparna 550 | The Merit List is :\n
3 Vivek 900\n
1 Santanu 700\n
2 Aparna 550\n
| Passed after ignoring Presentation Error |
Week 12 : Programming Assignment 3
Public Test Cases | Input | Expected Output | Actual Output | Status |
---|---|---|---|---|
Test Case 1 | 5
200
300
500
100
400 | Largest element = 500.00 | Largest element = 500.00 | Passed |
Week 12 : Programming Assignment 4
Write a C program to find the sum of two 1D integer arrays ‘A’ and ‘B’ of same size and store the result in another array ‘C’, where the size of the array and the elements of the array are taken as input.
In the Test case the input is given as follows
5
10
20
30
40
50
1
2
3
4
5
So the output will be displayed as
Result is
11
22
33
44
55
Write the program accordingly. Use dynamic memory allocation.
Public Test Cases | Input | Expected Output | Actual Output | Status |
---|---|---|---|---|
Test Case 1 | 5
10
20
30
40
50
1
2
3
4
5 | Result is\n
11\n
22\n
33\n
44\n
55 | Result is\n
11\n
22\n
33\n
44\n
55\n
| Passed after ignoring Presentation Error |
Test Case 2 | 4
100
200
300
400
400
300
200
100 | Result is\n
500\n
500\n
500\n
500 | Result is\n
500\n
500\n
500\n
500\n
| Passed after ignoring Presentation Error |
NPTEL Problem Solving Through Programming In C Week 12 : Programming Assignment 1-5
File Uploading in PHP
File Uploading in PHP PHP allow you to upload any type of a file i.e. image, binary or text files.etc..,PHP has one in built global variab...