suppose list is an array of five components of type int. what is stored in list after the following c++ code executes? for (int i = 0; i < 5; i++) { list[i] = 2 * i + 5; if (i % 2 == 0) list[i] = list[i] "-3;" }
Explain your own example of how you can use Java Math and String capabilities to find out something about a textual String object.
An international charitable organisation that works to conserve and protect endangered Bee species has approached you to develop a solution that will raise awareness and track the decreasing number of Bee species. The charitable organisation wants to encourage users to conserve and to take an interest in Bees and support its population. (a) Identify and describe two new emerging technologies which could be used to safe Bee species. (4 marks) (b) Discuss limitations of each technology that you identified in part (a). (2 marks) (C) Suppose that you are going to make a website to aware public about the conservation and protecting endangered Bee species. Explain the use of a suitable page structure with detail content for the website. (5 marks) (d) Write a sample Document Object Model of the home page. (2 marks)
Design and explain the following with the help of diagrams and
examples.
(a) Four-bit Synchronous Up counter.
(b) Four-bit Synchronous down counter
Write a C++ program to create a class Number, which contain static data member 'cnt' and member function Display()'. Display() should print number of times display operation is performed irrespective of the object responsible for calling Display().
atm managment system in sql
Write a java program using class called Rectangle and an object called rect. This class should have four members: two data members of type int with private access and two member functions with public access: set_values() and area().Set_values() to initialize the values of rectangle and area() to return the area of rectangle. Then finally write a main function to implement the above class.
. develop a java application that uses a class called person which has 2 functions: getdata() and putdata(). The getdata() prompts the user to enter his or her first name, last name and age, the putdata() displays on the screen the user first name last, name and age.
Write a program that asks a user to enter the size of a dynamic array that stores a list of integers. Create the dynamic array and a loop that allows the user to enter an integer value for each array element. Loop through the array, find the largest value in the array and output it, as well as its position in the array. Delete the memory allocated to your dynamic array before exiting your program
This program models a database of employees of a company. There are three kinds of
employees in the company: manager, scientist and laborers. The database stores a
name and an employee identification number of all employees, no matter what their
category. However, for manager, it also stores their title and golf club dues. For
scientists, it stores the number of articles they have published. Laborers need no
additional data beyond their names and numbers. All information to be obtained through
a member function getdata(). Information about each employee are to displayed
through a constant member function putdata(). Define appropriate classes, member
functions. Create an array of objects of each employee type (manager, scientist and
laborers separately). Your program should able to read information about each
employee type and display the same.