Posted on July 17, 2021July 17, 2021Backend Developer Test Pre-Employment Tests Backend Developer Test Welcome to Backend Developer Test. Please attend the quiz in a quite place and with a stable internet connection. An use of unauthorized medium or any unfairness will violate the exam policy. NameEmailPhone Number 1 / 40 Category: Django 1. What is a Django App? Django app is an extended package with base package is Django Django app is a python package with its own components. Both 1 & 2 Option All of the above 2 / 40 Category: Django 2. Which architectural pattern does django follow? PHP MVT HTML None of the above 3 / 40 Category: Django 3. What does {{ name }} this mean in Django Templates? {{ name }} will be the output. It will be displayed as name in HTML. The name will be replaced with values of Python variable. None of the above 4 / 40 Category: Django 4. Which of these variables are the settings for django.contib.staticfiles app? STATIC_URL STATIC_ROOT STATICFILES_DIRS All of the above 5 / 40 Category: Django 5. Which of the following is a valid forloop attributes of Django Template System? forloop.reverse forloop.firstitem forloop.counter0 forloop.lastitem 6 / 40 Category: Django 6. Which of the following is the Django shortcut method to more easily render an HTML response? render response_render render_to_response render_to_html 7 / 40 Category: Django 7. What is the Django command to view a database schema of an existing (or legacy) database? manage.py inspect manage.py legacydb manage.py inspectdb None of the above 8 / 40 Category: Django 8. Django was designed to help developers take applications from concept to completion as quickly as possible. True False 9 / 40 Category: Django 9. What does {% include %} does? It will include another template. It will include content from another template having the same templates defined. It is the same as {% extend %}. None of the above 10 / 40 Category: Django 10. What is Post.objects.all() is used for? from post.models import Post m = Post.objects.all() for i in m: print(i) post1 post2 Django is awesome It is used to bring all the objects stored in Post table. It is used to create a new Post object m. Post object will bring objects from database with SQL Query: Select *. None of the above 11 / 40 Category: Django 11. What would variable m output from post.models import * m = Post.objects.filter(post_heading=”post1″) m It will print the first object which matched with heading “post1” in argument. It will print all objects. It will print all the objects which match the heading “post1”. None of the above 12 / 40 Category: Django 12. In Post.models.filter() you can pass multiple parameters in filter() to narrow your result/s. True False 13 / 40 Category: Django 13. What will happen on execution of this command : > python manage.py createsuperuser a. It will create an admin superuser. b. It will ask for name and password of the superuser. c. Both a and b d. None of the above 14 / 40 Category: Django 14. What are request.GET and request.POST objects? Python Dictionaries Python Lists Python Dictionary-Like objects None of the above 15 / 40 Category: Django 15. Which code will give us a text area form field? Field_name = forms.TextAreaField() Field_name = forms.CharField(widgets = forms.Textarea) Field_name = forms.TextField(widgets = forms.Textarea) None of the above 16 / 40 Category: Django 16. Suppose you want to count the number of books in Django. books = Book.objects.all() Which implementation would be fastest? Database level Implementation – books.count() Python Implementation – len(books) Template Language Implementation – {{ books | length }} None of the above 17 / 40 Category: Django 17. Which of these commands is not a management command of staticfiles? python manage.py collectstatic python manage.py findstatic python manage.py runserver –nostatic python manage.py makemigrations 18 / 40 Category: Django 18. What data types and objects are not accepted as an argument by Paginator class? Dictionary Tuple List None of the above 19 / 40 Category: Django 19. Which of these is not a valid method or approach to perform URL resolution? Using Template {{ url : }} in template Using reverse() in View Functions Using get_absolute_url() None of the above 20 / 40 Category: Django 20. Which of these is not a valid backend for caching in Django? django.core.cache.backends.db.DatabaseCache django.core.cache.backends.sys.memory django.core.cache.backends.filebased.FileBasedCache django.core.cache.backends.locmem.LocMemCache 21 / 40 Category: Python 1. What is the method inside the class in python language? Object Function Attribute Argument 22 / 40 Category: Python 2. Which character is used in Python to make a single line comment? / // # ! 23 / 40 Category: Python 3. Which of the following statements is correct regarding the object-oriented programming concept in Python? Classes are real-world entities while objects are not real Objects are real-world entities while classes are not real Both objects and classes are real-world entities All of the above 24 / 40 Category: Python 4. Which of the following declarations is incorrect in Python? _x = 2 __x = 3 __xyz__ = 5 None of these 25 / 40 Category: Python 5. Study the following program: a = 1 while True: if a % 7 = = 0: break print(a) a += 1 Which of the following is correct output of this program? 1 2 3 4 5 1 2 3 4 5 6 1 2 3 4 5 6 7 Invalid syntax 26 / 40 Category: Python 6. How is memory managed in Python? Python public heap space Python private heap space The python interpreter takes care of this instead Python garbage collector None of the mentioned All of above 27 / 40 Category: Python 7. To open a file c:scores.txt for writing, we use outfile = open(“c:scores.txt”, “r”) outfile = open(“c:scores.txt”, “w”) outfile = open(file = “c:scores.txt”, “r”) outfile = open(file = “c:scores.txt”, “o”) outfile = open(file = “c:scores.txt”, “x”) outfile = open(file = “c:scoress.txt”, “W”) 28 / 40 Category: Python 8. When will the else part of try-except-else be executed? always when no exception occurs when an exception occurs when an exception occurs into except block None of above All of above 29 / 40 Category: Python 9. What is the output of the following? f = None for i in range (5): with open("data.txt", "w") as f: if i > 2: break print f.closed True False None Error 30 / 40 Category: Python 10. Suppose list1 is [2, 33, 222, 14, 25], What is list1[-1] ? Error None 33 2 14 25 31 / 40 Category: Python 11. Which of the following is an invalid statement? abc = 1,000,000 a,b,c = 1000, 2000, 3000 a_b_c = 1,000,000 a b c = 1000 2000 3000 a-b-c = 100,300,400 None of above 32 / 40 Category: Python 12. What is the maximum possible length of an identifier? 31 characters 63 characters 79 characters All of the above None of the mentioned 33 / 40 Category: Python 13. Which of the following statements create a dictionary? (Multiple Correct Answers Possible d = (40:”john”, 45:”50”) d = {“john”:40, “peter”:45} d = {} d = {40:”john”, 45:”peter”} All of the above None of above 34 / 40 Category: Python 14. What are the built-in types of python? (Multiple Correct Answers Possible) Integers Floating-point Complex numbers Strings Boolean Built-in functions 35 / 40 Category: Python 15. What is the usage of help() and dir() function in Python? Returns true when 2 operands are true Returns the inverse of the boolean value used to display the defined symbols Checks if some element is present in some sequence Used to display the documentation string to see the modules, keywords, attributes, etc. 36 / 40 Category: SQL 1. Which Data Manipulation Command Is Used To Combines The Records From One Or More Tables? Select Project Join Product 37 / 40 Category: SQL 2. Sql Permits Attribute Names To Be Repeated In The Same Relation. True False 38 / 40 Category: SQL 3. Which Statement In Sql Allows Us To Change The Definition Of A Table Is? Alter Update Create Select 39 / 40 Category: SQL 4. Which Of The Following Is The Correct Order Of Occurrence In A Typical Sql Statement? Select, Group By, Where, Having Select, Where, Having, Group Byselect, Having, Where, Group By Select, Having, Where, Group By Select, Where, Group By, Having 40 / 40 Category: SQL 5. Which Of The Following Is True For A Primary Key? It Can Take A Value More Than Once It Can’t Take Null Values It Can Take Null Values None Of These 0%
Posted on May 24, 2021May 24, 2021Basic Cybersecurity Test Pre-Employment Tests Basic Cybersecurity Test Welcome to Basic Cybersecurity Test. Please attend the quiz in a quite place and with a stable internet connection. An use of unauthorized medium or any unfairness will violate the exam policy. NameEmailPhone Number 1 / 40 Category: Networking Q1: Which program prevents unauthorized external access to a system? a. Gateway b. Firewall c. Router d. Virus checker e. IDS f. Antivirus 2 / 40 Category: Networking Q2: Which of the following statements about the ping command is correct? a. Ping is an abbreviation for Packet Internet Generator. b. The ping command examines the port-level connection between the source and destination end points. c. Ping calculates the packet loss and round-trip latency between two IP endpoints. d. The ping command invokes the IP layer's RARP protocol. e. Ping is used to check arp poisoning. f. Ping creates a secure tunnel 3 / 40 Category: Networking Q3: When contrasted to the TCP/IP paradigm, which of the following layers is an addition to the OSI model? a. Application layer b. Presentation layer c. Session layer d. Session and Presentation layer e. Application and Session layer f. All of them 4 / 40 Category: Networking Q4: The IP address provided to a client by a DHCP server _________ a. depends on IP type b. is for an unlimited period c. is not time dependent d. can't be changed e. is for a limited period f. none of the mentioned 5 / 40 Category: Networking Q5: Which of the following topologies does not belong to the broadcast category? a. Bus b. Ring c. Star d. Mesh e. All of these f. None of these 6 / 40 Category: Linux Q1: What is the operating system's core? a. Shell b. Kernel c. Commands d. Script e. Application f. None of the above 7 / 40 Category: Linux Q2: How do you add a file called "testfile" to the test.tar file? a. no you cannot add a file to test.tar b. tar -cvf test.tar file1 c. tar -rvf file1 test.tar d. tar -evf testfile test.tar e. tar -xvf testfile test.tar f. tar -xvf test.tar testfile 8 / 40 Category: Linux Q3. When a file is deleted from a Unix system using the ‘rm' command, a. A normal user can recover the file; b. A user cannot recover the file; c. The file can be fully restored if the system is not restarted; d. The file will be relocated to the /lost+found directory and can only be retrieved by an administrator. e. File will be automatically restored after reboot. f. All of the statements are wrong 9 / 40 Category: Linux Q4. Which of the following facilitates fast file system recovery? a. Ext2 b. Journaling c. Caching d. Sysfs e. NTFS f. Eft4 10 / 40 Category: Linux Q5. Kali Linux is a ______? a. OS b. Kernal c. Hacking tools d. Software e. Linux-mint f. Unix 11 / 40 Category: Windows Q1: The is a Microsoft security utility that is incorporated into Windows OS and is designed to filter network data from your Windows system and prohibit hazardous communications or the apps that initiate them. a. Windows Security Essentials b. Windows Firewall c. Windows app blocker d. Bitlocker e. Windows update f. None of these 12 / 40 Category: Windows Q2. What run command can you use to see what apps are loaded, when you boot up your computer? a. cmd b. ipconfig c. msconfig d. startup e. bootevent f. dxdiag 13 / 40 Category: Windows Q3. Which command is used to create a directory or a subdirectory? a. Dir b. Md c. Mkdir d. Makedir e. Mkfolder f. Both c and d 14 / 40 Category: Python Q1. What will the following Python statement produce? >>>"tfltd"[2:] a. tf b. tfl c. td d. ltd e. f f. flt 15 / 40 Category: Python Q2. What happens when the expression '5' == 5 is executed? a. False b. Ture c. ValueError occurs d. TypeError occurs e. It will show nothing f. It will show a error 16 / 40 Category: Python Q3. Why is the keyword ‘pass' used in a Python program? a. The pass keyword is used to exit the specified application. b. The pass keyword is used to executed nothing. c. The pass keyword is used to halt the loop's execution. d. The pass keyword is used to exit a program's loop. e. The pass keyword is used to skip current loop. f. The pass keyword is used to stop all next commands. 17 / 40 Category: VAPT Q1. What types of restriction is given by white box pentesting? a. Only the internal operation of a system is known to the tester. b. The internal operation of a system is completely known to the tester. c. The internal operation of a system is only partly accessible to the tester. d. Only the external operation of a system is accessible to the tester. e. The external operation is partly accessible to the tester. f. No information is provided to tester 18 / 40 Category: VAPT Q2. From below metioned statement Which one is the fist step for a security scanning process? a. Analysis b. Exploitation c. Risk assesment d. Vulnerability identification e. Remediation f. Gaining access 19 / 40 Category: VAPT Q3. How anyone can know that a data breach has occurred on specific devices like pc, laptops, mobile? a. Data modification and deletion b. Large number of login attempts. c. Authenticated data creation d. No use of Antivirus and firewall e. From increasing network traffic f. From device configuration 20 / 40 Category: VAPT Q4. Which methods of scanning do a good tester should perform for a vulnerability assessment and penetration testing? a. Automated scan b. Manual Scan c. Scan with tools like nessus d. Manual Scanning with burp suite e. Both automated and manual scan f. Use of metasploit framework instead 21 / 40 Category: Web App Security Q1. From below mentioned statement which one is not an XSS attack? a. Stored XSS b. DNS XSS c. Reflected XSS d. DOM-based XSS e. Automated XSS f. CSRF 22 / 40 Category: Web App Security Q2. Choose two client side attack? a. XSS b. SQL injection c. XXE injection d. Access control e. CSRF f. SSRF 23 / 40 Category: Web App Security Q3. Acunetix and burp suite are usually used for? a. Antimalware b. Web application firewalls c. Web-focused vulnerability detection tools d. Website hacking tools e. Website cracking tools 24 / 40 Category: Web App Security Q4. Which of the following can be regarded as a potential remedy for the SQL injection vulnerability? a. Data Validation b. Secure Cookies c. Encryption d. Comprehensive exception handling e. b & c f. None of the above 25 / 40 Category: Web App Security Q5. From the following statement Which one is not on OWASP's top 10 web application security risks? a. Sensitive data exposure b. XML external entities c. Noncompliance d. Insecure deserialization e. Cross site request forgery attack f. Injection 26 / 40 Category: Wifi security and general hacking questions Q1. This is the foremost used tool the works best for WEP and WPA cracking. This tool is additionally used FMS attack technique, PTW attack method? a. Kismet b. Aircrack-ng c. WLAN crack d. Airguard e. Wificracker f. Airstriker 27 / 40 Category: Wifi security and general hacking questions Q2. Most vulnerable endpoint to an organization that uses online activity? a. Computer b. Router c. Mobile d. End-User e. Switch f. Hub 28 / 40 Category: Wifi security and general hacking questions Q3. By which techniques it would be possible to break the supreme secure endpoint? a. Social engineering b. Man in the middle c. Cross site scripting d. Hijacking e. Dns spoofing f. privilege escalation 29 / 40 Category: Wifi security and general hacking questions Q4. Which is not a sniffing attacks? a. IP spoofing b. Web password sniffing c. Application-level sniffing d. Dns spoofing e. Blowfish f. Man in the middle 30 / 40 Category: Wifi security and general hacking questions Q5. Which of the subsequent isn't an external threat to a laptop or a network? a. Ignorance b. Trojan horses c. Adware d. Crackers e. Malware f. Viruses 31 / 40 Category: SQL Q1: Which of the put away technique is utilized to test the SQL injection attack? a. xp_write b. xp_reg c. xp_regwrite d. XP_Write e. a and b f. a and c 32 / 40 Category: SQL Q2: What is a primary key ? a. It's a key to login in database b. It is password that is stored in mysql c. It is used in website programming d. This is a special kind of unique key, and it has implicit NOT NULL constraint e. It is commonly used in linux command line f. SSL certificate uses primary key 33 / 40 Category: SQL Q3: How many types of Join are there in SQL ? a. 3 b. 4 c. 2 d. 1 e. 5 f. 6 34 / 40 Category: Mobile Security Q1: Phone OS contains open APIs that might be _____________ attack. a. useful for b. vulnerable to c. easy to d. meant for e. Mango f. Symbian 35 / 40 Category: Mobile Security Q2: Which of the accompanying device is utilized for Blackjacking? a. BBAttacker b. BBProxy c. Blackburried d. BBJacking e. BBCracking f. BBSnoofing 36 / 40 Category: Mobile Security Q3: How to scan a mobile device vulnerability ? a. Scan all the app permissions, network and OS services b. Use vpn c. Use wireshark to monitor traffic d. Use Kali Linux e. Test browser security f. Check the ip address of the mobile device 37 / 40 Category: Mobile Security Q4: Is it possible to record whatsapp call with SS7 Exploit? a. Yes b. No 38 / 40 Category: Malware/ Ransomware / Spyware/ Rootkit Q1: Which malware cannot generate copies of themselves or clone them? a.Worms b.Rootkits c.viruses d. Rats e.Torjon f. botnets 39 / 40 Category: Malware/ Ransomware / Spyware/ Rootkit Q2: Which of the malware gives privileges to the attacker's administrative controls and allows to do almost anything with the infected computers? a. Rootkits b. Worms c. RATs d. viruses e. botnets f. Torjon 40 / 40 Category: Malware/ Ransomware / Spyware/ Rootkit Q3: Which is valid about Worms? a. Worms on existing projects and must be initiated when a client opens the program. b. Worms shift and conceal themselves in the working framework c. Self-recreating infections that endeavor security weaknesses to naturally spread themselves across PCs and organizations. d. a and b e. a, b and c f. c 0%
Posted on October 31, 2020October 31, 2020Analytical Test Pre-Employment Tests Analytical Test Welcome to Analytical Test. Please attend the quiz in a quite place and with a stable internet connection. An use of unauthorized medium or any unfairness will violate the exam policy. NameEmailPhone NumberWhich position you've applied ?Which position you've applied ?Android DeveloperiOS DeveloperFull Stack DeveloperSoftware Q/A EngineerJr. Cybersecurity EngineerSales ExecutiveProject ManagerAssit. Project ManagerGeneral ManagerAssit. General ManagerSales ManagerBusiness Research AnalystAccountantCTOQuality Control ExecutiveDigital Marketing ManagerSEO ExpertGoogle Ads ExpertGraphics DesignerHR ExecutiveInternFrontend ProgrammerBackend ProgrammerContent WriterCreative DirectorHR AdminHR AssistantHR Admin TraineeHR ManagerCustomer Support ExecutiveSocial Media Management ExecutiveMarketing Tools & Automation Expert 1 / 40 Category: Leadership Q1: Which of the following is the best step a leader can take when employees express concerns about a rumored change within the organization? Reassure employees that everything is going to be all right and that the company upper management is working to develop an effective plan. Invite employees to express their concern and shares ideas to help ease the stress they are feeling and to empower them to work together to contribute toward a shared solution. Minimize discussion about the rumors until a clear plan is ready for implementation this gives senior managers time to develop an effective plan. 2 / 40 Category: Leadership Q2: If a conflict cannot be resolved after intervention, what might you consider doing? Re-locating employees to different departments Firing them both to completely eliminate the problem Leaving things to blow over Supervising them 24/7 3 / 40 Category: Leadership Q3: Which of these is NOT a way in which you can be more assertive when giving a presentation? Being direct and keeping to the point Letting your emotions govern your reactions Standing up for yourself Speak loudly, slowly and clearly 4 / 40 Category: Leadership Q4: You disagree with what someone has said: how should you react? Ask questions to learn more about the opinion Be reasonable and refuse to listen Get emotionally involved and have a heated discussion Stick with your one-sided view on the situation 5 / 40 Category: Leadership Q5: When should you address a case of misconduct? As soon as it comes to your attention When a disciplinary hearing has been scheduled When more than one person has complained Within a year of the incident 6 / 40 Category: Leadership Q6: Which of these is an example of open, positive body language? Indirect eye contact Folded arms Enthusiastic hand gestures Keeping facial expressions neutral 7 / 40 Category: Leadership Q7: How should you record meeting notes? In details, complex sentences In bullet points As a record of dialogue A word-for-word recount of the meeting 8 / 40 Category: Leadership Q8: When conducting a debrief you should... be bold, be honest and not afraid to hurt people’s feelings should get every team member to voice out their feeling and opinions make it as short as possible because everybody is tired 9 / 40 Category: Leadership Q9: Leadership may be defined as... the ability to motivate people to work towards a common goal the ability to command people to work towards a common goal the ability to discipline people 10 / 40 Category: Leadership Q10: Effective up-front speaking... will improve the commitment of your people helps you to capture the interest and comprehension of your audience makes your plans successful 11 / 40 Category: Logical Thinking Q1: Find the missing term in the series: DC, DE, FE, ??, HG, HI DE ED FG GF 12 / 40 Category: Logical Thinking Q2: Find the missing term in the series: A, C, F, ?, O K H J I 13 / 40 Category: Logical Thinking Q3: Find the missing term in the series: CMM, EOO, GQQ, _____, KUU GRR GSS ISS ITT 14 / 40 Category: Logical Thinking Q4: Here are some words translated from anartificial language.gorblflur means fan beltpixngorbl means ceiling fan arthtusl means tile roofWhich word could mean “ceiling tile”? gorbltusl flurgorbl arthflur pixnarth 15 / 40 Category: Logical Thinking Q5: Here are some words translated from anartificial language.granamelke means big treepinimelke means little tree melkehoon means tree houseWhich word could mean “big house”? granahoon pinishur pinihoon melkegrana 16 / 40 Category: Logical Thinking Q6: Of the following two statements, both of which cannot be true, but both also can be false. Which are those two statements? I. All machines make noise II. Some machines are noisy III. No machine makes noise IV. Some machines are not noisy. I & II III & IV I & III II & IV 17 / 40 Category: Logical Thinking Q7: Danielle has been visiting friends in Ridge-wood for the past two weeks. She is leaving tomorrow morning and her flight is very early. Most of her friends live fairly close to the airport. Madison lives ten miles away. Frances lives five miles away, Samantha, seven miles. Alexis is farther away than Frances, but closer than Samantha. Approximately how far away from the airport is Alexis? nine miles seven miles eight miles six miles 18 / 40 Category: Logical Thinking Q8: Tanya is older than Eric. Cliff is older than Tanya. Eric is older than Cliff. If the first two statements are true, the third statement is True False Uncetain 19 / 40 Category: Logical Thinking Q9: A four-person crew from Classic Colors is painting Mr. Field's house. Michael is painting the front of the house. Ross is in the alley behind the house painting the back. Jed is painting the window frames on the north side, Shawn is on the south. If Michael switches places with Jed, and Jed then switches places with Shawn, where is Shawn? in the alley behind the house on the north side of the house in front of the house on the south side of the house 20 / 40 Category: Logical Thinking Q10: Children are in pursuit of a dog whose leash has broken. James is directly behind the dog. Ruby is behind James. Rachel is behind Ruby. Max is ahead of the dog walking down the street in the opposite direction. As the children and dog pass, Max turns around and joins the pursuit. He runs in behind Ruby. James runs faster and is alongside the dog on the left. Ruby runs faster and is alongside the dog on the right. Which child is directly behind the dog? James Ruby Rachel Max 21 / 40 Category: Abstract Reasoning Q1: Which figure completes the statement? A B C D 22 / 40 Category: Abstract Reasoning Q2: Which figure is the odd one out? A B C D E 23 / 40 Category: Abstract Reasoning Q3: Which figure belongs in neither group? A B C D 24 / 40 Category: Abstract Reasoning Q4: Which figure completes the grid? A B C D 25 / 40 Category: Abstract Reasoning Q5: Which figure completes the series? A B C D 26 / 40 Category: Abstract Reasoning Q6: Which shape comes next in the sequence? A B C D E 27 / 40 Category: Abstract Reasoning Q7: Which figure is the odd one out? A B C D E 28 / 40 Category: Abstract Reasoning Q8: Which figure completes the series? A B C D 29 / 40 Category: Abstract Reasoning Q9: Which figure belongs in neither group? A B C D 30 / 40 Category: Abstract Reasoning Q10: Which figure completes the grid? A B C D 31 / 40 Category: Numerical Reasoning Q1: Look at this series: 70, 71, 76, __, 81, 86, 70, 91, . . .What number should fill the blank? 70 71 80 96 32 / 40 Category: Numerical Reasoning Q2: Insert the arithmetical signs in the following numerical figure. 9 6 3 = 27 +, x -, + /, + +, / 33 / 40 Category: Numerical Reasoning Q3: Look at this series: 83, 73, 93, 63, __, 93, 43, . . .What number should fill the blank? 33 53 73 93 34 / 40 Category: Numerical Reasoning Q4: Look at this series: F2, __, D8, C16, B32, . . .What number should fill the blank? A16 G4 E4 E3 35 / 40 Category: Numerical Reasoning Q5: This is a numerical series. Find the missing item. 46, 50, 42, 58, 26, ? 90 84 72 60 36 / 40 Category: Numerical Reasoning Q6: Look at this series: 2, 1, (1/2), (1/4), ... What number should come next? (1/3) (1/8) (2/8) (1/16) 37 / 40 Category: Numerical Reasoning Q7: Look at this series: 7, 10, 8, 11, 9, 12, ... What number should come next? 7 10 12 13 38 / 40 Category: Numerical Reasoning Q8: Look at this series: 36, 34, 30, 28, 24, ... What number should come next? 20 22 23 26 39 / 40 Category: Numerical Reasoning Q9: Look at this series: 22, 21, 23, 22, 24, 23, ... What number should come next? 22 24 25 26 40 / 40 Category: Numerical Reasoning Q10: Look at this series: 53, 53, 40, 40, 27, 27, ... What number should come next? 12 14 27 53 Your score is 0%
Posted on October 30, 2020January 6, 2021Cultural Fit Test Pre-Employment Tests Cultural Fit Test Welcome to Cultural Fit Test. Please attend the quiz in a quite place and with a stable internet connection. An use of unauthorized medium or any unfairness will violate the exam policy. Which position you've applied ?Android DeveloperiOS DeveloperFull Stack DeveloperSoftware Q/A EngineerJr. Cybersecurity EngineerSales ExecutiveProject ManagerAssit. Project ManagerGeneral ManagerAssit. General ManagerSales ManagerBusiness Research AnalystAccountantCTOQuality Control ExecutiveDigital Marketing ManagerSEO ExpertGoogle Ads ExpertGraphics DesignerHR ExecutiveInternFrontend ProgrammerBackend ProgrammerContent WriterCreative DirectorHR AdminHR AssistantHR Admin TraineeHR ManagerCustomer Support ExecutiveSocial Media Management ExecutiveMarketing Tools & Automation Expert 1 / 60 Category: Attention To Details Q1: Which is the different from the other two? Qaanniviit 156 3905 Nuussuaq Qaannivit 156 3905 Nuussuaq Qaanniviit 156 3905 Nuussuaq No difference 2 / 60 Category: Attention To Details Q2: Which is the different from the other two? No difference 878968 897857 878968 897857 878968 897857 3 / 60 Category: Attention To Details Q3: Which is the different from the other two? 9, Rue de la Pompe 78200 No difference 9, Rue de la Pompe 78200 9, Rue de la Pompe 78200 4 / 60 Category: Attention To Details Q4: Which is the different from the other two? Statzim Linetriplab Haytone Statzim Linetriplab Haytone Statzim Linetriplab haytone No difference 5 / 60 Category: Attention To Details Q5: Which is the different from the other two? No difference 9.891E+11 9.8999E+11 9.891E+11 6 / 60 Category: Attention To Details Q6: Which is the different from the other two? 98984832 32452 98984832 32452 98984032 32452 No difference 7 / 60 Category: Attention To Details Q7: Which is the different from the other two? No difference 8.0881E+11 8.0881E+11 8.0881E+11 8 / 60 Category: Attention To Details Q8: Which is the different from the other two? 1.00298E+14 1.00289E+14 1.00298E+14 No difference 9 / 60 Category: Attention To Details Q9: Which is the different from the other two? Lavalleja 58 San Luis al Medio Lavalleja 58 San Luis al Medio No difference Lavalleja 58 San Luis al Medio 10 / 60 Category: Attention To Details Q10: Which is the different from the other two? No difference The Howard Paradise The Howard Paradise The Howard Paradise 11 / 60 Category: Emotional Intelligence Q1 When pursuing a goal, I am able to manage anxiety, anger, fear, and stress. Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly agree 12 / 60 Category: Emotional Intelligence Q2 A store clerk is moving slowly at the register, and I’m in a rush to pay and get out the door. I … Feel bad for myself. Nobody gives good service anymore Say loudly so that everyone else in the line as well as the clerk can hear me, “Why is the line moving so slowly? Some people have things to do and can’t wait all day!” Admit that this is life on life’s terms. I weigh my options. I could leave my item and try to pick one up somewhere else later when I am not in a rush, or I could wait in line. I choose to wait in line and feel secure with my choice. 13 / 60 Category: Emotional Intelligence Q3: I am able to see things from another person’s perspective Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly agree 14 / 60 Category: Emotional Intelligence Q4: When my car breaks down on the way to work, I … Get sacred and cry. What if I am late at work? Who will I call to help me? What if I am stuck here? By the time I call the tow truck, I am falling apart. Get angry and kick my car. This stupid car is a piece of junk and the guy who sold it to me is a crook! I call my boss and screaming mad, cursing out my car. Then I call the tow truck and yell at the dispatcher to send the truck now! First I call my boss and let her know what happened. Then I call a tow truck. I am not sure if it is safe to stand on the side of the road, so I use my intuition to guide me. In the end, I choose to it in my car with the doors locked until the tow truck arrives. 15 / 60 Category: Emotional Intelligence Q5 I maintain a sense of humor at appropriate times and in appropriate places, without using sarcasm or hurting the feelings of others. Get nervous every time he sends me an email or passes my desk. I spend most of the time apologizing to him. Maybe I am not very good at my job. He’s probably right. Quit. Who does he think he’s messing with? I don’t have to take this! Do my job. When he gets really out of control, I ask him to speak nicely to me. I am confident about the value of my work, although I am always seeking to improve. If possible, I request a meeting with my manager to smooth thing out. And I work toward timely meetings to ensure that we are on the same page, and we preempt issues that may come up. 16 / 60 Category: Emotional Intelligence Q6 My manager yells at me a lot. He acts like I am single-handedly ruining the company. I … Get nervous every time he sends me an email or passes my desk. I spend most of the time apologizing to him. Maybe I am not very good at my job. He’s probably right Quit. Who does he think he’s messing with? I don’t have to take this! Do my job. When he gets really out of control, I ask him to speak nicely to me. I am confident about the value of my work, although I am always seeking to improve. If possible, I request a meeting with my manager to smooth thing out. And I work toward timely meetings to ensure that we are on the same page, and we preempt issues that may come up. 17 / 60 Category: Emotional Intelligence Q7: I am able to utilize feedback and criticism to grow personally and professionally. Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly agree 18 / 60 Category: Emotional Intelligence Q8: I recognize how my behavior affects others emotionally. Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly agree 19 / 60 Category: Emotional Intelligence Q9: In a difficult situation, I: Get scared Retreat if possible Maintain a positive attitude Let others take the lead 20 / 60 Category: Emotional Intelligence Q10: When criticized, I: Ignore the criticism Listen and learn Become defensive Get angry 21 / 60 Category: Verbal Reasoning Q1: You find that the person whom you call your friend has been cheating you. What would you do? Make him realize his mistake Tell other friends about him Break relations with him Give him tit for tat 22 / 60 Category: Verbal Reasoning Q2: If air is called green , green is called blue, blue is called sky, sky is called yellow, yellow is called water and water is called pink, then what is the color of clear sky ? Blue Sky Yellow Water Pink 23 / 60 Category: Verbal Reasoning Q3: Amit said - "This girl is the wife of the grandson of my mother". How is Amit related to the girl? Brother Grandfather Husband Father-in-law 24 / 60 Category: Verbal Reasoning Q4: Clock : Time :: Thermometer : ? Heat Radiation Energy Temperature 25 / 60 Category: Verbal Reasoning Q5: Fear : Threat :: Anger : ? Compulsion Panic Provocation Force 26 / 60 Category: Verbal Reasoning Q6: Read the description below and find the right answer. I. Standard of living among the middle class society is constantly going up since part of few years. II. Indian Economy is observing remarkable growth. Statement I is the cause and statement II is its effect. Statement II is the cause and statement I is its effect. Both the statements I and II are independent causes. Both the statements I and II are effects of independent causes. Both the statements I and II are effects of some common cause. 27 / 60 Category: Verbal Reasoning Q7: Read the description below and find the right answer. I. The staff of Airport Authorities called off the strike they were observing in protest against privatization. II. The staff of Airport Authorities went on strike anticipating a threat to their jobs. Statement I is the cause and statement II is its effect. Statement II is the cause and statement I is its effect. Both the statements I and II are independent causes. Both the statements I and II are effects of independent causes. Both the statements I and II are effects of some common cause. 28 / 60 Category: Verbal Reasoning Q8: CUP : LIP :: BIRD : ? BUSH GRASS FOREST BEAK 29 / 60 Category: Verbal Reasoning Q9: Flow : River :: Stagnant : ? Rain Stream Pool Canal 30 / 60 Category: Verbal Reasoning Q10: Arrange the words given below in a meaningful sequence. 1. Word 2. Paragraph 3. Sentence 4. Letter 5. Phrases 4, 1, 5, 2, 3 4, 1, 3, 5, 2 4, 2, 5, 1, 3 4, 1, 5, 3, 2 31 / 60 Category: Commitment Q1 My organization is known as a good employer locally. Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly agree 32 / 60 Category: Commitment Q2 I would be just as happy working for a different organization if the work was similar Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly agree 33 / 60 Category: Commitment Q3: I feel very little loyalty to this organization Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly agree 34 / 60 Category: Commitment Q4: I tell my friends this is a good organization to work for. Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly agree 35 / 60 Category: Commitment Q5: I understand how my job contributes to the organization's goals and objectives. Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly agree 36 / 60 Category: Commitment Q6: I would accept almost any type of job assignment in order to keep working for this organization. Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly Agree 37 / 60 Category: Commitment Q7: It would take very little change in my present circumstances to make me to leave this organization. Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly Agree 38 / 60 Category: Commitment Q8: I find that my values and the organization's values are very similar. Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly Agree 39 / 60 Category: Commitment Q9: I understand how my job contributes to the organization's goals and objectives. Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly Agree 40 / 60 Category: Commitment Q10: I am proud to tell others that I am part of this organization. Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly Agree 41 / 60 Category: Courtesy Q1: From which direction should you approach your dining-table chair in order to sit down? From the left of the chair From the right of the chair Either direction is correct None of the above 42 / 60 Category: Courtesy Q2: When answering a business phone, always answer: With a simple hello. It sounds more approachable and less pretentious With your name With your name, department, title, and a greeting. 43 / 60 Category: Courtesy Q3: When introducing two people, you should _____________. give their names and a bit of information about each person give their names only give some information about each person if that person is a family member (otherwise, in respect for each person’s privacy, don’t share anything more than the name). None of the above 44 / 60 Category: Courtesy Q4: When someone has just given you a compliment, it’s good to _________. givem a complement thank them do nothing give a gentle smile 45 / 60 Category: Courtesy Q5: In business, when you fail to recall the name of a person met earlier, you can ask him/her for _________. for his or her initials for his or her business card for his or her surname None of the above 46 / 60 Category: Courtesy Q6: You’re delivering an important presentation that you don’t want interrupted with questions. You should: Refuse to answer the first question that someone asks. The rest of the audience will get the message Tell the audience beforehand that you prefer to answer all questions at the end of the presentation Answer questions as they are asked, even though you prefer not to 47 / 60 Category: Courtesy Q7: Learning to speak a few words of the language of clients, customers or co-workers whose first language is different from yours is: Generally a good idea, as the effort communicates respect for the other culture Generally not a good idea because they may feel patronized. Generally not a good idea, because they might be offended if you make a mistake in vocabulary or pronunciation 48 / 60 Category: Courtesy Q8: If someone is in his/her room with the door closed, I should go right in go away call them knock on the door 49 / 60 Category: Courtesy Q9: In business, keep telephone calls very short because the other person may not be: interested in talking to you paying attention to you noting down what you say free to talk to you 50 / 60 Category: Courtesy Q10: You’re presenting to a potential client. Suddenly his or her body language turns very negative. You should: i) Try to engage the person in some interaction. ii) Stop in the middle of the presentation and ask the person what is wrong. iii) Ask questions to determine what you said that was upsetting and attempt to rectify the situation. iv) Ignore the reaction and finish your presentation as planned. (i) and (ii) (ii) and (iii) (iii) and (iv) (i) and (iii) 51 / 60 Category: Dedication Q1: I follow a schedule Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly Agree 52 / 60 Category: Dedication Q2: I often forget to put things back in their proper place. Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly Agree 53 / 60 Category: Dedication Q3: I meet commitments and keep promises Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly Agree 54 / 60 Category: Dedication Q4: I pay attention to details Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly Agree 55 / 60 Category: Dedication Q5: I get chores done right away Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly Agree 56 / 60 Category: Dedication Q6: I hold myself accountable for meeting my objectives Strongly Disagre Disagree Neither Agree nor Disagree Agree Strongly Agree 57 / 60 Category: Dedication Q7: I shirk my duties Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly Agree 58 / 60 Category: Dedication Q8 I make a mess of things. Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly Agree 59 / 60 Category: Dedication Q9: I am organized and careful in my work Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly Agree 60 / 60 Category: Dedication Q10: I leave my belongings around. Strongly Disagree Disagree Neither Agree nor Disagree Agree Strongly Agree Your score is 0%
Posted on October 29, 2020January 6, 2021Human Resource Management Test 231 Created on October 29, 2020 Human resource Management Test Welcome to Human resource Management Test. Please attend the quiz in a quite place and with a stable internet connection. An use of unauthorized medium or any unfairness will violate the exam policy. NameEmailPhone Number 1 / 25 Q1: Manager who can only issue orders in his own department Line Managers Staff Managers HR Mangers All of the above 2 / 25 Q2: Introduction to new or current trends for optimal ‘HR’ utilization is part of- Coordinative function Staff function Line Function All of the above 3 / 25 Q3: Use of data, facts, analytics and evaluated research for making decision is Evidence based HRM High performance work system All of the above None of the above 4 / 25 Q4: A company's ' HR' department can create an advisory relationship through Line authority Staff authority Hiring authority All of the above 5 / 25 Q5: Training effects that are to be measured consist of Reaction Learning Behavior All of the above 6 / 25 Q6: A process of making workers highly skilled, with help of on job training and formal learning is Job rotation Off the job training Job instruction Apprenticeship training 7 / 25 Q7: Method in which teams consisting managers compete on solving problems is called Management Game Action Learning Action Learning Case study method 8 / 25 Q8: 'Behaving ethically' is included in Personal competencies Interpersonal competencies Business management None of the above 9 / 25 Q9: In group interview, questions are being asked from interviewee, known as Panel interview Mass interview Computer interview None of the above 10 / 25 Q10: Measuring performance on basis of job tasks actually done is called Sampling technique Work sampling technique Work sample All of the above 11 / 25 Q11: Improving current and future management performance is called- Job rotation Job training Lifelong learning Management development 12 / 25 Q12: A systematic method to teach skills for job while presenting facts and getting feedback is called Job rotation Off the job training Job instruction training Programmed learning 13 / 25 Q13: A list, consisting of job duties and responsibilities, part of Job description Job analysis Job specifications None of the above 14 / 25 Q14: Determining type of people, which a company needs for job is referred as Job description Job analysis Job specifications None of the above 15 / 25 Q15: An interview, interviewer does not ask question as a set format, called Non directive interview Directive interview Both of the above None of the above 16 / 25 Q16. What is human factor? Micro and macro issues of socioeconomic factor. Interrelated Physiological, Psychological and Socio-ethical aspects of human being. The entire concept of human behaviour None of the above. 17 / 25 Q17: Job Analysis is a systematic procedure for securing and reporting information defining a ______________. specific job specific product specific service all of these 18 / 25 Q18: What are the factors responsible for the growth of HRM? Development of scientific management and awakened sense of social responsibility. The problem of how the available human resource could effectively minimise the cost and maximise the production. Technical factors, awakening amongst workers, attitude of the government, cultural and social system. All the above. 19 / 25 Q19: Which among the followings describe the skills that are available within the company? Human Resource inventory HRIS Skills inventory Management inventories 20 / 25 Q20: Who has defined personnel management as a field of management which has to do with planning and controlling various operative functions of procuring, developing, maintaining and utilizing labor force? Harold Koontz Glueck Michael Jucius Flippo 21 / 25 Q21: Resources and capabilities that serve as a source of competitive advantage for a firm over its rivals are called _______________. core competency core competence competitive advantage competency 22 / 25 Q22. Human Resource planning is compulsory for ______________. effective employee development programme base for recruitment base for selection policy all of these 23 / 25 Q23: Job analysis, HR planning, recruitment, selection, placement, inductions and internal mobility are few important functions which come under the heading of______________ of HRM. integration function development maintenance procurement function 24 / 25 Q24: Directing is one of the important functions of HRM which comes under___________. managerial function operative function technical function behavioral function 25 / 25 Q25: Whom does Human relation approach refer to? Worker, who should be given humanly treatment at work. Mutual cooperation between employer and employee in solving the common problems. Integration of people into a work situation that motivates them to work together to achieve productivity and also economic, psychological and social satisfaction. None of the above. Your score is The average score is 63% LinkedIn Facebook Twitter VKontakte 0% Restart quiz
Posted on October 29, 2020January 6, 2021General Aptitude Test 20 Created on October 29, 2020 General Aptitude Test NameEmailPhone Number 1 / 25 Q1: If A =x% of y and B =y% of x, then which of the following is true? A is greater than B If x is smaller than y Then A is greater than B A is smaller than B None of the above 2 / 25 Q2: Can you find the approximate value for the below equation 83.01 * 79.01 - 74.99 + 79.99 / 76.01 6461 6463 6485 6513 3 / 25 Q3: A cistern can be filled in 9 hours but due to a leak at its bottom it takes 10 hours. If the cistern is full find the time taken to empty the tank (in hours). 86 90 45 78 4 / 25 Q4: A tennis court has a length of 28 units, and breadth of 20 units. Find the area of the tennis court? 784 48 280 560 5 / 25 Q5: X starts a business with Rs.45000. Y joins in the business after 3 months with Rs.30000. What will be the ratio in which they should share the profit at the end of the year? 1:2 2:1 1:3 3:1 6 / 25 Q6: A boat is rowed down a river 40 km in 5 hr and up a river 21 km in 7 hr. Find the speed of the boat and the river. 61/12 kmph 4.5 kmph 5 kmph 5.5 kmph 7 / 25 Q7: What is the distance covered by a car travelling at a speed of 40 kmph in 15 minutes? 10 kms 20 kms 30 kms 40 kms 8 / 25 Q8: An aeroplane covers a certain distance at a speed of 240 kmph in 5 hours. To cover the same distance in 1 hours, it must travel at a speed of: 300 kmph 360 kmph 600 kmph 720 kmph 9 / 25 Q9: Walking at the rate of 4 kmph a man cover a certain distance in 2 hr 45 min. Running at a speed of 16.5 kmph the man will cover the same distance in. 12 min 40 min 50 min 60 min 10 / 25 Q10: The speed of a car increases by 2 kms after every one hour. If the distance travelling in the first one hour was 35 kms. what was the total distance travelled in 12 hours? 456 km 482 km 558 km 552 km 11 / 25 Q11: A person walking at 4 Kmph reaches his office 8 minutes late. If he walks at 6 Kmph, he reaches there 8 minutes earlier. How far is the office from his house? 31/5 km 21/5 km 41/5 km 51/5 km 12 / 25 Q12: In a throw of dice what is the probability of getting number greater than 5 1/2 1/3 1/5 1/6 13 / 25 Q13: A bag contains 12 white and 18 black balls. Two balls are drawn in succession without replacement. What is the probability that first is white and second is black? 18/145 18/29 36/135 36/145 14 / 25 Q14: A runner can complete a 750 m race in two and a half minutes. Will he be able to beat another runner who runs at 17.95 km/hr? 15/248 14/584 17/582 16/243 15 / 25 Q15 Consider another example where a pack contains 4 blue, 2 red and 3 black pens. If a pen is drawn at random from the pack, replaced and the process repeated 2 more times, What is the probability of drawing 2 blue pens and 1 black pen? 15/248 14/584 17/582 16/243 16 / 25 Q16: If P (A) = 0.18, P (B) = 0.5 and P (B|A) = 0.2, find P(A n B)? 0.32 0.36 0.16 0.64 17 / 25 Q17: A completes a work in 12 days and B complete the same work in 24 days. If both of them work together, then the number of days required to complete the work will be 8 days 5 days 6 days 7 days 18 / 25 Q18: The sum required to earn a monthly interest of Rs 400 at 10 % per annum at simple interest is Rs 2000 Rs 12000 Rs 24000 Rs 48000 19 / 25 Q19: A man borrowed some amount, after 3 years he paid Rs.10,400/- with 10% interest, then how much Amount he borrowed? Rs 7000/- Rs 8000/- Rs 9000/- Rs 1000/- 20 / 25 Q20: What is the rate of simple interest?I. The total interest earned was Rs 4000/-. II. The sum was invested for 4 years. Statement I alone are sufficient to answer the question, while the data in Statement II alone are not sufficient to answer the question Statement II alone are sufficient to answer the question, while the data in Statement I alone are not sufficient to answer the question Statement I or in Statement II alone are sufficient to answer the question Statements I and II together are not sufficient to answer the question 21 / 25 Q21: A person took some amount with some interest for 2 years, but increase the interest for 1%, he paid Rs.120/- extra, then how much amount he took? Rs 5500 Rs 6000 Rs 4000 Rs 7000 22 / 25 Q22 What is the difference between the compound interests on Rs. 5000 for 11/2 years at 4% per annum compounded yearly and halfyearly? Rs. 2.04 Rs. 4.80 Rs. 3.06 Rs. 8.30 23 / 25 Q23: What would be the compound interest on Rs.7700/- at 15 ¼% per annum for 2 years compounded annually Rs. 2725.75/- Rs 2527.57/- Rs. 2227.57/- Rs. 2520.57/- 24 / 25 Q24: A sum of money amounts to Rs.6690 after 3 years and to Rs.10,035 after 6 years on compound interest.find the sum. 4360 4460 4560 4660 25 / 25 Q25: Find out the C.I on Rs.5000 at 4% p.a. compound half-yearly for 1 1/2 years. Rs. 420.20 Rs. 319.06 Rs. 306.04 Rs. 294.75 Your score is The average score is 41% LinkedIn Facebook Twitter VKontakte 0% Restart quiz
Posted on October 29, 2020January 6, 2021Digital Marketing Test Pre-Employment Tests Digital Marketing Test Welcome to Digital Marketing Test. Please attend the quiz in a quite place and with a stable internet connection. An use of unauthorized medium or any unfairness will violate the exam policy. NameEmailPhone Number 1 / 25 Category: Uncategorized Q1: Which among the following is a form of marketing focused on creating, publishing, and distributing content for a targeted audience online? Content marketing Influencer marketing Media marketing None of the above 2 / 25 Category: Uncategorized Q2: _____________ is any form of content such as images, videos, text and audio that have been posted by users on online platforms. User-supplied content User- produced content User- supported content User- generated content 3 / 25 Category: Uncategorized Q3: The use of social media platforms and websites to promote a product or service is called Social media marketing. True or False? True False 4 / 25 Category: Uncategorized Q4: The study of which among the following helps us determine how relevant the content of a website is over time? Page views New visitors vs Returning visitors Viewability vs time None of the above 5 / 25 Category: Uncategorized Q5: Calculate the conversion rate, if you have 1200 conversions from 10, 000 interactions? 16% 10% 8% 12% 6 / 25 Category: Uncategorized Q6: _________ is the technique used by online advertisers to present targeted ads to consumers using the information collected about their browsing behavior. Content Marketing Behavioral advertising Search Engine optimization None of the above 7 / 25 Category: Uncategorized Q7: Bounce rate and Exit rate are one and the same. True or False? Ture False 8 / 25 Category: Uncategorized Q8: ________ is the process of standardizing similar URLs of a website. Keyword stuffing Canonicalization Site retargeting Cloaking 9 / 25 Category: Uncategorized Q9: Cost-Per-Click is calculated by dividing the total number of clicks by the total cost of your clicks. True or False? True False 10 / 25 Category: Uncategorized Q10: Which among the following refers to advertising on websites or apps or social media through banners or other ad formats made of text, images, flash, video, and audio? Media Marketing Influencer Marketing Display advertising None of the above 11 / 25 Category: Uncategorized Q11: Which among the following represents the percentage of visitors who enter a particular website and then navigate away from the site after viewing only the home page? Conversion rate Exit rate Bounce rate Click-through rate 12 / 25 Category: Uncategorized Q12: Which among the following is a Social Media Management System? Facebook Instagram Twitter Hootsuite 13 / 25 Category: Uncategorized Q13: An attribute of a user or a session is called ________. Impression Reach Dimension None of the above 14 / 25 Category: Uncategorized Q14: _________ is the use of search data to analyse particular interactions among Web searchers or search engine. Search analytics Market analytics Keyword analytics None of the above 15 / 25 Category: Uncategorized Q15: In Google Adwords, Which among the following contains one or more ads that share similar targets? Ad formats Ad Extensions Ad delivery Ad group 16 / 25 Category: Uncategorized Q16: Which among the following is the order of your ad in the auction results as compared to other ads? Ad index Ad position Ad Rank Ad delivery 17 / 25 Category: Uncategorized Q17: A/B testing is the process of comparing two versions of a ________. Web page Email Marketing Content All of the above 18 / 25 Category: Uncategorized Q18: The average time spend on a website by each visit is called Average Duration. True or False? True False 19 / 25 Category: Uncategorized Q19: Which among the following is not a type of web traffic? Organic Paid Direct Regular 20 / 25 Category: Uncategorized Q20 Organic listing referes to ________ listing of a website. Paid Unpaid Both of the above None of the above 21 / 25 Category: Uncategorized Q21 Which among the following is a model of internet marketing in which advertisers pay a fee whenever one of the their ads is clicked? CPC (cash-per-click) MPC (money-per-click) PPC (pay-per-click) CPC (charge-per-click) 22 / 25 Category: Uncategorized Q22: Which among the following is a Social Media platform that could be used for marketing? Facebook LinkedIn Tumblr All of the above 23 / 25 Category: Uncategorized Q23: A type of performance-based advertising where you receive commission for promoting someone else’s products or services on your website. Affiliate Marketing PPC Native Advertising Email marketing 24 / 25 Category: Uncategorized Q24: if the keyword "Machine"appears 16 times in a 200 word text, the keyword density of "Machine" is ________. 4% 32% 16% 8% 25 / 25 Category: Uncategorized Q25: Which among the following characters is used to mention a user or page in Twitter? # $ @ * 0%