Font size
WorksheetsИКТ(131 rdticy)
Total questions: 131
Worksheet time: 1hrs 6mins
How do you make a cell reference absolute in Excel?
Using asterisks
Using dollar signs
Using percentage signs
Using hashtags
What is the purpose of testing a button in Slide Show mode?
To verify that the button performs the desired action
To change the button's design
To ensure the button is visible on all slides
To apply animations to the button
When is the 'Automatically' option for video playback in PowerPoint typically used?
When you want the video to play automatically when the slide containing it is displayed. When you want to pause the video
When you want to pause the video.
When you want to play the video in reverse.
When you want to start the video by clicking on it.
What is one benefit of using interactive elements like checkboxes and text fields in PowerPoint presentations?
They create a passive audience experience.
They make the information less relatable.
They make the information more tangible and relatable.
They reduce the need for audience engagement.
What advanced feature in PowerPoint allows you to sequence multiple actions triggered by a single click?
Action Chains
Sound Effects
Animation Pane
Hyperlinks
What is one of the primary advantages of using hyperlinks in PowerPoint presentations?
Increasing font size for readability
Reducing the number of slides
Enhancing slide transitions
Making the presentation more dynamic and interactive
What does the 'Close Master View' option allow you to do in PowerPoint?
Exit the 'Insert Hyperlink' dialog box
Exit the 'Slide Master' view and return to normal editing
Close the entire PowerPoint application
Delete all hyperlinks in the presentation
How can hyperlinks improve the interactivity of a PowerPoint presentation?
By changing the background color of the slides
By adding more slides to the presentation
By increasing the font size of the text
By allowing non-linear navigation between slides
In which mode should you test your buttons to ensure they function correctly?
Editing mode
Slide Sorter mode
Slide Sorter mode
Design mode
Slide Show mode
What types of actions can you assign to buttons in PowerPoint?
Slide transitions
Font changes
Sound effects
Going to a specific slide, playing a sound, running a program, or opening a hyperlink
What is an important consideration when designing buttons for your presentation?
Ensure they blend with the background
Use plain, non-customized shapes
Make them as distracting as possible
Align them with the overall theme
How can you control when a video or audio file starts playing in PowerPoint?
By clicking on it.
By clicking on it. Through the 'Playback' tab, selecting 'On Click', 'Automatically', or 'When Triggered'
You can't control the playback timing.
Only by using external media players.
What is one of the primary benefits of integrating media, such as video and audio, into PowerPoint presentations?
It can elevate the quality and engagement of the presentation..
That media only plays once.
That media is muted.
That media plays randomly.
What does automating media playback using the 'Animations' tab in PowerPoint ensure?
That media plays in sync with other slide elements.
That media only plays once.
That media is muted.
That media plays randomly.
What does it mean to trim a video in PowerPoint?
To adjust the video's playback duration.
To cut off the edges of the video.
To edit the video's content.
To adjust the volume of the video.
What is the 'Developer' tab used for in PowerPoint?
It provides design templates.
It controls the slideshow's timing.
It enables the insertion of interactive controls.
It allows you to create animations.
How can interactive elements, like surveys and options, benefit a PowerPoint presentation?
They can make the presentation shorter.
They increase the presentation's file size.
They can replace traditional slides.
They engage the audience and provide valuable insights.
What is the primary purpose of using radio buttons or dropdown lists in a PowerPoint presentation?
To enhance slide transitions
To play background music
To let the audience choose specific options
To add visual effects
What do interactive controls, such as forms and input fields, add to a PowerPoint presentation?
They increase the file size of the presentation.
They invite the audience to actively participate.
They make the presentation longer.
They make the information more abstract.
What is the primary purpose of using the WHERE clause in a SELECT statement?
To limit the number of rows returned
To filter rows based on specified conditions
To order query results
To retrieve all columns from a table
What should you be cautious about when using SQL commands like UPDATE and DELETE?
Commands can only be used on small databases
Commands may accidentally modify or delete more data than intended
Commands are irreversible and cannot be undone
Commands require advanced programming skills
What do actions in PowerPoint allow you to create?
Complex animations
Static images
Dynamic and responsive presentations
Audio-only presentations
What is the purpose of an action chain in PowerPoint?
To create a static presentation
To sequence multiple actions and create a flow of events
To make the presentation shorter
To add complex animations
What types of actions can you assign to objects in PowerPoint?
All of the above
Opening external files
Only hyperlinks to other slides
Launching websites
How can you access the Action Settings dialog box in PowerPoint?
By right-clicking on an object
From the 'Home' tab
In the 'View' tab
From the 'Insert' tab
How can you retrieve all columns from a table using the SELECT command?
SELECT table_name *;
SELECT * FROM table_name;
SELECT Columns FROM table_name;
SELECT All FROM table_name;
If you want to find the average price of books published after the year 2000, which SQL aggregate function should you use?
COUNT
AVG
SUM
MAX
Which logical operator in SQL allows you to combine multiple conditions where at least one condition must be true?
NOT
COUNT
OR
AND
Which SQL operator negates a condition in a query?
NOT
AND
SUM
AVG
Which of the following is a comparison operator in SQL?
COUNT
OR
AND
>
How would you correct the book title 'The Windy Day' to 'The Windy Night' in the 'Books' table using the UPDATE command?
UPDATE Books SET title = 'The Windy Night';
UPDATE Books SET title = 'The Windy Day' WHERE title = 'The Windy Night';
UPDATE Books WHERE title = 'The Windy Night' SET title = 'The Windy Day';
UPDATE Books SET title = 'The Windy Night' WHERE title = 'The Windy Day';
What is the main takeaway regarding using SQL commands for modifying and managing data?
SQL commands are irreversible
Commands should be used without verification
Testing commands on a sample database is a best practice
Commands are always safe to use without precautions
What does the WHERE clause in a SELECT statement allow you to do?
Filter rows based on specified conditions
Limit the number of rows returned in the result
Retrieve all columns from a table
Organize data in alphabetical order
If you want to order books by their titles in alphabetical order, which SQL command would you use?
SELECT * FROM Books ORDER BY ISBN;
SELECT * FROM Books ORDER BY author;
SELECT * FROM Books ORDER BY title;
SELECT * FROM Books ORDER BY publication_year;
If you want to insert a single row of data into a table, what SQL command structure should you use?
INSERT INTO (Database Essentials, Alex Smith, 2020, 1234567890123) Books (title, author, publication_year, ISBN);
INSERT INTO (Database Essentials, Alex Smith, 2020, 1234567890123) Books (title, author, publication_year, ISBN);
INSERT INTO (title, author, publication_year, ISBN) VALUES ('Database Essentials', 'Alex Smith', 2020, '1234567890123') Books;
INSERT INTO Books (title, author, publication_year, ISBN) VALUES ('Database Essentials', 'Alex Smith', 2020, '1234567890123');
What is the primary purpose of SQL in relational database management systems?
To create web applications
To manage hardware resources
To interact with and manipulate data
To design user interfaces
In SQL, how can you insert multiple rows of data into a table in a single command?
Separate each row's data with semicolons (;)`
Use the UPDATE command instead
Separate each row's data with commas and enclose all rows in parentheses
Use a separate INSERT INTO statement for each row
What are columns in an SQL table?
The details or attributes of the table
The data rows in the table
The constraints applied to the table
The unique identifiers for the table
Which SQL command allows you to change the major of a student named 'Aisha' in the 'Students' table?
UPDATE Students SET major='Mathematics' WHERE student_name='Aisha';
SELECT major FROM Students WHERE student_name='Aisha';
DELETE FROM Students WHERE major='Mathematics' AND student_name='Aisha';
INSERT INTO Students VALUES ('Aisha', 'Mathematics');
What do formulas in Excel always begin with?
A hashtag (#)
An equal sign (=)
A dollar sign ($)
A percentage sign (%)
What does the 'Insert Function Dialog Box' allow you to do?
Insert a new row or column
Insert a chart or graph
Insert a function and complete its arguments
Insert a pivot table
What does the CONCATENATE function in Excel do?
Splits a text string into multiple strings
Converts text to uppercase
Combines several text strings into one string
Removes spaces from text
What is a workbook in Excel?
A single worksheet
A collection of one or more worksheets
A single cell
A single column
Which tab is NOT one of Excel's eight main tabs?
Home
Insert
File
Data
What does BEDMAS stand for?
Brackets, Exponents, Division, Multiplication, Addition, Subtraction
Brackets, Exponents, Division, Multiplication, Subtraction, Addition
Brackets, Exponents, Addition, Subtraction, Division, Multiplication
None of the above
What is the top-left cell in an Excel worksheet referenced as?
Z1
A1
1A
0,0
How can you modify the cell's background color?
Click 'Home,' then 'Fill Color'
Click 'Insert,' then 'Background Color'
Click 'View,' then 'Background Color'
Click 'Data,' then 'Background Color'
How can you force Excel to perform calculations if the automatic process is delayed?
Click 'Formulas' tab and then 'Calculate Now'
Click 'Home' tab and then 'Calculate Now'
Click 'Data' tab and then 'Calculate Now'
Click 'View' tab and then 'Calculate Now'
What is Microsoft Excel primarily used for?
Video Editing
Spreadsheet Application
Web Browsing
Graphic Design
What is the purpose of the 'Live Preview' feature?
To show a real-time effect as you scroll through options
To preview a print layout
To preview a formula result
To preview a cell's border
What does the AutoSum command allow you to do?
Insert common formulas like Sum, Average, Count Numbers, Max, and Min
Insert hyperlinks
Insert text functions
Insert pivot tables
How can you efficiently create a formula for adding a range of cells from A1 to A10?
Manually type A1 + A2 + A3... + A10
Use the SUM function and select the range of cells
Use the AVERAGE function
Use the COUNT function
What does the DATE function in Excel return?
The day of the week
The sequential serial number representing a date
The month of the year
The year of a date
How can you force Excel to perform calculations if the automatic process is delayed?
Click 'Formulas' tab and then 'Calculate Now'
Click 'Home' tab and then 'Calculate Now'
Click 'Data' tab and then 'Calculate Now'
Click 'View' tab and then 'Calculate Now'
Which Excel function returns the left part of a text string based on the number of characters specified?
CONCATENATE
LEFT
RIGHT
LEN
What types of data does Excel support?
Alphanumeric text
Numerical values
Dates
All of the above
In which scenario would you use the HLOOKUP function?
Finding a specific name in a list
Looking up values in the first row of a table range
Making logical decisions based on criteria
Returning a cell value based on row and column numbers
What happens if the cell width is too small for the data?
Excel will automatically resize the cell
Excel will display hash symbols
Excel will truncate the data
Excel will change the font size
Where can you access Excel functions?
'fx' button
Home Tab
Insert Tab
Data Tab
What are the components inside the parentheses of a function called?
Variables
Parameters
Arguments
Operators
How do you use the CONCATENATE function to combine two text strings with a space in between?
=CONCATENATE(A1; B1)
=CONCATENATE(A1 + " " + B1)
=CONCATENATE(A1; " "; B1)
=CONCATENATE("A1 B1")
What does the status bar display?
Only the zoom level
Information about the workbook
Only the active cell
Only temporary results
What can you do in the backstage view?
Create a new workbook
Edit cell data
Add a new worksheet
Change cell formatting
Where can you find the option to insert shapes to create buttons in PowerPoint?
Home tab
Slide Show tab
Insert tab
Design tab
What advantage does understanding SQL provide when dealing with data?
It helps you avoid data altogether.
It allows you to ask vague questions about data.
It enables you to work with data efficiently and get precise answers.
It helps you create more data.
Why is understanding SQL important in today's world, according to the lecture?
To work with vast amounts of information
To become a software developer
To design databases
To become a librarian
Which tab in PowerPoint allows you to add actions to buttons?
Insert
Home
Animation
Design
What is the main advantage of using action chains in PowerPoint?
They create a static narrative.
They make the presentation more complex.
They guide the audience through a sequence of events, making the message more compelling.
They add complexity to individual slides.
Which tab in PowerPoint allows you to insert video and audio into your slides?
Design
Insert
Slide Show
Home
Which PowerPoint feature is described as the 'DNA' of your presentation and allows you to make changes that affect all associated slides?
Animation Pane
Slide Master
Slide Transitions
Slide Layouts
Which tab in PowerPoint allows you to access the 'Action Settings' dialog box?
'Home'
'View'
'Design'
'Insert'
What does SQL stand for?
Structured Query Language
System Query Language
Standard Query Language
Structured Query Library
Which of the following is NOT an option for sourcing video in PowerPoint?
'This Device'
'Stock Videos'
'Online Video'
'Stock Images'
What career fields benefit from SQL skills, as mentioned in the lecture?
Only medical fields
All fields except engineering
Data science, software development, and business analytics
Only art and humanities
Why might you use radio buttons or dropdown lists in a PowerPoint presentation?
To allow the audience to choose topics or directions
To add decorative elements to slides
To play audio files
To make the presentation more complex
What does the lecture emphasize about learning SQL?
It's only useful for librarians.
It's a difficult language to master.
It's a key to unlock the potential of working with data.
It's not relevant in today's job market.
What does the VLOOKUP function in Excel primarily do?
Search for values vertically in a table range
Search for values horizontally in a table range
Make logical comparisons between values
Perform flexible lookups using INDEX and MATCH
What does a well-structured table ensure in SQL databases?
Fast database backups
Efficient data retrieval
High database availability
Secure data storage
How can you access the 'Insert Hyperlink' dialog box in PowerPoint?
By clicking on the 'File' tab
By pressing the 'Alt' key
By right-clicking on a text or object and choosing 'Insert Hyperlink'
By using the 'Shift' key
What analogy is used to describe SQL's role in working with databases?
A chef in a kitchen
A librarian in a library
A musician composing a symphony
A teacher in a classroom
What does the UNIQUE constraint ensure in an SQL table?
Every row must have a unique identifier
No two rows in the table can have identical values
Every column must have a unique value
The table's name must be unique within the database
How is SQL related to databases?
It's the language for querying and manipulating data in databases.
It's a tool for managing hardware in a database server.
It's a graphical interface for designing databases.
It's a programming language used to create databases.
Which industries rely on databases and SQL skills, as mentioned in the lecture?
Only financial institutions
Almost every industry
Only research labs
Only the tech industry
How can you insert multiple rows of data into a table in a single command?
Separate each row's data with semicolons (;)
Use the UPDATE command instead
Separate each row's data with commas and enclose all rows in parentheses
Use a separate INSERT INTO statement for each row
How would you use the VLOOKUP function to find the name of a student with a specific ID in Excel?
=VLOOKUP(A1; A2:B100; 2; FALSE)
=VLOOKUP("March"; A1:M12; 2; FALSE)
=VLOOKUP("Pass"; B2; "Fail")
=VLOOKUP("John"; A1:A100; 0)
What is the importance of macros in Excel?
They enhance the visual appearance of worksheets
They allow for spell-checking documents
They automate repetitive tasks, improving efficiency and accuracy
They provide access to the internet within Excel
Why are macros needed in Excel?
To create charts and graphs
To perform complex calculations
To edit cell content
To change the font style
In SQL, how are tables similar to rooms in a house?
Both are created using the CREATE TABLE command
Both can have unique constraints
Both are used for storing data
Both are part of the database schema
Which tab in the PowerPoint ribbon allows you to customize themes and design elements?
Home
Design
Slide Show
Review
In SQL, what is the purpose of the SELECT command?
To delete data from a database
To add new data to a database
To retrieve data from a database
To modify existing data in a database
Which view in PowerPoint allows you to see all slides at once, making it easy to rearrange their order?
Normal view
Slide sorter view
Reading view
Slide show view
In the 'Insert Hyperlink' dialog box, which option should you choose to link to an external website?
'Email Address'
'Create New Document'
'Existing File or Web Page'
'Place in This Document'
Which of the following is NOT a feature of PowerPoint's user-friendly environment?
Ribbon interface
Pre-designed themes
Complex animations
Effortless slide creation
What is the purpose of assigning a shortcut key to a recorded macro?
It helps protect the macro from unauthorized use.
It allows you to run the macro with a keyboard shortcut.
It ensures the macro is saved securely in Excel.
It activates the macro's security settings.
What SQL command is used to ensure that a column must have a value and cannot be left empty?
PRIMARY KEY
CHECK
NOT NULL
UNIQUE
In the SQL command 'CREATE TABLE Books (title VARCHAR(100) NOT NULL, author VARCHAR(100), publication_year INT, ISBN VARCHAR(13) UNIQUE);,' what is the data type of the 'title' and 'author' columns?
VARCHAR
INT
DATE
BOOLEAN
What is a practical use of macro recording in Excel?
Creating complex pivot tables
Formatting a weekly report consistently.
Automating the installation of Excel add-ins
Generating random numbers for data analysis
Can you run a macro in Excel if you've assigned a shortcut to it?
Click 'Run Macro' in the Developer tab
Press 'F12'
Press the assigned shortcut key
Click on the cell where the macro is recorded
How can media, when used judiciously, impact a PowerPoint presentation?
It always makes the presentation longer.
It can transform the presentation from informative to unforgettable.
It disrupts the flow of the presentation.
It increases the file size of the presentation.
What can you do in the Macro Editor to change the behavior of a recorded macro?
Change the font style
Modify the recorded code directly
Delete the macro entirely
Add new worksheets
Which tab allows you to apply advanced options like looping audio, trimming video, and adding fade in/out effects to media in PowerPoint?
Playback
Animations
Insert
Home
How can you open the Macro Editor in Excel?
Press 'Ctrl + E'
Click on the Home tab and select 'Macros'
Press 'Alt + F11'
Go to the Insert tab and choose 'Macro'
Which of the following SQL commands allows you to retrieve data from a database?
UPDATE
SELECT
INSERT
DELETE
Which function would you use to determine whether a student "Passes" or "Fails" based on their grades?
VLOOKUP
HLOOKUP
IF
INDEX
Which of the following is NOT a step in creating interactive elements for surveys and options in PowerPoint?
Gathering responses in real-time
Creating feedback forms
Using a dedicated survey tool within PowerPoint
Designing a survey layout
How can you run a macro in Excel if you've assigned a shortcut to it?
Click 'Run Macro' in the Developer tab
Press 'F12'
Press the assigned shortcut key
Click on the cell where the macro is recorded
If you want to remove specific data from a database, which SQL command should you use?
INSERT
SELECT
DELETE
UPDATE
If you want to add new data to a database, which SQL command should you use?
SELECT
DELETE
INSERT
UPDATE
When should you consider using macros in Excel?
Whenever you want to format a cell
Only for complex calculations
When you have repetitive tasks that need automation
To create pivot tables
When inserting multiple rows of data using the INSERT INTO command, how are the different sets of values separated?
Using hyphens (-)
Using commas (,)
Using semicolons (;)
Using colons (:)
What does the INSERT INTO command allow you to do in SQL?
Delete data from a table
Add new data to a table
Modify existing data in a table
Retrieve data from a table
How can you limit the number of rows returned in the result of a SELECT query?
Using the WHERE clause
Using the ORDER BY clause
Using the GROUP BY clause
Using the LIMIT clause
Where can you find the Quick Access Toolbar in the PowerPoint interface?
At the bottom of the slide
In the ribbon's 'Home' tab
At the top left corner
In the 'Insert' tab
What does the LIMIT clause in a SELECT statement allow you to do?
Limit the number of rows returned in the result
Organize data in alphabetical order
Filter rows based on conditions
Retrieve all columns from a table
Which SQL command is used to remove specific entries from a table?
DELETE
INSERT
SELECT
UPDATE
What is the primary purpose of the IF function in Excel?
Searching for values in a table range
Making logical comparisons between values
Returning a cell value based on row and column numbers
Combining functions for complex tasks
If you want to add multiple rows of data to a table, what should you include in your SQL command?
Separate sets of values enclosed in parentheses
Multiple INSERT INTO statements
The DELETE keyword
The SELECT keyword
Which data type is appropriate for storing the publication year of a book in an SQL table?
INT
BOOLEAN
DATE
VARCHAR
What tools are available in the Macro Editor to help you find and fix errors in your code?
Font styles
Breakpoints and the Immediate Window
Data validation rules
Page layout options
What SQL clause allows you to arrange query results in a specific order?
ORDER BY
WHERE
GROUP BY
LIMIT
If you want to retrieve books published after the year 2019, which SQL command would you use?
SELECT * FROM Books WHERE publication_year = 2019;
SELECT * FROM Books WHERE publication_year > 2019;
SELECT * FROM Books WHERE publication_year < 2019;
SELECT * FROM Books WHERE publication_year >= 2020;
In SQL, how do you specify the columns into which you want to insert data when using the INSERT INTO command?
List the column names in parentheses before the VALUES keyword
Use quotation marks around the values
Use the VALUES keyword
Use a semicolon at the end of each value
What is the primary purpose of the DELETE command in SQL?
To retrieve data from a table
To modify existing data in a table
To insert new data into a table
To remove specific entries from a table
What are the two primary modes in PowerPoint, and which mode is currently the focus of this session?
Presentation Mode and Print Mode; Presentation Mode
Creation Mode and Presentation Mode; Creation Mode
Slideshow Mode and Editing Mode; Editing Mode
Draft Mode and Review Mode; Draft Mode
Why might you include a feedback form in your PowerPoint presentation?
To make the presentation longer
To gather ratings and comments for improvement
To encourage the audience to leave negative feedback
To add complexity to the presentation
What analogy is used to describe inserting data into a table using the INSERT INTO command in SQL?
Painting a picture
Solving a mathematical equation
Filling the pages of a book
Planting seeds in a garden
When using SQL commands, what is the recommended practice to avoid unintended data modifications or deletions?
Avoid using the DELETE command
Use commands only on small databases
Execute commands without double-checking
Always test commands on a sample database first
How can you format a number as a percentage?
Use the 'Percentage' option in the 'Number' group of the 'Home' tab
Use the 'Currency' option
Use the 'Accounting Comma' option
Use the 'Custom' option
What is the primary advantage of using buttons in PowerPoint presentations?
They add random animations to slides
They reduce the need for hyperlinks
They make the slides more static
They create an interactive and structured experience
If you want to retrieve only the first three books from your database, which SQL command would you use?
SELECT * FROM Books WHERE publication_year > 2019 LIMIT 3;
SELECT * FROM Books WHERE LIMIT 3;
SELECT * FROM Books ORDER BY LIMIT 3;
SELECT * FROM Books LIMIT 3;
Which PowerPoint tab allows you to access and insert interactive controls?
Slide Show
Design
Developer
Home
