The Octal number to be given alogn with chmod command to make a file readable,
writable and executable to the owner, readable and executable to group and others is:
A. 000
B. 755
C. 744
D. 555
E. None of the above

1 Answer

Answer :

B. 755

Related questions

Description : Which command is used to remove the read permission of the file 'note' from both the group and others? A. chmod go+r note B. chmod go+rw note C. chmod go-x note D. chmod go-r, 4-x note E. None of the above

Last Answer : D. chmod go-r, 4-x note

Description : In Unix, the command to enable execution permission for file “mylife” by all is ................ (A) Chmod ugo+X myfile (B) Chmod a+X myfile (C) Chmod +X myfile (D) All of the above

Last Answer : (D) All of the above

Description : Which command is used to change protection mode of files starting with the string emp and ending with 1,2, or 3? A. chmod u+x emp[l-3] B. chmod 777 emp* C. chmod u+r ??? emp D. chmod 222 emp? E. None of the above

Last Answer : A. chmod u+x emp[l-3]

Description : Which command is used to display a file contents in octal form? A. cd B. od C. of D. oct E. None of the above

Last Answer : B. od

Description : Describe Chmod command with example. 

Last Answer : In Unix-like operating systems, the chmod command sets the permissions of files or directories. On Unix-like operating systems, a set of flags associated with each file determines who can access that file, and how ... stands for "write", 1 stands for "execute", and 0 stands for "no permission."  

Description : Which command is used to count just the number of characters in a file? A. wc - 1 B. wc -c C. wc -w D. wc -r E. None of the above

Last Answer : B. wc -c

Description : Preparedstatement Object in JDBC is used to execute ........................... queries. A) executable B) simple C) high level D) parameterized

Last Answer : D) parameterized

Description : Prepared Statement object in JDBC used to execute........... queries. A) Executable B) Simple C) High level D) Parameterized

Last Answer : D) Parameterized

Description : State whether the following statement is true. i) A macro virus is platform independent. ii) Macro viruses infect documents, not executable portions of code. A) i-only B) ii-only C) Both i and ii D) Non i and ii

Last Answer : D) Non i and ii

Description : A ………………… attaches itself to executable files and replicates, when the infected program is executed, by finding other executable files to infect. A) Stealth virus B) Polymorphic Virus C) Parasitic Virus

Last Answer : C) Parasitic Virus

Description : ……………….. level is where the model becomes compatible executable code A) Abstract level B) Application level C) Implementation level D) All of the above

Last Answer : C) Implementation level

Description : The ............... transfers the executable image of a C++ program from hard disk to main memory. (A) Compiler (B) Linker (C) Debugger (D) Loader

Last Answer : (D) Loader

Description : Which command is used to remove a file? A. remove B. rm C. mv D. del E. None of the above

Last Answer : B. rm

Description : The command which transcribes the standard input to the standard output and also makes a copy of the same in a file is A. tee B. tr C. sort D. grep E. None of the above

Last Answer : A. tee

Description : Which command sends the word count of the file infile to the newfile. A. wc infile >newfile B. wc newfile C. wc infile - newfile D. wc infile | newfile E. None of the above

Last Answer : A. wc infile >newfile

Description : Which command is used to extract specific columns from the file? A. cat B. cut C. grep D. paste E. None of the above

Last Answer : B. cut

Description : Which command is used to display the top of the file? A. cat B. head C. more D. grep E. None of the above

Last Answer : B. head

Description : Which command is used to sort the lines of data in a file in reverse order A. sort B. sh C. st D. sort -r E. None of the above

Last Answer : D. sort -r

Description : What does the following command do? grep −vn abc x (A) It will print all of the lines in the file x that match the search string abc (B) It will print all of the lines in file x that do not ... (D) It will print the specific line numbers of the file x in which there is a match for string abc

Last Answer : (A) It will print all of the lines in the file x that match the search string “abc”

Description : What is the function of following UNIX command? WC - lb& (A) It runs the word count program to count the number of lines in its input, a, writing the result to b, as a foreground process. (B) It runs ... (D) It copies the l ' numbers of lines of program from file, a, and stores in file b.

Last Answer : (B) It runs the word count program to count the number of lines in its input, a, writing the result to b, but does it in the background.

Description : What will be the output of the following Unix command ? $rm chap0\[1 - 3\] (A) Remove file chap0[1 - 3] (B) Remove file chap01, chap02, chap03 (C) Remove file chap\[1 - 3\] (D) None of the above

Last Answer : (A) Remove file chap0[1 - 3]

Description : Unix command to change the case of first three lines of file “shortlist” from lower to upper (1) $ tr ‘[a-z]’ ‘[A-Z]’ shortlist | head-3 (2) $ head-3 shortlist | tr ‘[a-z]’ ‘[A-Z]’ (3) $ tr head-3 shortlist ‘[A-Z]’ ‘[a-z]’ (4) $ tr shortlist head-3 ‘[a-z]’ ‘[A-Z]’

Last Answer : (2) $ head-3 shortlist | tr ‘[a-z]’ ‘[A-Z]’ 

Description : The equivalent hexadecimal notation for octal number 2550276 is: (A) FADED (B) AEOBE (C) ADOBE (D) ACABE 

Last Answer : (C) ADOBE

Description : The octal number 326.4 is equivalent to (A) (214.2)10 and (D6.8)16 (B) (212.5)10 and (D6.8)16 (C) (214.5)10 and (D6.8)16 (D) (214.5)10 and (D6.4)16

Last Answer : (C) (214.5)10 and (D6.8)16

Description : The hexadecimal equivalent of the octal number 2357 is: (1) 2EE (2) 2FF (3) 4EF (4) 4FE

Last Answer : Answer: 3 Explanation: (2357)8 can be converted into binary just digit by digit. = 010 011 101 111 Now we can regroup the bits into groups of 4 and convert to hexadecimal. = 0100 1110 1111 = 4EF

Description : Convert the octal number 0.4051 into its equivalent decimal number. (1) 0.5100098 (2) 0.2096 (3) 0.52 (4) 0.4192

Last Answer : Answer: 1 Explanation: (0.4051)8 = 4x8-1+0x8-2+5x8-3+1x8-4 = 0.5100098

Description : contain library program have to be indicated to the loader. a. Externally defined b. Internally defined c. Executable file d. All of these

Last Answer : a. Externally defined

Description : _______viruses infect executable program files: a) File Infector Viruses b) Macro Viruses c) Multi Partite Viruses d) None of These

Last Answer : a) File Infector Viruses

Description : A data file of 1,00,000 characters contains only the characters g-l, with the frequencies as indicated in table:  using the variable-length code by Huffman codes, the file can be encoded with (A) 2,52,000 bits (B) 2,64,000 bits (C) 2,46,000 bits (D) 2,24,000 bits

Last Answer : (D) 2,24,000 bits 

Description : A device is sending out data at the rate of 2000 bps. How long does it take to send a file of 1,00,000 characters ? (A) 50 (B) 200 (C) 400 (D) 800

Last Answer : (C) 400 Explanation: 1,00,000 characters = 1,00,000 x 8 bits = 8,00,000 bits 8,00,000 bits/2000 bps = 400 seconds

Description : Find out the wrong feature of DVD among the following: a) DVD is similar to CD but has larger storage capacity and enormous clarity b) DVDs are primarily used to store music or 6 movies and can be played back on ... opposed to around 650 MB of a CD) d) It is not re-writable media e) None of These

Last Answer : e) None of These

Description : 15% of 1460 + 25% of ? = 81% of 500 a) 846 b) 928 c) 656 d) 712 e) 744

Last Answer : 219 + 25% of ? = 405 25% of ? = 405 – 219 = 186 ? = 186×4 = 744 Answer: e)

Description : Which of the following is not a communication command. A. write B. mesg C. mail D. grep E. None of the above

Last Answer : D. grep

Description : Which of the following files will displayed by this command cat *ch* A. patch B. catch C. .ch D. All of the above E. None of the above

Last Answer : D. All of the above

Description : Which command is used to remove a directory? A. rd B. rmdir C. dldir D. rdir E. None of the above

Last Answer : B. rmdir

Description : Which symbol will be used with grep command to match the pattern pat at the beginning of a line? A. ^pat B. $pat C. pat$ D. pat^ E. None of the above

Last Answer : A. ^pat

Description : The Unix command: $ vi file1 file2 (A) Edits file1 and stores the contents of file1 in file2 (B) Both files i.e. file1 and file2 can be edited using ex' command to travel between files (C) Both ... using the mv' command to move between the files (D) Edits file1 first, saves it and the edits file2

Last Answer : (B) Both files i.e. file1 and file2 can be edited using ‘ex’ command to travel between files

Description : Do htaccess / chmod rules exclude each other?

Last Answer : answer:First.. You are fucked… This is beyond being fixed. Just plan starting from scratch. Do you have a backup of the database? For all I know they have root on the server so short of nuking the server still leaves you vulnerable. Fixing wordpress puts food in my belly

Description : What is the remainder of 755 divided by 7 and what is the answer to it too Long Division?

Last Answer : 107.8571

Description : How years are there between 195 BCE and 755 CE?

Last Answer : Need answer

Description : Are DVDs better for storing photos than writable CDs?

Last Answer : Most DVD's have be reformated for storing pictures unless you are storing them as a power point.

Description : Does this laptop come with a writable DVD drive?

Last Answer : The HP 6730s comes standard with a 8X DVD Rewritable Drive with 2.4X Dual Layer Capacity to meet your DVD or CD (24X) burning needs.

Description : When a voltage of 115 VDC is applied to the illustrated circuit with a resistance of 17.8 ohms the current will be _______. EL-0018 A. 0.154 amps B. 2.755 amps C. 6.46 amps D. 0.1328 amps

Last Answer : Answer: C

Description : A computer having writable control memory is known as_ a. Static micro programmable b. Dynamic micro programmable c. Botha & b d. None of these

Last Answer : b. Dynamic micro programmable

Description : Calculate the energy when the magnetic intensity and magnetic flux density are 15 and 65 respectively. a) 755 b) 487.5 c) 922 d) 645

Last Answer : b) 487.5

Description : Which one of the following statements is true regarding pairs of a MapReduce job? a)A key class must implement Writable. b)A key class must implement WritableComparable. c)A value class must implement WritableComparable. d)A value class must extend WritableComparable.

Last Answer : A key class must implement WritableComparable.

Description : Staff readings on pegs x and y from X station are 1.755 m and 2.850 m, and from station Y on staff head at Y and X are 0.655 m and 1.560 m. If reduced level of X is 105.5 m, the reduced level of Y is (A) 104.0 m (B) 104.5 m (C) 105.0 m (D) 105.5 m

Last Answer : (B) 104.5 m

Description : Suppose d = {“john”:40, “peter”:45}. To obtain the number of entries in dictionary which command do we use? a) d.size() b) len(d) c) size(d) d) d.len()

Last Answer : b) len(d)