Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Cd2bcg16
C
Cd2bcg16
Community Contributor
Quizzes Created: 1 | Total Attempts: 79
| Attempts: 79 | Questions: 11
Please wait...
Question 1 / 11
0 %
0/100
Score 0/100
1. Please read!

This simple test is a quick evaluation of your skills relevant to the position you are applying for. This is not "pass or fail" test, it is an interview starter more than anything else.

The test is written in English, to test your language comprehension. Some answer are complete sentences. If you do not feel like answering in English, answer in Czech or Slovak. We will take that into account, though.

Please, try to answer all questions. It is better to have an incomplete answer than none at all.

You have 1 hour and 23 minutes to finish the entire test (and the time is ticking already!). Do not waste any time,

Good luck!!

Are you ready?

Explanation

The explanation for the given correct answer is that the test-taker is ready to begin the evaluation.

Submit
Please wait...
About This Quiz
Sw Engineer Entry Test - Quiz

Please use the password provided in your exam invite to access this test.

Personalize your quiz and earn a certificate with your name on it!
2. Which Unix/Linux command can you use to rename a file.

Explanation

The "mv" command in Unix/Linux can be used to rename a file. It stands for "move" and can be used to move or rename files and directories. By using the "mv" command followed by the current file name and the desired new file name, you can easily rename a file.

Submit
3. To insert image called pic1.gif into an HTML document, you will use the following HTML code:

<___________/>

Explanation

The correct answer is "img src="pic1.gif"". This HTML code is used to insert an image called "pic1.gif" into an HTML document. The "img" tag is used to define an image in HTML, and the "src" attribute specifies the source file (in this case, "pic1.gif") of the image to be displayed.

Submit
4. Pick all the answers that apply.

HTML form method POST ...

Explanation

The first statement, "should always be used for large data sets," is incorrect. The form method POST can be used for both small and large data sets, depending on the specific requirements of the application.

The second statement, "encodes the form data in the request header," is correct. When using the form method POST, the form data is encoded and sent in the request header, rather than being included in the URL.

Submit
5. DNS is used to

Explanation

DNS, or Domain Name System, is a protocol used to translate host names to IP addresses and vice versa. When a user enters a website URL, the DNS server translates the domain name into an IP address, allowing the user's device to connect to the correct server. Similarly, DNS can also translate IP addresses back to host names, which can be useful in certain situations, such as identifying the domain name associated with a particular IP address.

Submit
6. Which Unix/Linux command shows the current working directory.

Explanation

The Unix/Linux command "pwd" stands for "print working directory". When this command is executed, it displays the absolute path of the current working directory on the command line interface. This helps the user to know their current location within the file system hierarchy.

Submit
7. Which Unix/Linux command changes your current working directory to its parent directory?

Explanation

The Unix/Linux command "cd .." is used to change the current working directory to its parent directory. The ".." represents the parent directory, so when this command is executed, the current directory is moved up one level in the directory hierarchy. This allows the user to navigate through the file system and access files or directories in the parent directory.

Submit
8. Which Unix/Linux command can you use to copy a file.

Explanation

The Unix/Linux command "cp" is used to copy a file.

Submit
9. Which Unix/Linux command displays the disk space usage report for mounted file systems.

Explanation

The command "df" in Unix/Linux displays the disk space usage report for mounted file systems. It provides information such as the total size of the file system, the amount of used and available space, and the percentage of disk space used. This command is useful for monitoring disk usage and determining if there is enough space available on the file systems.

Submit
10. What Unix/Linux command can you use to display the file space usage summary of the current directory (including its subdirectories)

Explanation

The correct answer is du -s, du -sk, du -ks, du -s ., du -sk . These are all valid Unix/Linux commands that can be used to display the file space usage summary of the current directory (including its subdirectories). The "du" command stands for "disk usage" and the "-s" option is used to display only the total size of each specified file or directory. The "-k" option is used to display the sizes in kilobytes, while the "-s" and "-k" options can be combined as "-ks". The "." represents the current directory.

Submit
11. On a Linux system we have a directory containing file name like this:
...
2007-07-22
2007-07-28
2007-07-29
2007-07-30
2007-08-03
...
2008-04-27
2008-06-26
2008-06-29
2008-07-24
2008-07-26
...

(file names represent calendar dates).


Create a regular expression such that command

ls | grep '_______'

returns all files for May, June, July and August 2008.

Explanation

The regular expression '20008-0[5-8]' matches the pattern of the file names for the months of May, June, July, and August in 2008. The '20008' part of the expression ensures that the year is 2008, while the '0[5-8]' part matches any digit from 5 to 8 after the hyphen, representing the months from May to August. This regular expression can be used with the 'ls | grep' command to filter and display only the files for those specific months and year.

Submit
View My Results

Quiz Review Timeline (Updated): Jan 9, 2025 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Jan 09, 2025
    Quiz Edited by
    ProProfs Editorial Team
  • Aug 14, 2009
    Quiz Created by
    Cd2bcg16
Cancel
  • All
    All (11)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
Please read! ...
Which Unix/Linux command can you use to rename a file.
To insert image called pic1.gif into an HTML document, you will use...
Pick all the answers that apply.HTML form method POST ...
DNS is used to
Which Unix/Linux command shows the current working directory.
Which Unix/Linux command changes your current working directory to its...
Which Unix/Linux command can you use to copy a file.
Which Unix/Linux command displays the disk space usage report for...
What Unix/Linux command can you use to display the file space usage...
On a Linux system we have a directory containing file name like...
Alert!

Advertisement