Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
29 views
Basic Linux Command
Uploaded by
Office Work
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Basic Linux Command For Later
Download
Save
Save Basic Linux Command For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
29 views
Basic Linux Command
Uploaded by
Office Work
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Basic Linux Command For Later
Carousel Previous
Carousel Next
Save
Save Basic Linux Command For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 9
Search
Fullscreen
Basic Linux "| RPM- a) stands for Red Hat Package Manager b) is used to install, uninstall, and manage packages c) is used to keep track of the users d) assigns a dynamic IP address Ans: a 6. Which of the following is not a part of default Red Hat Linux email system? a) Pine b) The MTA c) The MUA d) procmail A Pine is a freeware, text-based email client which was developed at the University of ton. Source code was available for only the Unix version. Pine is no longer under development, and has been replaced by the Alpine client, which is available under the Apache License. ra Note Some important Linux Commands ‘pwd’ Command: Linux pwd (print working directory) command displays location currently working on. It will give the whole path starting from the root ending to the directory. = pwd ‘ed' Command: Linux cd command is used to change the current working directory (i.e., in which the current user is working). The "cd" stands for ‘change directory.’ It is one of the most frequently used commands in the Linux terminal. ~ cdkdirnamed| © Tochange our current working directory, execute the command as follows: ~cdkcurrent directory>] Kspecified directory>| * To change the directory to home directory from the current working directory, execute the command as follows: sed~ * To change to the previous directory from the current working directory, execute the command as follows: > cd- © To change the directory to parent directory of the current working directory, execute the command as follows: > ed. © To navigate directory to entire system's root directory from current working directory, execute the command as follows: + cd/ © We can change the directory from the current working directory to a user's home directory by executing the command as follows: ced Fusernam © Tochange the directory that has spaces in its name, surround the path with quotes ('") or use the backslash (\) character with it, Execute the command as follows: ed |'Dir name with space' ed [Dir\ name\ with\ space] COMPACT IT Preliminary Page | 603Basic Linux © We can change directory up to multiple sub-directories by separating directories by a forward slash ()) as follows: ed [Dirl/Dir2/Dir3 ‘ ‘Is' command: The Is is the list command in Linux. Just type Is and press the enter key. The whole content will be shown. 1s Is option Description Tn Linux, hidden files start with . (dot) symbol and they are not visible in the 1s -a | regular directory. The (Is -a) command will enlist the whole list of the current directory including the hidden files. Is -1 _ | Iwill show the list in a long list format, 1s -1i_| This command prints the index number if file is in the first column. Tis used to identify the directory easily by marking the directories with a slash (/) line sign. Is =r _| Itis used to print the list in reverse order. Is -R_ | Iwill display the content of the sub-directories also. Is -1x_| It will group the files with same extensions together in the list. 1s -p ‘mkdir command: The mkdir stands for ‘make directory’. Just type "mkdir
, in place of
type the name of new directory, I want to create and then press enter. + medi edi enanes ‘rmdir’ Command: This command is used to delete a directory. But will not be able to delete a directory including a sub-directory. It means, a directory has to be empty to be deleted. > mdi rkdirname>| ‘my! command: The ‘mv’ command is a multi-purpose command, It is not just limited to move files and directories, but it can also be used for renaming the files and directories. ~ mv Pld foldex| New foldex| ‘touch’ Command: The touch command is used to create empty files. We can create multiple empty files by executing it once. ~ touch Kfile name>] touch kfilel>
...4 ‘eat’ Command: The cat command is a multi-purpose utility in the Linux system. It can be used to create a file, display content of the file, copy the content of one file to another file and more. — cat [[OPTION]... [FILE]. © Tocreate a file, execute it as follows: ~cat> {file name: © Press "CTRL+ D" keys to save the file. To display the content of the file, execute it as follows: cat
COMPACT IT Preliminary Page | 604Basic Linux ‘ep’ Command: The cp command is used to copy a file or directory. To copy in the same directory: cp Kexisting file name> Knew file name>} ‘rename! Command: The rename command is used to rename files. It is useful for renaming a large group of files. — rename ['s/old-name/new-name/' files| ‘head' Command: The head command is used to display the content of a file. It displays the first 10 lines of a file. head kfile name>] ‘tail’ Command: The tail command is similar to the head command. The difference between both commands is that it displays the last ten lines of the file content, It is useful for reading the error message. tail Kfile name> ‘tac’ Command: The tac command is the reverse of cat command, as its name specified. It displays the file content in reverse order (from the last line). tac Kfile name>] ‘passwd’ Command: The passwd command is used to create and change the password for a user. ~ passwd Kusername’ ‘cat' Command: The cat command is also used as a filter. To filter a file, it is used inside pipes. ~ cat KfileName>] | cat or tac | cat or tac | ‘cut' Command: The cut command is used to select a specific column of a file. The ‘-d’ option is used as a delimiter, and it can be a space (‘'), a slash (/), a hyphen (-), or anything else. And, the '-P option is used to specify a column number. cut -d(delimiter)] -f[(columnNumber)] kfileName: ‘te' Command: The tr command is used to translate the file content like from lower case to upper case, + command|tr K'old'> <'new'>| ‘we! Command: The we command is used to count the lines, words and characters in a file. we {file name>| ‘gzip| Command: The gzip command is used to truncate the file size. It is a compressing tool. It replaces the original file by the compressed file having ‘ga’ extension. gzip kkfilel>
... ‘zeat' Command: The zcat command is used to display the compressed files. ~zeat kfile name: ‘ip! Command: Linux ip command is an updated version of the ipconfig command. It is used to assign an IP address, initialize an interface, disable an interface. ip a or ip addr COMPACT IT Preliminary Page | 605Basic Linux ‘sh’ Command: Linux ssh command is used to create a remote connection through the ssh protocol. ssh [user name@host (IP/Domain name)] ‘ping’ Command: The ping command is used to check the connectivity between two nodes, that is whether the server is connected. It is a short form of “Packet Internet Groper." ping Kdestination>] host Command: The host command is used to display the IP address for a given domain name and vice versa. It performs the DNS lookups for the DNS Query. host Kdomain name> or
] Y useradd: create new user account Vv usexdel: delete user account Y dé: show disk space usage Y find: search for files in a directory hierarchy (find file! txt) Y echo: display a line of text Y scp: secure copy (remote file copy program) Y reboot: reboot the system (Usage: reboot [OPTION]) Y powerof¢: power off the system (poweroff [OPTION]) Y ps: display your currently active processes Y top: display all running processes Y chmod: change the permissions of file Y¥ cal: The cal command print a calendar on the standard output. Y cksum README. txt]: cksum command is used to display the CRC checksum and byte count of an input file. ¥ cmp [Eilel £i1e2| cmp performs a byte-by-byte comparison of two files. v df —h: dfcommand is used to show file system disk space usage as follows. Y env: env command lists all the current environment variables and used to set them as well. Y ipconfig: © $ ifconfig © §$ sudo ifconfig ethO up © §$ sudo ifconfig eth0 down © § sudo ifconfig ethO [172.16.25.125| ifconfig command is used to configure a Linux systems network interfaces. It is used to configure, view and control network interfaces. Key Board Shortcuts © Ctrl+C- halts the current command COMPACT IT Preliminary Page | 606Basic Linux + Cirl+Z- stops the current command, resume with fg in the foreground or bg in the background © Ctrl+D- log out of current session, similar to exit © Ctrl+W- erases one word in the current line © Cul+U- erases the whole line © Ctrl#R- type to bring up a recent command © Exit~log out of current sessi <
> 1. Assume that you want to improve database performance and willing to see the amount of swap space. Which command you can use in LINUX OS environment? (S81, J8ADB 2021) a) Lsps—a b) Swapinfo -m ¢) Swapon -s d) Swap -1 and Swap -s Ans: € 2. Which UNIX/Linux command is used to make all files and sub-directories in the directory “progs” executable by all users? Combined Bank, SO (IT) 2021} (a) chmod -R a#x progs (b) chmod -R 222 progs (c) chmod -X a+x progs (d) chmod -X 222 progs Ans: a 3. Which of the following Linux command has incorrect syntax? (Combined Bank, SO (17) 2021) (a) cat sample.txt | grep =v a | sort =r (b) chown:group3 File | (c) chmodatrx viewer.sh (d) None of the above Ans: b 4, In UNIX, the login prompt can be changed by changing the content of the file- /s#z. JBL O(ITACT) 2019} A) gettydefs B) contrab C) initab D) init Ans: A 5. What command is used to remove files UNIX? /8R£8 AJE 2019) A)dm B)rm C) delete D) erase Ans: B 6. Which of the following UNIX commands allows scheduling a program to be executed at specifies time? (S81, JBL O(/T/ICT) 2019) A) nice B) cron C) date and time D) schedule Ans: B Cricec@ >> 1. What command is used to remove the directory? a) rdir b) remove c) rd d) rmdir Ans: d 2, What command do you use to create Linux file systems? a) fdisk b) mkfs c) fsck d) mount Ans: b 3. What command is not used to list the files chap01, chap02 and chap04? a) 1s chap* b) 1s chap[124) c) ls - x chap0[124] d) ls chap0[124} Ans: b 4, What command is used with vi editor to save file and remain in the editing mode? a) x bq! ©) sw dq Ans: ¢ COMPACT IT Preliminary Page | 607Basic Linux 5. What command is used with vi editor to move back to the beginning of a word? aw be oa db Ans: d 6. What command is used with vi editor to search a pattern in the forward direction? a) 2? by // o? a/ Ans: d 7. What command is used to add printing jobs to the queue? a) Ipd b) Ipr. c) Ipg d) Ipe Ans: b 8 What command is used to copy directory structures in and out? a) copy b)ep - p c)cpio dcp Ans: 9. What command is used to remove jobs from the print queue? a) Ipq b) Ipr ©) Iprm d) pe Ans: ¢ 10. How can you navigate around virtual consoles? a) Alt+Funetion Key b) Cirl+Function Key ©) Curl+AltsDel d) Alt+a+w+Function Key Ans: a \) \ Model Test 1. What hardware architectures are not supported by Red-Hat? a) SPARC b) IBM-compatible c) Alpha d) Macintosh, 2. Which of the following command is used to create a Linux installation hoot floppy? a) mkboot disk b) boot fp disk ¢) wwand rawwrite d) dd and rewrite 3. How can you add Amit, a new user, to your system? a) Using useradd b) Using adduser c) Using linuxconf d) All of the above 4. Which of the following command is used to see the services running in NFS server? a) rpcinfo b) serverinfo ©) NFSinfo d) infserv 5. In which tep_wrappers file can you specify to allow all connections from all hosts? a) /etc/hosts.allow b) /etc/hosts.deny ¢) fetcfhosts d) fete/tep.cont 6. What command is used to list contents of directories? a) tar b) dir c) Ip d) Is 7. Which prograr on the system? is used to schedule particular jobs or programs at particular times a) vi b) Outlook c) Scheduler d) cron 8. Which command can force all buffers to disk? a) save b) sync c) edbuff d) flush COMPACT IT Preliminary Page | 608Basic Linux 9. What command is used to sort the lines of data in a file in ‘alphabetical order? a)sort - 5 b) st c) sh d) sort 10. What is the maximum size of a file allowed in Linux with the following data Block Size = 4KB, inode data pointer size = 4 byte? (a) 1 TB (b) Less than 4TB (c) 2TB+2GB+2MB+64KB (d) More than 4 TB Model Test Answer: 1 2 (13 |4 |5 |6 {7 |8 {9 |10 d a a_|d {d |b |d [b Website Based Practice MCQ 1. What command is used to count the total number of lines, words and characters contained in a file? a) countw b) weount cc) we d) count p Ans: ¢ Note: The command t to count the je sically means “word count” and with different optional parameters one iber of lines, words, and characters in a text file. used to remove files? a) dm b) rm c) delete d)erase e Ans: b Note: Use the rm command to remove files you no longer need. The rm command removes the entries for a specified file, group of files, or certain Select files froma list within a directory, 3. What file specifies the order in which to use specified name services? a) letc/services b) fete/nsorder ¢) fete/nsswiteh.cont d) fetchhosts Ans: € 4, How many primary partitions can exist on one drive? a) 16 by 2 at Ans: b 5. In which directory can you store system user default files used for creating user directories? a) /ust/tmp b) /ete/default c)/etciskel —_d) /etclusers Ans: ¢ Note: The /etc/skel directory contains files and directories that are automatically copied over to a new user's home directory when such user is created. 6. Which of the following is a valid format for mounting a CD-ROM drive? a) mount -t is09660 /dev/cdrom / mnt/cdrom 'b) mount /dev/edrom ¢) mount /mnt/edrom d) All of the above 7. Which of the following command can you execute to count the number of line: a) le b) we-1 ce) cl d) count ‘cis used for word count which will result all the details like number of words line numbers specifies that we only want the ine count COMPACT IT Preliminary Page | 609Basic Linux 8. Which of the following is not a communication command? a) grep b) mail ce) mesg — sd) write Ans: a Note: The "grep ' command i 9. What command is used to display the characteristics of a process? a) au b) ps c) du d) pid Ans: b Note: “ps’ command is used to find the current process running in the system. 10, What command is used with vi editor to replace text from cursor to right used for pattern searching, not for communication. aS b)s c)R dr Ans:¢ 11, What sign is used to back up over typing errors in vi? a)! b)s o# o@ Ans: e 12. What sign is used to erase or kill an entire line you have typed and start you are on a new line (but not display a new prompt)? a)! bs o# ae Ans: d 13. Which of the following command is used to access an SMB share on a Linux system? a)NFS_—_b) SMD c) smbclient 4) smbserver Ans: ¢ Note: smbclient is samba client with an "ftp like” interface. It is a useful tool to test connectivity to a Windows share. It can be used to transfer files, or to look at share names. In addition, it has a nifty ability to ‘tar' (backup) and restore files from a server to a client and vice versa. 14, What project is currently developing X server support? a) XFree86 Project, Inc b) RHAD Labs c) GNOME Project d) All of the above Ans: a 15, What X-based tool is available for configuring the X Window system? a) XConfigurator b) XFR86Setup c) xf86config d) All of the above Ans: b 16. What port does squid listen, by default? a) 4322 b) 2314 ©) 7334 4) 3128 Ans: d Note: Squid is a caching and forwarding web proxy. It is most often used in conjunction with a nal LAMP stack (Linux, Apache, MySQL, PHP). 17. Which of the following is the main Apache configuration file? a) /etc/apache)conf b) /etc/httpd/config. ini ¢) /etc/httpd/conf/httpd.conf d) confd./ete/srm.conf Ans: ¢ 18. Which of the following server is used with the BIND package? a) httpd b) shutp, c) dns. d) named Ans: d Note: BIND (Berkeley Internet name domain) package is to provide DNS service and the ‘named’ is a daemon service of it. 19. What command is used with vi editor to append text at end of line? a) bi ca QA Ans: d COMPACT IT Preliminary Page | 610Basic Linux 20. What command is used to save the standard output in a file, as well as display it on the terminal? a) tee b) grep ©) cat a) more Ans: a 21. What command is used to count just the number of lines contained in a file? a) wo-r b) we-w ©) we-c d) we-1 Ans: d 22. What type of addressing format is used by Class A network. a) Net.Net.Net.Node b) Net.Net.Node.Node c) Net.Node.Net.Node d) Net.Node.Node.Node Ans: d 23. What command is used to query for a specific package with RPM? a) rpm -q b) rpm -a ©) rpm -d d) rpm -1 Ansa Note: RPM has a powerful query feature that allows you to find out what packages are installed on your system, the files associated with a package, or the package that owns a particular file. Use the -q flag to tell RPM to display the package name, version number, and release number of a package. 24, What script is run for setting bash global defaults for all users? a) etch profile _b) /ete/-bashre e)letellog —_d) /etelprofile Ans: d 25, ___ tool allows you to change your default X Window desktop. a) utilinux b)cempre —_¢) switehdesk 4) window Ans: 26. How many extended partitions can exist on one drive? a) 16 bya 22 al Ans: d Note: There can be 3 primary partitions and 1 extended primary partition on a single hard disk. 27. For you to create a swap partition by using fdisk, what must the partition's system ID type be? a) 83 b) 82 5 a4 Ans: b 28. What file contains the list of port numbers (and associated names) monitored by inetd? a) fetc/services b) /etc/nsorder ©) /etc/nsswitch.conf/ d) fetchhosts Ans: a 29. The location of some system configuration and system administrator executable files, is: a) /home b) /proce) /var d) /sbin €) None of the above Ans: d COMPACT IT Preliminary Page | 611
You might also like
Unix/Linux Command Reference: File Commands System Info
PDF
No ratings yet
Unix/Linux Command Reference: File Commands System Info
5 pages
Linux Commands
PDF
No ratings yet
Linux Commands
25 pages
To Study Details About Linux Utilities
PDF
No ratings yet
To Study Details About Linux Utilities
7 pages
Lab No 03
PDF
No ratings yet
Lab No 03
13 pages
OSY PPT
PDF
No ratings yet
OSY PPT
10 pages
Linux Command
PDF
No ratings yet
Linux Command
4 pages
oss
PDF
No ratings yet
oss
18 pages
EXP-1 - Study of Basic Linux Commands
PDF
No ratings yet
EXP-1 - Study of Basic Linux Commands
22 pages
LINUX Operating System
PDF
No ratings yet
LINUX Operating System
32 pages
Linux Command Line
PDF
No ratings yet
Linux Command Line
26 pages
Linux Top 50 Commands
PDF
No ratings yet
Linux Top 50 Commands
23 pages
Linux Os
PDF
No ratings yet
Linux Os
27 pages
Linux Tutorial
PDF
No ratings yet
Linux Tutorial
28 pages
1.2 Worksheet OS Lab-1
PDF
No ratings yet
1.2 Worksheet OS Lab-1
7 pages
Linux Commands
PDF
No ratings yet
Linux Commands
26 pages
linux commands
PDF
No ratings yet
linux commands
18 pages
Linux Adm Lab Commands
PDF
No ratings yet
Linux Adm Lab Commands
26 pages
50 Commands of Linux
PDF
No ratings yet
50 Commands of Linux
9 pages
Basic Linux Commands
PDF
No ratings yet
Basic Linux Commands
12 pages
Linux Basics 071450
PDF
No ratings yet
Linux Basics 071450
48 pages
OS Practical
PDF
No ratings yet
OS Practical
18 pages
Untitled
PDF
No ratings yet
Untitled
20 pages
Ubuntu Commands
PDF
No ratings yet
Ubuntu Commands
4 pages
Linux Commands
PDF
No ratings yet
Linux Commands
6 pages
Ostunit 2
PDF
No ratings yet
Ostunit 2
34 pages
Linux Lab Exercise Summary
PDF
No ratings yet
Linux Lab Exercise Summary
35 pages
Linux Commands
PDF
No ratings yet
Linux Commands
18 pages
Command
PDF
No ratings yet
Command
81 pages
Linux Commands List With Examples
PDF
No ratings yet
Linux Commands List With Examples
8 pages
Linux Basic Commands
PDF
No ratings yet
Linux Basic Commands
12 pages
Linux System Information
PDF
No ratings yet
Linux System Information
20 pages
The Linux Command Line - Notes
PDF
No ratings yet
The Linux Command Line - Notes
2 pages
Linux Commands by Javatpont 1
PDF
No ratings yet
Linux Commands by Javatpont 1
22 pages
Linux Commands
PDF
No ratings yet
Linux Commands
2 pages
23521111_LAB1
PDF
No ratings yet
23521111_LAB1
20 pages
Exercise 2 Os
PDF
No ratings yet
Exercise 2 Os
4 pages
AIM - TO Study Linux General Purpose Commands: Practical 2
PDF
No ratings yet
AIM - TO Study Linux General Purpose Commands: Practical 2
3 pages
Linux Commands
PDF
No ratings yet
Linux Commands
7 pages
Basic Linux Commands
PDF
No ratings yet
Basic Linux Commands
19 pages
Linux Commands: Single Unit by Its Name. A Directory Is A File That Acts As A Folder For Other Files
PDF
No ratings yet
Linux Commands: Single Unit by Its Name. A Directory Is A File That Acts As A Folder For Other Files
13 pages
LSP Commands 1
PDF
No ratings yet
LSP Commands 1
30 pages
All-Linux-Commmands
PDF
No ratings yet
All-Linux-Commmands
25 pages
UNIX and Shell Scripting - Module 4
PDF
No ratings yet
UNIX and Shell Scripting - Module 4
100 pages
Linux Commands
PDF
No ratings yet
Linux Commands
13 pages
Linux Basic commands
PDF
No ratings yet
Linux Basic commands
26 pages
50 Commands
PDF
No ratings yet
50 Commands
24 pages
Linux Basic Commands
PDF
No ratings yet
Linux Basic Commands
10 pages
Mastering Linux - Essential Command Line Basics
PDF
No ratings yet
Mastering Linux - Essential Command Line Basics
8 pages
LINUX Commands
PDF
No ratings yet
LINUX Commands
5 pages
Linux_Commands
PDF
No ratings yet
Linux_Commands
7 pages
unit 4 commands
PDF
No ratings yet
unit 4 commands
11 pages
Linux Com Ds
PDF
No ratings yet
Linux Com Ds
19 pages
Linux Commands
PDF
No ratings yet
Linux Commands
10 pages
11 Lab Manual Working With Files and Directories
PDF
No ratings yet
11 Lab Manual Working With Files and Directories
9 pages
Cyber Security Pr1
PDF
No ratings yet
Cyber Security Pr1
11 pages
Basic50linuscommand 100602035730 Phpapp02
PDF
No ratings yet
Basic50linuscommand 100602035730 Phpapp02
11 pages
Top 50+ Linux Commands You MUST Know - DigitalOcean
PDF
No ratings yet
Top 50+ Linux Commands You MUST Know - DigitalOcean
42 pages
Linux Notes
PDF
No ratings yet
Linux Notes
47 pages
Linux Commands
PDF
No ratings yet
Linux Commands
22 pages
29 - Multi-Task Deep Neural Networks For Natural Language Understanding
PDF
No ratings yet
29 - Multi-Task Deep Neural Networks For Natural Language Understanding
10 pages
Opinion Mining On Social Media Data Sentiment Analysis of User Preferences
PDF
No ratings yet
Opinion Mining On Social Media Data Sentiment Analysis of User Preferences
21 pages
35 - Cricket Sentiment Analysis From Bangla Text Using Recurrent Neural Network With Long Short Term Memory Model
PDF
No ratings yet
35 - Cricket Sentiment Analysis From Bangla Text Using Recurrent Neural Network With Long Short Term Memory Model
5 pages
17 - A Deep Learning Analysis On Question Classification Task Using Word2vec Representations
PDF
No ratings yet
17 - A Deep Learning Analysis On Question Classification Task Using Word2vec Representations
20 pages
22 - Improved Solar Photovoltaic Energy Generation Forecast Using Deep Learning-Based Ensemble Stacking Approach
PDF
No ratings yet
22 - Improved Solar Photovoltaic Energy Generation Forecast Using Deep Learning-Based Ensemble Stacking Approach
16 pages
SATLabel A Framework For Sentiment and Aspect Terms Based Automatic Topic Labeling
PDF
No ratings yet
SATLabel A Framework For Sentiment and Aspect Terms Based Automatic Topic Labeling
12 pages
21 - Ensemble Learning For Hyperspectral Image Classification Using Tangent Collaborative Representation
PDF
No ratings yet
21 - Ensemble Learning For Hyperspectral Image Classification Using Tangent Collaborative Representation
13 pages
15 - A Hybrid Approach For Aspect-Based Sentiment Analysis Using Deep Contextual Word Embeddings and Hierarchical Attention
PDF
No ratings yet
15 - A Hybrid Approach For Aspect-Based Sentiment Analysis Using Deep Contextual Word Embeddings and Hierarchical Attention
15 pages
16 - Artificial Intelligence and Machine Learning in Pathology The Present Landscape of Supervised Methods
PDF
No ratings yet
16 - Artificial Intelligence and Machine Learning in Pathology The Present Landscape of Supervised Methods
17 pages
A Generation Model To Unify Topic Relevance and Lexicon-Based Sentiment For Opinion Retrieval
PDF
No ratings yet
A Generation Model To Unify Topic Relevance and Lexicon-Based Sentiment For Opinion Retrieval
8 pages
A Novel Unsupervised Corpus-Based Stemming
PDF
No ratings yet
A Novel Unsupervised Corpus-Based Stemming
16 pages
Sentiment Analysis Using Neural Networks A New Approach
PDF
No ratings yet
Sentiment Analysis Using Neural Networks A New Approach
5 pages
Sentiment Analysis From Movie Reviews Us
PDF
No ratings yet
Sentiment Analysis From Movie Reviews Us
5 pages
37 - Datasets For Aspect-Based Sentiment Analysis in Bangla and Its Baseline Evaluation
PDF
No ratings yet
37 - Datasets For Aspect-Based Sentiment Analysis in Bangla and Its Baseline Evaluation
10 pages
26 - An Unsupervised Deep-Learning Method For Bone Age Assessment
PDF
No ratings yet
26 - An Unsupervised Deep-Learning Method For Bone Age Assessment
13 pages
34 - Sentiment Analysis OfYouTube Movie Trailer Comments Using Naïve Bayes
PDF
No ratings yet
34 - Sentiment Analysis OfYouTube Movie Trailer Comments Using Naïve Bayes
7 pages
41 - Product Review Sentiment Analysis by Using NLP and Machine Learning in Bangla Language
PDF
No ratings yet
41 - Product Review Sentiment Analysis by Using NLP and Machine Learning in Bangla Language
5 pages
46 - Sentiment Analysis On Bangla Conversation Using Machine Learning Approach
PDF
No ratings yet
46 - Sentiment Analysis On Bangla Conversation Using Machine Learning Approach
11 pages
14 - An Approach To Integrating Sentiment Analysis Into Recommender Systems
PDF
No ratings yet
14 - An Approach To Integrating Sentiment Analysis Into Recommender Systems
17 pages
44 - Aspect-Level Sentiment Analysis On E-Commerce Data
PDF
No ratings yet
44 - Aspect-Level Sentiment Analysis On E-Commerce Data
5 pages
43 - A Framework For Sentiment Analysis With Opinion Mining of Hotel Reviews
PDF
No ratings yet
43 - A Framework For Sentiment Analysis With Opinion Mining of Hotel Reviews
4 pages
36 - Sentiment Analysis of School Zoning System On Youtube Social Media Using The K-Nearest Neighbor With Levenshtein Distance Algorithm
PDF
No ratings yet
36 - Sentiment Analysis of School Zoning System On Youtube Social Media Using The K-Nearest Neighbor With Levenshtein Distance Algorithm
4 pages
40 - Sentiment Extraction From Bangla Text A Character Level Supervised Recurrent Neural Network Approach
PDF
No ratings yet
40 - Sentiment Extraction From Bangla Text A Character Level Supervised Recurrent Neural Network Approach
5 pages
Bangla Text Sentiment Analysis Using Supervised Machine Learning With Extended Lexicon Dictionary
PDF
No ratings yet
Bangla Text Sentiment Analysis Using Supervised Machine Learning With Extended Lexicon Dictionary
12 pages
Sentiment Analysis Using Convolutional Neural Network
PDF
No ratings yet
Sentiment Analysis Using Convolutional Neural Network
6 pages
Sentiment Analysis of Bangladesh-Specific COVID-19 Tweets Using Deep Neural Network
PDF
No ratings yet
Sentiment Analysis of Bangladesh-Specific COVID-19 Tweets Using Deep Neural Network
7 pages
39 - Sentiment Analysis of Movie Reviews and Blog Posts
PDF
No ratings yet
39 - Sentiment Analysis of Movie Reviews and Blog Posts
6 pages
Aar DCV 2
PDF
No ratings yet
Aar DCV 2
3 pages
A Deep Learning Approach For Public Sentiment Analysis in COVID-19 Pandemic
PDF
No ratings yet
A Deep Learning Approach For Public Sentiment Analysis in COVID-19 Pandemic
7 pages
579-Article Text-2248-1-10-20201027
PDF
No ratings yet
579-Article Text-2248-1-10-20201027
6 pages
Related titles
Click to expand Related Titles
Carousel Previous
Carousel Next
Unix/Linux Command Reference: File Commands System Info
PDF
Unix/Linux Command Reference: File Commands System Info
Linux Commands
PDF
Linux Commands
To Study Details About Linux Utilities
PDF
To Study Details About Linux Utilities
Lab No 03
PDF
Lab No 03
OSY PPT
PDF
OSY PPT
Linux Command
PDF
Linux Command
oss
PDF
oss
EXP-1 - Study of Basic Linux Commands
PDF
EXP-1 - Study of Basic Linux Commands
LINUX Operating System
PDF
LINUX Operating System
Linux Command Line
PDF
Linux Command Line
Linux Top 50 Commands
PDF
Linux Top 50 Commands
Linux Os
PDF
Linux Os
Linux Tutorial
PDF
Linux Tutorial
1.2 Worksheet OS Lab-1
PDF
1.2 Worksheet OS Lab-1
Linux Commands
PDF
Linux Commands
linux commands
PDF
linux commands
Linux Adm Lab Commands
PDF
Linux Adm Lab Commands
50 Commands of Linux
PDF
50 Commands of Linux
Basic Linux Commands
PDF
Basic Linux Commands
Linux Basics 071450
PDF
Linux Basics 071450
OS Practical
PDF
OS Practical
Untitled
PDF
Untitled
Ubuntu Commands
PDF
Ubuntu Commands
Linux Commands
PDF
Linux Commands
Ostunit 2
PDF
Ostunit 2
Linux Lab Exercise Summary
PDF
Linux Lab Exercise Summary
Linux Commands
PDF
Linux Commands
Command
PDF
Command
Linux Commands List With Examples
PDF
Linux Commands List With Examples
Linux Basic Commands
PDF
Linux Basic Commands
Linux System Information
PDF
Linux System Information
The Linux Command Line - Notes
PDF
The Linux Command Line - Notes
Linux Commands by Javatpont 1
PDF
Linux Commands by Javatpont 1
Linux Commands
PDF
Linux Commands
23521111_LAB1
PDF
23521111_LAB1
Exercise 2 Os
PDF
Exercise 2 Os
AIM - TO Study Linux General Purpose Commands: Practical 2
PDF
AIM - TO Study Linux General Purpose Commands: Practical 2
Linux Commands
PDF
Linux Commands
Basic Linux Commands
PDF
Basic Linux Commands
Linux Commands: Single Unit by Its Name. A Directory Is A File That Acts As A Folder For Other Files
PDF
Linux Commands: Single Unit by Its Name. A Directory Is A File That Acts As A Folder For Other Files
LSP Commands 1
PDF
LSP Commands 1
All-Linux-Commmands
PDF
All-Linux-Commmands
UNIX and Shell Scripting - Module 4
PDF
UNIX and Shell Scripting - Module 4
Linux Commands
PDF
Linux Commands
Linux Basic commands
PDF
Linux Basic commands
50 Commands
PDF
50 Commands
Linux Basic Commands
PDF
Linux Basic Commands
Mastering Linux - Essential Command Line Basics
PDF
Mastering Linux - Essential Command Line Basics
LINUX Commands
PDF
LINUX Commands
Linux_Commands
PDF
Linux_Commands
unit 4 commands
PDF
unit 4 commands
Linux Com Ds
PDF
Linux Com Ds
Linux Commands
PDF
Linux Commands
11 Lab Manual Working With Files and Directories
PDF
11 Lab Manual Working With Files and Directories
Cyber Security Pr1
PDF
Cyber Security Pr1
Basic50linuscommand 100602035730 Phpapp02
PDF
Basic50linuscommand 100602035730 Phpapp02
Top 50+ Linux Commands You MUST Know - DigitalOcean
PDF
Top 50+ Linux Commands You MUST Know - DigitalOcean
Linux Notes
PDF
Linux Notes
Linux Commands
PDF
Linux Commands
29 - Multi-Task Deep Neural Networks For Natural Language Understanding
PDF
29 - Multi-Task Deep Neural Networks For Natural Language Understanding
Opinion Mining On Social Media Data Sentiment Analysis of User Preferences
PDF
Opinion Mining On Social Media Data Sentiment Analysis of User Preferences
35 - Cricket Sentiment Analysis From Bangla Text Using Recurrent Neural Network With Long Short Term Memory Model
PDF
35 - Cricket Sentiment Analysis From Bangla Text Using Recurrent Neural Network With Long Short Term Memory Model
17 - A Deep Learning Analysis On Question Classification Task Using Word2vec Representations
PDF
17 - A Deep Learning Analysis On Question Classification Task Using Word2vec Representations
22 - Improved Solar Photovoltaic Energy Generation Forecast Using Deep Learning-Based Ensemble Stacking Approach
PDF
22 - Improved Solar Photovoltaic Energy Generation Forecast Using Deep Learning-Based Ensemble Stacking Approach
SATLabel A Framework For Sentiment and Aspect Terms Based Automatic Topic Labeling
PDF
SATLabel A Framework For Sentiment and Aspect Terms Based Automatic Topic Labeling
21 - Ensemble Learning For Hyperspectral Image Classification Using Tangent Collaborative Representation
PDF
21 - Ensemble Learning For Hyperspectral Image Classification Using Tangent Collaborative Representation
15 - A Hybrid Approach For Aspect-Based Sentiment Analysis Using Deep Contextual Word Embeddings and Hierarchical Attention
PDF
15 - A Hybrid Approach For Aspect-Based Sentiment Analysis Using Deep Contextual Word Embeddings and Hierarchical Attention
16 - Artificial Intelligence and Machine Learning in Pathology The Present Landscape of Supervised Methods
PDF
16 - Artificial Intelligence and Machine Learning in Pathology The Present Landscape of Supervised Methods
A Generation Model To Unify Topic Relevance and Lexicon-Based Sentiment For Opinion Retrieval
PDF
A Generation Model To Unify Topic Relevance and Lexicon-Based Sentiment For Opinion Retrieval
A Novel Unsupervised Corpus-Based Stemming
PDF
A Novel Unsupervised Corpus-Based Stemming
Sentiment Analysis Using Neural Networks A New Approach
PDF
Sentiment Analysis Using Neural Networks A New Approach
Sentiment Analysis From Movie Reviews Us
PDF
Sentiment Analysis From Movie Reviews Us
37 - Datasets For Aspect-Based Sentiment Analysis in Bangla and Its Baseline Evaluation
PDF
37 - Datasets For Aspect-Based Sentiment Analysis in Bangla and Its Baseline Evaluation
26 - An Unsupervised Deep-Learning Method For Bone Age Assessment
PDF
26 - An Unsupervised Deep-Learning Method For Bone Age Assessment
34 - Sentiment Analysis OfYouTube Movie Trailer Comments Using Naïve Bayes
PDF
34 - Sentiment Analysis OfYouTube Movie Trailer Comments Using Naïve Bayes
41 - Product Review Sentiment Analysis by Using NLP and Machine Learning in Bangla Language
PDF
41 - Product Review Sentiment Analysis by Using NLP and Machine Learning in Bangla Language
46 - Sentiment Analysis On Bangla Conversation Using Machine Learning Approach
PDF
46 - Sentiment Analysis On Bangla Conversation Using Machine Learning Approach
14 - An Approach To Integrating Sentiment Analysis Into Recommender Systems
PDF
14 - An Approach To Integrating Sentiment Analysis Into Recommender Systems
44 - Aspect-Level Sentiment Analysis On E-Commerce Data
PDF
44 - Aspect-Level Sentiment Analysis On E-Commerce Data
43 - A Framework For Sentiment Analysis With Opinion Mining of Hotel Reviews
PDF
43 - A Framework For Sentiment Analysis With Opinion Mining of Hotel Reviews
36 - Sentiment Analysis of School Zoning System On Youtube Social Media Using The K-Nearest Neighbor With Levenshtein Distance Algorithm
PDF
36 - Sentiment Analysis of School Zoning System On Youtube Social Media Using The K-Nearest Neighbor With Levenshtein Distance Algorithm
40 - Sentiment Extraction From Bangla Text A Character Level Supervised Recurrent Neural Network Approach
PDF
40 - Sentiment Extraction From Bangla Text A Character Level Supervised Recurrent Neural Network Approach
Bangla Text Sentiment Analysis Using Supervised Machine Learning With Extended Lexicon Dictionary
PDF
Bangla Text Sentiment Analysis Using Supervised Machine Learning With Extended Lexicon Dictionary
Sentiment Analysis Using Convolutional Neural Network
PDF
Sentiment Analysis Using Convolutional Neural Network
Sentiment Analysis of Bangladesh-Specific COVID-19 Tweets Using Deep Neural Network
PDF
Sentiment Analysis of Bangladesh-Specific COVID-19 Tweets Using Deep Neural Network
39 - Sentiment Analysis of Movie Reviews and Blog Posts
PDF
39 - Sentiment Analysis of Movie Reviews and Blog Posts
Aar DCV 2
PDF
Aar DCV 2
A Deep Learning Approach For Public Sentiment Analysis in COVID-19 Pandemic
PDF
A Deep Learning Approach For Public Sentiment Analysis in COVID-19 Pandemic
579-Article Text-2248-1-10-20201027
PDF
579-Article Text-2248-1-10-20201027