Database Administration Questions


Q:

A Website address is a unique name that identifies a specific

A) Link B) PDA
C) Web browser D) Website
 
Answer & Explanation Answer: D) Website

Explanation:
Report Error

View Answer Report Error Discuss

0 2396
Q:

RAM stands for

A) Relative Atomic Memory B) Random Altered Memory
C) Random Access Memory D) Relative Altered memory
 
Answer & Explanation Answer: C) Random Access Memory

Explanation:

RAM stands for Random Access Memory.

Report Error

View Answer Report Error Discuss

4 2393
Q:

Recently deleted files are stored in

A) Taskbar B) My Computer
C) Recycle Bin D) Desktop
 
Answer & Explanation Answer: C) Recycle Bin

Explanation:

Deleted files are not permanently removed from the hard drive or the computers memory. Before they are permanently removed from the system they are stored in Recycle Bin. Recycle Bin is a folder or directory where deleted items are temporarily stored. It is also called as trash.

Report Error

View Answer Report Error Discuss

6 2378
Q:

What is Proxy ARP?

Answer

It is using a router to answer ARP requests. This will be done when the originating host believes that a destination is local, when in fact is lies beyond router.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Database Administration

1 2375
Q:

Undefined reference to 'pthread_create'

How to Fix this error?

Answer

This is a common error while compiling C program in Linux. This error occurs when you are using pthread_create function to create threads in your programs.


To fix this problem ensure following points:
Include header file pthread.h in your program.
Add –lpthread linker flag with compilation command.
1- Include Header file
#include <stdio.h>
#include <pthread.h>
...
...
2- Compile command
gcc main.c -o main -lpthread

Report Error

View answer Workspace Report Error Discuss

0 2370
Q:

What does submissive mean in a relationship?

Answer

Being submissive to somebody is to acknowledge somebody to be in a greater authority than you are.


Submissive mean in a relationship is you obey that person without complaining or arguing about it.


 


In short, a submissive is a person who enjoys giving control of themselves to their life partners.

Report Error

View answer Workspace Report Error Discuss

0 2368
Q:

A test to determine processor speed is?

A) a gesture B) flat panel
C) a benchmark D) None of the above
 
Answer & Explanation Answer: C) a benchmark

Explanation:

The total number of instructions a computer executes per second is called as its processors speed. 

 

Maximum the processor's speed minimum the time for execution.

 

A test to determine processor speed is a benchmark.

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

4 2364
Q:

Which of the following data structure is linear type?

A) Tree B) Binary Tree
C) Queue D) Graph
 
Answer & Explanation Answer: C) Queue

Explanation:

A data structure is a specialized format for organizing and storing data. General data structure types include the array, the file, the record, the table, the tree, and so on. Any data structure is designed to organize data to suit a specific purpose so that it can be accessed and worked with in appropriate ways.

 

Linear data structure: A linear data structure traverses the data elements sequentially, in which only one data element can directly be reached.

Ex: Arrays, Linked Lists, Stack, Queue, Any type of List all are linear.

 

Trees like Binary Tree, B Tree or B+ Tree are examples of non linear data structure.

Report Error

View Answer Report Error Discuss

5 2362