Compare between C shell and korn shell.

1 Answer

Answer :

C shell
Korn Shell
Is slower than korn shell
Is faster than the C shell.
Command full-path name is /bin/csh.
Command full-path name is /bin/ksh.
Non-root user default prompt is hostname %.
Non-root user default prompt is $.
Home directory is $home
Home directory is $HOME
No command line editing
Command line editing
End of if statement with endif
End of if statement with fi 

Related questions

Description : Is it worthwhile acquiring/learning the bash shell over korn?

Last Answer : I switched to bash a few years ago (from zsh) and have never looked back.

Description : Who proposed Road Map Model A)G. Gunsh B)S. Ciardhuain C)J. Korn D)G. Palmar

Last Answer : D)G. Palmar

Description : Who proposed Road map model ? a. G.Gunsh b. S.Ciardhuain c. J.Korn d. G.Palmar

Last Answer : d. G.Palmar

Description : Who is the father of Computer Forensics? a. Anderson b. Palmer c. Ciardhuain d. Korn

Last Answer : a. Anderson

Description : Who proposed EEDIP? a. Gunsh b. Korn c. Stepenson d. Palmer

Last Answer : c. Stepenson

Description : Who proposed Road map model? a. G. Gunsh b. S. Ciardhuain c. J. Korn d. G. Palmar

Last Answer : d. G. Palmar

Description : Who proposed Road Map for Digital Forensic Research (RMDFR) (A) G.Gunsh. (B) S.Ciardhuain (C) J.Korn. (D) G.Palmar

Last Answer : (D) G.Palmar

Description : Who proposed Road Map for Digital Forensic Research (RMDFR) A. G.Gunsh. B. S.Ciardhuain C. J.Korn. D. G.Palmar

Last Answer : D. G.Palmar

Description : Who proposed Road Map Model A)G. Gunsh B)S. Ciardhuain C)J. Korn D)G. Palmar Q11 Digital

Last Answer : D)G. Palmar

Description : Who proposed Extended Model of Cybercrime Investigation a) G.Gunsh b) S.Ciardhuain c) J.Korn d) G.Palmar

Last Answer : b) S.Ciardhuain

Description : Who proposed Road map model a) G.Gunsh b) S.Ciardhuain c) J.Korn d) G.Palmar

Last Answer : d) G.Palmar

Description : The Father of Computer Forensics is a) Michasel Anderson b) J.Korn c) S.Ciardhuain d) G.Gunsh

Last Answer : a) Michasel Anderson

Description : Who proposed Extended Model of Cybercrime Investigation a) G.Gunsh b) S.Ciardhuain c) J.Korn d) G.Palmar

Last Answer : d) G.Palmar

Description : Who proposed Road map model a) G.Gunsh b) S.Ciardhuain c) J.Korn d) G.Palmar

Last Answer : d) G.Palmar

Description : The Father of Computer Forensics is a) Michasel Anderson b) J.Korn c) S.Ciardhuain d) G.Gunsh

Last Answer : a) Michasel Anderson

Description :  ____________is known as father of computer forensic. A. G. Palmar B. J. Korn C. Michael Anderson D. S.Ciardhuain.

Last Answer : C. Michael Anderson 

Description : Who proposed Road Map for Digital Forensic Research (RMDFR) A. G.Gunsh. B. S.Ciardhuain C. J.Korn. D. G.Palmar 

Last Answer : D. G.Palmar 

Description : Compare core type transformer and shell type transformer on the following parameters. (i) Types of winding used, (ii) Application

Last Answer : Ans:

Description : Compare core type and shell type transformer.

Last Answer : Shell Type Transformer Core Type Transformer The core surround the windings  The Winding surround the core Magnetic Flux is distributed into 2 paths  Magnetic Flux has only ... in Weight  Less in Weight  It has two windows opening  It has one window opening

Description : What is C Shell (CSH) ?

Last Answer : C Shell (CSH) is a command shell for systems like Unix, originally created in 1986 as part of the Berkeley Software Distribution (BSD). CSH can be used interactively to access commands or shell scripts. This ... , kernel shell (KSH) and jade shell ( zsh) . The modern variant , tcsh, is very popular

Description : What is a shell: a) It is a hardware component b) It is a command Interpreter c) It is a part in computer d) None of The Above

Last Answer : b) It is a command Interpreter

Description : How can you tell what shell you are running on UNIX system?

Last Answer : You can do the Echo $RANDOM. It will return a undefined variable if you are from the C Shell, just a return prompt if you are from the Bourne shell, and a 5 digit random numbers if you are from the Korn shell. You could also do a ps -l and look for the shell with the highest PID.

Description : Write a shell script to accept length and breadth of rectangle from user. Calculate and display area, perimeter, of entered values using choice entered by user.

Last Answer : #!/bin/bash # GNU bash, version 4.3.46 echo "Enter Length of Rectangle: " read length echo "Enter Breadth of Rectangle: " read breadth echo "Which operation you want to perform? 1: area 2: perimeter" read ... ) res=` echo 2 \* $length \* $breadth | bc` ;; esac echo "Result is $res" exit 0

Description : Write a shell script to accept a number from user check whether number is even or odd.

Last Answer : 2 8

Description : Write shell script to find factorial of a number.

Last Answer : i=1 f=1 echo " Enter the number" read n while [ $i -le $n ] do f=`expr $f \* $i` i=`expr $i + 1` done echo FACTORIAL = $f output: Enter the number 5 FACTORIAL=120

Description : A type of internet account, in which the computer is not connected directly to the net. (1) Shell Account (2) Kernel Account (3) Server Account (4) TCP/IP Account

Last Answer :  TCP/IP Account