'Perfect Services' provides financial services worldwide. You want to display data from the table pers for joining_date from #1/1/2005# to #31/12/2005# and the job should either be of an analyst, a...
select * from Pers where joining_date from #1/1/2005# to #31/12/2005#, job=Analyst or clerk or salesman 20.0%
select * from Pers where joining_date between #1/1/2005# to #31/12/2005#, job=Analyst or job=clerk or job=salesman 0.0%
select * from Pers where joining_date between #1/1/2005# and #31/12/2005# and (job=Analyst or clerk or salesman) 20.0%
None of the above 60.0%
'Web Logic', a web hosting company, has two system administrators, and one of them has just been terminated from his position. What is the first thing that the current administrator should do to en...
Change the employee's account password 0.0%
Set an expiration date on the employee's account 0.0%
Disable the employee's account 0.0%
Change the root password 100.0%
A construction company is working on three projects: mall construction, residential construction and building business towers. A civil engineer can work only on one type of construction project but...
one to many, one to one 0.0%
one to one, one to many 66.0%
many to one, many to many 33.0%
many to one, many to one 0.0%
A production house has two sale outlets. Both the outlets are maintaining their data separately in servers A and B. The MD wants to see the sale of both the outlets in one report. Both the outlets ...
Select * from A.Sales join B.Sales 0.0%
Select * from A.Sales union all B.Sales 0.0%
select * from A.Sales,B.Sales 0.0%
None of the above 100.0%
A user is trying to set a new password for his account. He wants to use the name of the company "MNC" as his password. Why would the system not allow this password?
The minimum length of a password should be at least six characters 100.0%
The characters cannot be in alphabetical order 0.0%
Capital letters in a password cannot be used 0.0%
The password is already in use by another user 0.0%
Based on the code given below, what will be the value of $num if mytable contains 12 records? $result=mysql_query("DELETE from mytable"); $num=mysql_affected_rows();
0 25.0%
1 0.0%
12 75.0%
undefined 0.0%
Based on the code given below, what will be the value of, $num, if mytable contains 20 records out of which 10 have myprice=19, 5 have myprice=20 and 5 have myprice=2, before running the mysql_quer...
0 0.0%
1 0.0%
5 0.0%
10 0.0%
15 100.0%
20 0.0%
Check the structure of the following tables: Employee --------- Empno Employeename Salary Deptno Department --------- Deptno Departname Mike wants to see the departments that have more than 100 ...
Select departname from department where deptno in (select deptno from employee group by deptno having count(*) > 100); 100.0%
Select departname from department where deptno in (select count(*) from employee group by deptno where count(*) > 100); 0.0%
Select departname from department where count(deptno) > 100; 0.0%
Select departname from department where deptno in (select count(*) from employee where count(*) > 100); 0.0%
Consider the following sample code: $x = 0xFFFE; $y = 2; $z = $x && $y; What will be the value of $z?
0 0.0%
1 100.0%
2 0.0%
3 0.0%
4 0.0%
During heavy INSERT, UPDATE, and DELETE activity, indexes slow down the performance. Which of the following setting controls this behavior?
compound index 0.0%
index_timer 0.0%
delay_key_write 0.0%
None of the above 100.0%
Food Cart Accounting System (FOCAS) is maintaining products in the products table, and wants to see the products which are 50 or more than 50 short of the minimum stock limit. The structure of the ...
Query 1 is true but Query 2 is false 0.0%
Query 1 is false but Query 2 is true 0.0%
Both the queries are true 0.0%
Both the queries are false 100.0%
How would you convert the date set in the following format into a PHP timestamp? $date = "Monday, July 28, 2008 @ 12:15 am";
$date = replace("@ ","",$date); $date = strtotimestamp($date); 0.0%
$date = replace("@ ","",$date); $date = strtotime($date); 0.0%
$date = str_replace("@ ","",$date); $date = strtotime($date); 100.0%
$date = str_replace("@ ","",$date); $date = strtotimestamp($date); 0.0%
Indexes are known to speed up the search but they have some limitations also. Which of the following queries take much time despite having indexes on table?
select * from articles (body) match against ('database') 22.0%
select * from pages where page_text like "%buffy%" 44.0%
select last_name from phone_book where last_name rlike "(son|ith)$" 22.0%
select * from articles where body = "%database%" 0.0%
All of the above 11.0%
John Mark, an administrator, wants to set the Web server so that it will not show a directory listing if a user requests a page which is a directory. Which modification should he set up in the http...
User 0.0%
ServerName 0.0%
Remove indexes from configuration file 100.0%
DocumentRoot 0.0%
Mike Johnson is running Apache on an extremely busy server where hundreds of requests per second is a requirement. He might have to change the default hard limits set in the MPM module. Which of th...
HARD_SERVER_LIMIT 50.0%
HARD_THREAD_LIMIT 50.0%
HARD_MPM_LIMIT 0.0%
HARD_PROCESS_LIMIT 0.0%
One of your PHP pages is very heavy and loading it takes about two minutes. But before it loads, a browser timeout occurs. Which of the following will help solve this problem?
set_time_limit(60); 0.0%
set_time_out(60); 0.0%
set_time_limit(150); 100.0%
set_time_out(150); 0.0%
Read the following code snippet: 1. for filename in *; do 2. if [ -f $filename ]; then 3. ls -l $filename 4. file $filename 5. else 6. echo $filename is not a regular file. 7...
It stores a file name in the memory 0.0%
It tests all the items in the current file 0.0%
It tests all the items in the current working directory 0.0%
None of the above 100.0%
Refer to the classes that are defined as follows: abstract class BaseCls{ protected abstract function getName(); } class ChildCls extends BaseCls{ } Which of the following implementation...
protected function getName(){} 0.0%
function getName(){} 0.0%
private function getName(){} 100.0%
public function getName(){} 0.0%
Refer to the code given below and select the while condition from the following options: $db = mysql_connect("localhost","root"); mysql_select_db("mydb",$db); $result = mysql_query("select state_i...
$myrow = mysql_fetch_array() 0.0%
$myrow 0.0%
$myrow = mysql_fetch_array($result) 100.0%
$myrow = fetch_array($result) 0.0%
Refer to the following declarations of the php variables: $company = 'ABS Ltd'; $$company = ', Sydney'; ?> Which of the following is not a correct way of printing 'ABS Ltd , Sydney'?
echo "$company $$company"; 0.0%
echo "$company ${$company}"; 100.0%
echo "$company ${'ABS Ltd'}"; 0.0%
echo "$company {$$company}"; 0.0%
Refer to the following statement: Select CustomerName, AccountNumber from Customers where AccountNumber in(select AccountNumber from Transactions where TransactionDate=#12/12/2005#) Which of the ...
In the sub query, * should be used instead of AccountNumber 0.0%
The sub query can return only one row, so "in" should be replaced with "=in" the prime query 0.0%
The sub query should be used first 0.0%
None of the above 100.0%
Refer to the small php script given below: <?php class person{ function getSal() { . . . . . . } } class emp extends person{ function getSal() { ??? } } ?>...
parent::getSal(); 50.0%
person::getSal(); 50.0%
parent::getSal; 0.0%
person::getSal; 0.0%
Refer to the statements given below and identify which of the following is correct. Statement 1: Without any indexes, the database uses a lot of disk I/O and can effectively pollute the disk cache...
Statement 1 is true but statement 2 is false 0.0%
Statement 1 is false but statement 2 is true 0.0%
Both the statements are true 100.0%
Both the statements are false 0.0%
rpm -Uvh filename- 1.2-2.i386.rpm can be used to install an RPM package. What functions does it perform?
It installs with additional information and hash marks 0.0%
It upgrades with additional information and hash marks 75.0%
It does not upgrade if an older package is not already installed. If the older package exists, then it upgrades with additional information and hash marks 25.0%
It installs the package with additional information and hash marks, then removes the old packages 0.0%
Sometimes it is necessary to create a temporary file to collect output for use by a later command. While creating such a file, you must make sure that the filename is unique enough so that no other...
mktemp command can be used to create temporary filenames 50.0%
The $$ special variable can be used to construct a temporary filename based on the process ID 50.0%
All Linux flavors come with mktemp 0.0%
You must use exit in the handler to explicitly end script execution 0.0%
State whether true or false: By allowing the use of .htaccess files in user (or customer or client) directories, you are essentially extending a bit of your Webmaster privileges to anyone who can ...
The Apache source distribution comes with a script called configure that allows you to configure the source tree before you compile and install the binaries. Which of the following is an incorrect ...
--cache-file=file 0.0%
--help-file 66.0%
--exec-prefix=eprefix 33.0%
--libexecdir=dir 0.0%
None of the above 0.0%
The architecture of MySql sets it apart from nearly every other database server. Which of the following are correct about different layers of MySql?
The topmost layer is composed of the services that are not unique to MySQL 50.0%
The second layer is made up of storage engines 0.0%
The third layer is made up of storage engines 50.0%
The interface between the second and the third layers is a single API not specific to any given storage engine 0.0%
The include directive inserts the text of a document into the SSI document being processed. Which of the following statements has the correct syntax for the include directive?
include file="path" 50.0%
include virtual="URL" 50.0%
include directive="path" 0.0%
All of the above 0.0%
The Manager and Office classes are as follows: <?php class Manager{ function printName() { echo "Manager"; } } class Office{ function getManager() { ...
$ofc->getManager()->printName(); 100.0%
new Office()->getManager()->printName(); 0.0%
$ofc->getManager->printName; 0.0%
Office::getManager()::printName(); 0.0%
To start the MySql server in Linux, you type the following from the command line: bin/safe_mysqld & What does the '&' mean in the command mentioned above?
It forces Mysql to ask the password 0.0%
It forces Mysql to run in the background 100.0%
It logins with windows login credentials 0.0%
None of the above 0.0%
What do you infer from the following code? <?php $str = 'Dear Customer,
Thanks for your query. We will reply very soon.?
Regards.
Customer Service Agent'; print $str; ?>
Only the first "
" character will be recognized and the new line will be inserted 0.0%
The last "
" character will not be recognized and only the first two parts will come in the new lines 0.0%
All the "
" characters will work and the text will be printed on the respective new lines 0.0%
All will be printed on one line irrespective of the "
" characters 100.0%
What is the condition indicated if only the LI appears while attempting to boot a Linux system with LILO?
Primary boot loader has been started 0.0%
Secondary boot loader has been loaded 100.0%
Tertiary boot loader has been loaded 0.0%
Secondary boot loader signals it has been loaded 0.0%
What is the function of the 'swapon' command while installing Linux in the command line interface mode?
It creates a swap area in RAM 0.0%
It activates a created swap partition 100.0%
It creates a swap partition 0.0%
It creates and activates a swap partition 0.0%
What will be the output of the following code? $Rent = 250; function Expenses($Other) { $Rent = 250 + $Other; return $Rent; } Expenses(50); echo $Rent;
300 0.0%
250 100.0%
200 0.0%
The program will not compile 0.0%
What will be the output of the following code? $var1="a"; $$var1="b"; echo "$var1 $a";
a b 100.0%
$var1 $a 0.0%
Error: $a is undefined 0.0%
Error: Parse error in line 2 ($$var1 = "b") 0.0%
What will happen if the following code is executed? $resultSet = mysql_query("SELECT fname, lname FROM customers") for ($nIndex = 0; $nIndex < mysql_num_rows($resultSet) ; $nIndex++) { if ...
The fnames and lnames of all the customers will be printed 100.0%
The lnames and fnames of all the customers will be printed 0.0%
The fnames and lnames of all the customers will be printed in the reverse order 0.0%
Only the fname and lname of the first customer will be printed 0.0%
Only the fname and lname of the last customer will be printed 0.0%
When a Unix program finishes, it leaves an exit code for the parent process that started the program. The exit code is a number. Which of the following numbers is returned if the program ran withou...
0 100.0%
1 0.0%
13 0.0%
108 0.0%
None of the above 0.0%
When Apache receives a URL request, it processes the request by serving the file to the client (the Web browser). It provides you with a flexible mechanism for rewriting the requested URL to a new ...
SERVER_PROTOCOL 0.0%
SERVER_SOFTWARE 0.0%
HTTP_REFERER 0.0%
REMOTE_FORWARD 100.0%
REMOTE_ADDR 0.0%
Whenever you create a table, MySQL stores the table definition in a file with the same name as the table. Which of the following is the extension of the table definition file?
.tab 0.0%
.frm 100.0%
.tbk 0.0%
.str 0.0%
None of the above 0.0%
Where would you install LILO to allow a dual bootable system on a 'system' which already has Microsoft Windows NT 4.0 with an installed NTFS partition?
Master Boot Region 100.0%
First sector of the NTFS partition 0.0%
Last sector of the boot partition 0.0%
First sector of the boot partition 0.0%
Which of the following are correct regarding Linux devices?
The character devices work with data streams 33.0%
The sockets are special-purpose I/O files offering a type of network interface 33.0%
A block device's total size varies and a program has random access to any block in the device 0.0%
A named pipe is like a character device, but there is another process at the other end of the I/O stream instead of a kernel driver 33.0%
Which of the following are correct regarding the .htaccess file in an Apache server?
The name '.htaccess' is universally acceptable 0.0%
Any text editor can be used to create or make the changes to the .htaccess files 33.0%
An .htaccess file is simply a text file containing Apache directives 33.0%
Directives residing in the .htaccess file apply to the documents in the directory where the .htaccess file is located 33.0%
Which of the following are correct with regard to indexes in MySql?
With clustered indexes, the primary key and the record itself are "clustered" together 33.0%
When your data is almost always searched through via its primary key, clustered indexes can make lookups drastically slow 0.0%
With separate indexes on first_name and last_name, MySQL can eliminate rows based on both fields 33.0%
Indexes are not always used to locate matching rows for a query 33.0%
Which of the following are correct with regard to the sbin subdirectory of the root directory in Linux?
It is the place to find system executables 0.0%
Programs in sbin directories pertain to system management 0.0%
Regular users usually do not have sbin components in their command paths 0.0%
All of the above 100.0%
Which of the following are the valid operations that MySQL performs simultaneously when a table is dropped?
It removes all the rows from the table 50.0%
It drops all the table's indexes 50.0%
It removes all dependent views 0.0%
It removes all dependent procedures 0.0%
Which of the following can be used to implement data validation while creating a table in MySql?
Checking constraint with specified values 50.0%
Referential constraint by creating a foreign key for another table 0.0%
Default value of a column 0.0%
Null constraint 50.0%
Which of the following commands will you use if you need to strip the extension off of a filename or get rid of the directories in a full pathname?
relativename 0.0%
basename 100.0%
firstname 0.0%
None of the above 0.0%
Which of the following helps to keep an eye on the existing number of objects of a given class without introducing a non-class member variable?
Addition of a member variable that gets incremented in the default constructor and decremented in the destructor 0.0%
Addition of a local variable that gets incremented in each constructor and decremented in the destructor 0.0%
Addition of a static member variable that gets incremented in each constructor and decremented in the destructor 100.0%
This cannot be accomplished since the creation of objects is being done dynamically via "new" 0.0%
Which of the following is correct for specifying the default value?
function GetDiscount($Type = "Special") { . . . } 100.0%
function GetDiscount(Type := "Special") { . . . } 0.0%
function GetDiscount($Type := "Special") { . . . } 0.0%
function GetDiscount($Type : "Special") { . . . } 0.0%
Which of the following is correct regarding the statements given below? Statement 1: Before the server can send the page to the browser it must send the http headers. Statement 2: session_start() ...
Statement 1 is true but statement 2 is false 100.0%
Statement 1 is false but statement 2 is true 0.0%
Both the statements are true 0.0%
Both the statements are false 0.0%
Which of the following is correct with regard to the statements given below? Statement 1: If the internal network uses nonroutable IP addresses for either security or cost reasons, you can use a p...
Statement 1 is true but statement 2 is false 100.0%
Statement 1 is false but statement 2 is true 0.0%
Both the statements are true 0.0%
Both the statements are false 0.0%
Which of the following is correct with regard to the statements given below? Statement 1: The current implementation of the optional proxy module does not support reverse proxy or the latest HTTP ...
Statement 1 is true but statement 2 is false 0.0%
Statement 1 is false but statement 2 is true 0.0%
Both the statements are true 100.0%
Both the statements are false 0.0%
Which of the following is correct with regard to the statements given below? Statement 1: When you set up Apache on an Internet host it can respond to an HTTP request for that host. Statement 2: A...
Statement 1 is true but statement 2 is false 0.0%
Statement 1 is false but statement 2 is true 0.0%
Both the statements are true 0.0%
Both the statements are false 100.0%
Which of the following is introduced in PHP5?
__construct 0.0%
__construct and __destruct 100.0%
__constructor and __destructor 0.0%
__constructor 0.0%
Which of the following is the correct way to check whether the cookie is set or not before retrieving the value from "LoginCookie"?
isset($COOKIE['LoginCookie']) 0.0%
isset($_COOKIE['LoginCookie']) 100.0%
isCookieSet('$LoginCookie') 0.0%
isCookieSet(['$LoginCookie']) 0.0%
Which of the following is the standard authentication module, which implements Basic HTTP authentication?
mod_auth 0.0%
mod_auth_dbm 0.0%
mod_auth_digest 100.0%
mod_access 0.0%
None of the above 0.0%
Which of the following is true with regard to references in PHP?
It means accessing different variable content by a different name 0%
It means accessing the same variable content by a different name 0%
It means accessing the same variable content by the same name 0%
It means accessing different variable content by the same name 0%
Which of the following lines of the class mentioned below should be commented to execute the code without errors? 1 class Insurance 2 { 3 function clsName() 4 { 5...
Line 8 and 9 0.0%
Line 10 0.0%
Line 9 and 10 0.0%
All the three lines 8,9, and 10 should be left as it is 100.0%
Which of the following MySQL field names are correct?
EmpNo 33.0%
25Block 11.0%
#AccountID 11.0%
_CustomerName 33.0%
Product.Name 11.0%
Which of the following queries will correctly retrieve the ages and addresses of those students who have been studying in the school for the last 2 years?
$SQL_QUERY="select age,address from student where regdate ="; $SQL_QUERY .= "DATE_SUB(CURRENT_DATE,Interval 2 YEAR)"; 100.0%
$SQL_QUERY="select age,address from student where regdate ="; $SQL_QUERY .= "DATE_SUB(CURRENT_DATE,Interval 2)"; 0.0%
$SQL_QUERY="select age,address from student where regdate ="; $SQL_QUERY .= "CURRENT_DATE-2"; 0.0%
$SQL_QUERY="select age,address from student where regdate ="; $SQL_QUERY .= "Year(CURRENT_DATE)-Year(CURRENT_DATE-2)"; 0.0%
Which of the following special variables of a shell script holds the number of arguments passed onto the script?
$~ 0.0%
$* 0.0%
$# 100.0%
$@ 0.0%
Which of the following statements are correct with respect to PHP connections?
mysql_pconnect keeps the connection open across multiple requests 50.0%
mysql_connect keeps the connection open across multiple requests 0.0%
mysql_pconnect opens up a database connection for each page load 0.0%
mysql_connect opens up a database connection for each page load 50.0%
Which of the following statements are correct with respect to the get_browser function of PHP?
It is used to extract the client's browser information 50.0%
It requires the browscap.ini to be placed on the server 50.0%
It requires the browscap.ini to be placed on the client 0.0%
None of the above is correct 0.0%
Which of the following statements are incorrect regarding referential integrity?
A foreign key can refer to a primary key 33.0%
A foreign key can refer to a unique key 0.0%
The on delete cascade clause will work only if there is a reference to a primary key 33.0%
The referred key can either be in the same table or in some other table 33.0%
A foreign key can be composite 0.0%
Referential integrity can only be applied while creating the table 0.0%
Which of the following statements are true with regard to comparisons in PHP5?
With the "= =" operator, two object instances are equal if they have the same attributes and values, and are instances of different classes 0.0%
With the "= =" operator, two object instances are equal if they have the same attributes and values, and are instances of the same class 0.0%
With the (===) operator, object variables are identical if and only if they refer to the same instance of the same class 100.0%
With the (===) operator, object variables are identical if and only if they refer to a different instance of the same class 0.0%
Which of the following statements are true? Statement 1: mysql_fetch_object - Returns an object with properties that correspond to the fetched row, or FALSE if there are no more rows Statement 2: ...
All the statements are true 0.0%
All the statements are false 0.0%
Only Statement 1 is true 100.0%
Only statement 2 is true 0.0%
Which of the following statements is incorrect with regard to PHP interfaces?
A class can implement multiple interfaces 0.0%
An abstract class cannot implement multiple interfaces 0.0%
An interface can extend multiple interfaces 0.0%
Methods with the same name, arguments and sequence can exist in the different interfaces implemented by a class 100.0%
Which of the following subdirectory of the root directory provides system statistics through a directory-and-file interface which you can browse with standard Unix tools?
etc 0.0%
sbin 0.0%
proc 0.0%
lib 0.0%
None of the above 100.0%
Which of the following ways of creation of a virtual web site is not supported by Apache?
Name-based 0.0%
IP-based 0.0%
Multiple main servers 100.0%
None of the above 0.0%
Which permission setting allows a user to run an executable with the permission of the owner of that file?
Read 0.0%
SUID 100.0%
Write 0.0%
SSH 0.0%
Which program automatically determines the number of blocks in a device and sets some reasonable defaults?
mkbds4 0.0%
mke2fs 0.0%
mksdef 0.0%
mkcntd 0.0%
None of the above 100.0%
Which sequence will run successfully for the code given below? <?php function Expenses() { function Salary() { } function Loan() { functi...
Expenses();Salary();Loan();Balance(); 100.0%
Salary();Expenses();Loan();Balance(); 0.0%
Expenses();Salary();Balance();Loan(); 0.0%
Balance();Loan();Salary();Expenses(); 0.0%
You are building Apache from the source distribution. Which of the following is a mandatory requirement for Apache installation?
ANSI C Compiler 100.0%
Perl 5 Interpreter 0.0%
Dynamic Shared Object support 0.0%
None of the above 0.0%
You are facing a low key buffer problem. You want to increase the size of the key buffer from what it was set to at the startup. Which of the following is the correct syntax to perform this?
mysql> SET buffer=50M; 0.0%
mysql> SET key_buffer=50M; 100.0%
mysql> SET GLOBAL key_buffer=50M; 0.0%
mysql> SET DEFAULT key_buffer=50M; 0.0%
None of the above 0.0%
You have a table phone_book with 2 billion rows in it. Adding an index on last_name will require a lot of space. If the average last_name is 8 bytes long, you are looking at roughly 16 GB of space ...
Indexing only the first 4 bytes 100.0%
Indexing on partition 0.0%
Keeping the index in more than one file 0.0%
None of the above 0.0%
You have an HTML file called mypage.html and you want to store meta headers of this html page. Which of the following directives specifies the filename extension for metainformation files?
MetaExt 0.0%
MetaFileType 100.0%
MetaExtension 0.0%
MetaSuffix 0.0%
You have defined three variables $to, $subject, and $body to send an email. Which of the following methods would you use to send an email?
mail($to,$subject,$body) 100.0%
sendmail($to,$subject,$body) 0.0%
mail(to,subject,body) 0.0%
sendmail(to,subject,body) 0.0%
You have just installed a Linux system. You have upgraded the kernel and packages to the latest versions and you have turned off all unnecessary services and daemons. What else should you do to enh...
Change the root password 100.0%
Set up a telnet session 0.0%
Audit your log files 0.0%
Turn off network card 0.0%
You have to upload a file named "SalesFile" using the form post method mentioned below. What should be the code in line 3 to accomplish the same? 1 <input type="hidden" name="MAX_FILE_SIZE" val...
<input name="SalesFile" type="file" /> 100.0%
<input name="SalesFile" Upload="true" /> 0.0%
<input filename="SalesFile" type="Upload" /> 0.0%
<input filename="SalesFile" Upload="true" /> 0.0%
You need to allow only selected users from the users file into a particular area and you do not want to keep the username information in your .htaccess files. Which of the following is a correct st...
require usergroup <group name> 0.0%
require group <group name> 100.0%
require users <group name> 0.0%
require <group name> 0.0%
You want to enable SSI for a directory called '/www/mysite/htdocs/parsed'. Which of the following is the correct configuration to be added in httpd.conf?
<Directory "/www/mysite/htdocs/parsed"> Options +Includes SetFilter INCLUDES </Directory> 0.0%
<Directory "/www/mysite/htdocs/parsed"> SetOutputFilter INCLUDES </Directory> 0.0%
<Directory "/www/mysite/htdocs/parsed"> Options Included </Directory> 0.0%
<Directory "/www/mysite/htdocs/parsed"> Options +Includes SetOutputFilter INCLUDES </Directory> 100.0%
None of the above 0.0%
You want to open a file in the PHP application and you also want this application to issue a warning and continue execution, in case the file is not found. Which of the following idea functions wou...
include() 100.0%
require() 0.0%
nowarn() 0.0%
getFile(false) 0.0%
You want to see the block and character devices for which your system currently has drivers. Which of the following commands should you use in this scenario?
list /proc/devices 0.0%
show /proc/devices 0.0%
find /proc/devices 0.0%
cat /proc/devices 100.0%
None of the above 0.0%