Identify the compiler errors and state what is wrong with the code.

```
#include
using namespace std;
Class Birds
{
private:
string name;
float size;
public:
Birds();
void SingASong();
}
void SingASong()
{
```


```
#include
using namespace std;
Class Birds << should be class not Class
{
private:
string name;
float size;
public:
Birds();
void SingASong();
} << need a ; here
void SingASong() << need a Bird:: here
{
```

Computer Science & Information Technology

You might also like to view...

What will the following code display?

``` String input = "99#7"; int number; try { number = Integer.parseInt(input); } catch(NumberFormatException ex) { number = 0; } catch(RuntimeException ex) { number = 1; } catch(Exception ex) { number = -1; } System.out.println(number); ``` a. -1 b. 0 c. 1 d. 99

Computer Science & Information Technology

Webpage documents that use an HTML extension can be imported._________________________

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Custom slide layouts cannot be renamed.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

_______ is the utility used by the ProDiscover program for remote access.

A. ?SubSe7en B. ?l0pht C. ?PDServer D. ?VNCServer

Computer Science & Information Technology