Explain the significance of programming and of using pseudocode statements and flowcharts
programming is very important in modern technology.without programming the technology never be updated.
we all are talking with others around the world and connect the people outside of country and within the country people.
programming contains line by line instructions.each instructions says which kind of operation need to be performed.
programming is nothing but sequential of instructions.the scientific research centers such as NASA,ISRO calculate the accuracy values based on the programming.
for basic example we need to calculate sum of two numbers easy easy when we calculate sum of 3numbers,4 numbers,5,numbers and N numbers it is very difficult thing.if we solve it take more time.but by using programming we get the solution fraction of seconds.
pseudo code for sum of two numbers:
start
1)take number one from user (n1)
2)take number two from user(n2)
3)perform the addition operation (n1+n2)
4)n1+n2 output sum of two numbers
end
flowchart:

#another example sum of n numbers
pseudo code:
start
1)take N number
2)initialize i with 1 and sum with 0 and count with 0
3)iterate the while loop until not equal to count
4)if it satisfied go to step 5 else go to step 8
5)sum=sum+i
6)count=count+1
7)i=i+1
8)print sum
end
#flowchart

like that pseudo and algorithms are present in the programming language
take complex circuits contain lot of wires if we want fix the wires lot of space occupy the hardware.when the logic is simple need less space on hardware we used programming,based on the flow of control of the program the circuit will work.
so programming language is very important in daily life and updated and present technology.
Explain the significance of programming and of using pseudocode statements and flowcharts
What it is the better to use? Pseudocode? Flowcharts? Why?
Compare pseudocode and flowcharts for designing computer programs, and discuss the advantages and disadvantages of each.
Which one of the following statements is FALSE? Pseudocode is a high-level programming language. C++ and Java are 3GLs – procedural languages. SQL is 4GL – non-procedural language. Assembly language is 2GL – low level language. 5GLs are much closer to natural languages.
1. Write the algorithm pseudocode for the longest common subsequence problem using dynamic programming. What is its running time?
Which statement is true? a. Unless directed otherwise, the computer automatically executes C. statements one before the other. b. The sequence structure is essentially built into C. c. A flowchart is a pseudocode representation of an algorithm or a portion of an algorithm. d. Like pseudocode, flowcharts are useful for developing and representing algorithms, although flowcharts are preferred by most programmers. d. Like pseudocode, flowcharts are useful for developing and representing algorithms, although flowcharts are preferred by most programmers.
Computer programming
Q2(c). Differentiate between Algorithm and Pseudocode? (1 mark) Algorithm Pseudocode
A) Write the pseudocode for an algorithm using dynamic programming to solve the activity-selection problem based on this recurrence: c[i, j] = 0 if Si; = Ø max {c[i, k] + c[k,j] + 1} if Sij +0 ak eSij B) Analyze the running time (the time complexity) of your algorithm and compare it to the iterative greedy algorithm.
SOLVE THE PSEUDOCODE ONLY. PLEASE DO NOT CODE
IT.
PROGRAMMING LOGIC AND DESIGN.
JAVA.
Q.6.2 Using pseudocode, write the code that will perform the necessary file operations as described in the short scenario below: "During registration at a college, student's details will be captured by a staff member and written to a file called "student Details.dat". The following student details will be captured: name, surname, student Number, registered Course. The staff member will be prompted for the student details. After...
java programming: Convert the following PSEUDOCODE into a java program. For this problem I'm giving you the pseudocode and you are writing the program, in later problems you will write both the pseudocode and the java program. This means for this program pseudocode is NOT required. Pseudocode to convert to a java program: Create variables: speed, time and distance Store 20 in the variable speed Store 10 in the variable time Multiply speed * time and store the result in...
java programming: Convert the following PSEUDOCODE into a java program. For this problem I'm giving you the pseudocode and you are writing the program, in later problems you will write both the pseudocode and the java program. This means pseudocode is NOT required for this program. Pseudocode to convert to a java program: Create variables: force, area, and pressure Store 172.5 in the variable force Store 27.5 in the variable area Divide force by area and store the result in...