CIS Dept Facts
Professor Who?
Crazy Coding C++
FAMU Represent
Tech Talk
100

Who is the Interim Chair for the CIS Department?

What is Interim Chair, Dr. Edward Jones

100

Which professor is a "motivated professional with a bachelor's in computer and Information Systems obtained August 2008 and a master's in software engineering science received in August 2015 both from FAMU within the CIS Department"?

Who is Miss Jacobs?

100

Print out a "Greetings!" message (using C++)

#include<iostream> 

using namespace std; 

int main() 

{    

      cout<<"Greetings!";   

     return 0;

 }
Output: Greetings!

100

Finish this statement.

I represent.....

Florida Agricultural and Mechanical University. October 3, 1887. What?

100

3) Who founded Apple Computer?
A) Stephen Fry
B) Bill Gates
C) Steve Jobs
D) Stephen Hawking

C) Steve Jobs

200

Name five Department of CIS student organizations.

What is 

Association for Computing Machinery (ACM),

Association for Computing Machinery Committee on Women (ACM-W) 

Computer & Information Sciences Mentoring Organization (CISMO)

Information Systems Audit and Control Association (ISACA) Student Group (ISG)

Secured Rattlers

200

Which professor received a Master of Technology and Ph.D. degrees, both in computer science, from Andhra University and Indian Institute of Technology Madras, respectively. Their research interests include Artificial Intelligence with a special focus on knowledge representation, reasoning, and intelligent information retrieval, and software engineering.  

Who is Dr. Prasad

200

Create a program that adds two integers (2 and 6). (Using C++)

#include<iostream>

using namespace std; 

int main() 

{    

          int a = 2;   

          int b = 6;    

           cout<<a+b;    

      return 0; 

}
Output: 8

200

FAMU's football stadium is named after 

Jubie Bragg, a professor who co-founded the school's football team in 1904.

200

4) Which of these is not a peripheral, in computer terms?
A) Keyboard
B) Monitor
C) Mouse
D) Motherboard


Answer: Motherboard

300

Name two certificates and/or minors the CIS department offers.

What are

Cybersecurity, Certificate

Computer Science, Minor

Computer Information Systems, Minor

Information Technology, Minor

Cybersecurity, Minor

300

I teach CNT2000

Who is Jon De Goicoechea, III

300

 This is a single-line comment
 This is a multi-line comment 

//

/**/

300

Who is the president of FAMU?

Larry Robinson, Ph.D. or Dr. Larry Robinson

300

What interview response technique should you use for the following question:

  • Tell me about the most recent project you worked on. What were your responsibilities?

 STAR interview response technique

400

Who is the department's graduate contact?

Who is Mrs. Myra Gurley 

400

Which professor started their career with IBM in 2000 and left in 2012 as an IT Project Manager.  Then started teaching at a local community college in North Carolina and decided to return home to teach here at FAMU?

Who is Dr. McQueen

400

Use the correct keyword to get user input, stored in the variable x:


int x; 

cout << "Type a number: ";
_____ >> ______; 

cin >> x;

400

Who was the first president of FAMU?

Thomas D. Tucker

400

What Is The Smallest Unit Of Measurement In A Computer

Bit

500
Name the two advisors over the CIS currently.

Dr. Debra Lewis, and Miss Whitney White

500

In 2020, which professor developed research on "Development of Cybersecurity Lab Exercises for Mobile Health"?

Who is Dr. Liu

500

Use a for loop to print "Yes" 5 times:


____ (int i = 0; i < 5; ____ ) 

    cout << ___ << "\n"; 

}

for (int i=0; i < 5; i++)

{

    cout << "Yes" << "\n";

}

500

True or False.

In 1909, FAMU's name was not changed from The State Normal College for Colored Students to Florida Agricultural and Mechanical College for Negroes (FAMC)

False

500

Brain of the computer

CPU (central processing unit)

The CPU is referred to as the brain of the computer. It consists of a control unit and the arithmetic and logic unit. It is responsible for performing all the processes and operations.