Who is the Interim Chair for the CIS Department?
What is Interim Chair, Dr. Edward Jones
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?
Print out a "Greetings!" message (using C++)
#include<iostream>
using namespace std;
int main()
{
cout<<"Greetings!";
return 0;
}
Output: Greetings!
Finish this statement.
I represent.....
Florida Agricultural and Mechanical University. October 3, 1887. What?
3) Who founded Apple Computer?
A) Stephen Fry
B) Bill Gates
C) Steve Jobs
D) Stephen Hawking
C) Steve Jobs
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
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
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
FAMU's football stadium is named after
Jubie Bragg, a professor who co-founded the school's football team in 1904.
4) Which of these is not a peripheral, in computer terms?
A) Keyboard
B) Monitor
C) Mouse
D) Motherboard
Answer: Motherboard
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
I teach CNT2000
Who is Jon De Goicoechea, III
This is a single-line comment
This is a multi-line comment
//
/**/
Who is the president of FAMU?
Larry Robinson, Ph.D. or Dr. Larry Robinson
What interview response technique should you use for the following question:
STAR interview response technique
Who is the department's graduate contact?
Who is Mrs. Myra Gurley
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
Use the correct keyword to get user input, stored in the variable x:
int x;
cout << "Type a number: ";
_____ >> ______;
cin >> x;
Who was the first president of FAMU?
Thomas D. Tucker
What Is The Smallest Unit Of Measurement In A Computer
Bit
Dr. Debra Lewis, and Miss Whitney White
In 2020, which professor developed research on "Development of Cybersecurity Lab Exercises for Mobile Health"?
Who is Dr. Liu
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";
}
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
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.