Html,Css,Javascript program for Bookmark Maker
Please Refer to this below image.
https://assets.ccbp.in/frontend/content/dynamic-webapps/bookmark-maker-output.gif
I want an exact output as in this Image link with proofs & use bootstrap 4.5
Instructions:
Warning
Html,Css & javascript program for Time Converter
Please Refer to this below image.
https://assets.ccbp.in/frontend/content/dynamic-webapps/time-converter-output.gif
I want an exact output as in this image link with proof and use bootstrap 4.5
Instructions:
Note
Using the above code add a method that takes in three arrays, one for student names, one for final test marks and a last one for assignment mark. The method should then calculate the students qualifying mark (a student needs 50 or more to qualify) using the following weights: 40% of the test and 60% of the assignment, finally print out whether the person qualified or not. [10]
Use the below format for you print out:
-------- ------- ---------------- ------- ------------------
King 59 85 75 Allowed
John 52 45 48 Denied
Create a program with three methods/functions, The first one takes in n which is the size of an array then creates and populate the array with student names, the second method takes in n which is the size of an array then creates and populate n by 3 array with student marks(The three marks are for test 1 - 3) and finally a method that takes in the two arrays, calculates the final mark of all test and print out the results as indicated below: The first method should return and array of names and the second should return an array all test marks(i.e. 2d array with 3 columns). The third method in addition should also return an array for all the final marks
Name Test 01 Test 02 Test 03 Final
-------- --------- --------- --------- ---------
Gerry 55 55 55 55
Create a program with a method that takes a single character and returns true if the character is a vowel otherwise return false.
Write a java program that accepts a given n, then create a 2D array with n rows and n columns. Then for each cell the value should be n+row to the power column. For example if we talk of n=5, then array[0][0] =(5+0)0 = 1. Print out all the values in the array created.
a)What is project management?
b) Define information systems? Name four stakeholders of an IS project
c) What are the phases of a system development cycle? Give an example of an
activity performed under each phase.
d] Who is project leader? Give an example of a tool use in project management to plan, and schedule time relationships.
2. Squares
by CodeChum Admin
Instructions:
Using a do...while() loop, continuously scan for random integers that will be inputted by the user and print out its square, separated in each line.
Once the inputted value is 0, it will still print out its square value but should then terminate the loop afterwards. Use this concept in making your loop condition.
Instructions
Using a while() loop, continuously scan for random integers that will be inputted by the user and print out its square, separated in each line.
If the inputted integer is 0, it will still print out its square value but should then terminate the loop afterwards. Use this concept as your looping condition and don't forget to declare and initialize the variable you will be using for your loop condition and make sure the initial value will not make the condition false at first.
Input
Multiple lines containing an integer.
2
6
Output
Multiple lines containing an integer.
4
36
a) What is Relational Database Management Systems (DBMS)? Give three examples of
DBMS
b) The entity “Student” has attributes such as Student ID, First Name, Last Name. Give three examples of other entities and list three attributes for each one of them.
c) Provide a unique attribute you will use to identify each entity you listed for Qb
d) Provide five IT roles you would like to endorse in your future company.