• Home
  • Popular
  • Login
  • Signup
  • Cookie
  • Terms of Service
  • Privacy Policy
0
avatar

Posted by User Bot

4 months ago

Install APK with PackageInstaller fails on Android API 35 device

My code installs an apk using the PackageInstaller. That works fine on Android Devices with API 34 and below. But on Android Emulator with API 35 I get this error: akul.a(190): ... See More

0
avatar

Posted by User Bot

4 months ago

A package name must be specified for a module

I keep getting this same error when making a java class in eclipse. Any help? i was literally just following a tutorial on youtube and made the exact same file but it doesnt wor ... See More

0
avatar

Posted by User Bot

4 months ago

Google Workspace, "Invalid Client ID" when adding Domain-wide delegation

I'm trying to setup a Service account to use the Google Calendar API on a website. I'm mostly following this tutorial I'm Super Admin on the Google Workspace Admin Console. I cr ... See More

0
avatar

Posted by @rajdas

5 months ago

Explain Process Management System Calls in Linux?

The system calls in Linux for managing processes consist of a series of functions that allow for the creation, termination, and control of processes, while also aiding in inter-process commu ... See More

0
avatar

Posted by @arijit87

5 months ago

Insufficient permissions

For users to access a remote resource through the Remote Desktop Services, formerly known as Terminal Services, you must assign them the Logon Through Remote Desktop Services right. Otherwis ... See More

0
avatar

Posted by @rajdas

5 months ago

Write a Python program that will reverse a string without using the slicing operation or reverse() function?

# Defining the functiondef reverseString(x):?# Declaring an empty String?NewString = ""?# Traversing through individual characters in a string?for i in x:? ?# Add the character to the empty ... See More

0
avatar

Posted by User Bot

4 months ago

Chrome DevTools Debugger freezing once it hits breakpoint

I have recently started working on a ReactJS webapp codebase that is bit out-dated and currently being tasked to modernize by upgrading to latest versions of dependencies and No ... See More

0
avatar

Posted by @rajdas

5 months ago

What is the method to write comments in Python?

1. Python comments serve as tools for programmers to enhance the code's readability. By utilizing the # symbol, a single comment can be defined. Alternatively, docstrings (strings enclosed w ... See More

0
avatar

Posted by @arijit87

5 months ago

How to print Floyd?s Triangle with 5 rows

def print_floyds_triangle(rows): ? ?number = 1 ? ?for i in range(1, rows + 1): ? ? ? ?for j in range(1, i + 1): ? ? ? ? ? ?print(number, end=" ") ? ? ? ? ? ?number += 1 ? ? ? ?print() ... See More

0
avatar

Posted by User Bot

4 months ago

Alpha Clip not working in Blender 4.2

I'm following the tutorial how on to make a plant from textures.com and during the process I stumbled on this part where I must turn on the "Alpha clip" option into the material ... See More

0
avatar

Posted by @arijit87

5 months ago

DNS problems

Many remote desktop connectivity problems can be traced to DNS issues. If an admin changed a host's IP address, then clients might not be able to connect to the host until the client's DNS r ... See More

0
avatar

Posted by @rajdas

5 months ago

How many types of Shells are there in Linux?

There are five different shells available in Linux:1. C Shell (csh): Resembles C syntax and offers spell checking and job control features.2. Korn Shell (ksh): Functions as a high-level prog ... See More

0
avatar

Posted by @arijit87

5 months ago

Write a program to check if the given strings are anagram or not

def check(s1, s2):?? ? ?if(sorted(s1)== sorted(s2)):? ? ? ? ? ? ? print("The strings are anagrams.")? ? ?else:? ? ? ? ? ? ? print("The strings aren't anagrams.")?s1 = input("Enter string1: " ... See More

0

What are the different types of data in JavaScript?

1. JavaScript encompasses various data types crucial for the fundamental operation of web applications, including:Boolean - representing true or false valuesNull - denoting empty or unknown ... See More

0
avatar

Posted by @arijit87

5 months ago

How to change the MySQL password?

We can chhange the MYSQL root password using the below statement:?ALTER?USER?'root'@'localhost'?IDENTIFIED?BY?'NewPassword';??Next, open a Command Prompt and navigate to the MySQL directory. ... See More

0
avatar

Posted by @rajdas

5 months ago

What is redirection?

Direction refers to altering the standard input and output devices. To achieve redirection, metacharacters are utilized to redirect files or programs. In Linux, there are various types of re ... See More

0
avatar

Posted by @rajdas

5 months ago

Why do we need NumPy in Python?

NumPy serves as a fundamental Python library designed for effective numerical computations. It provides efficient multidimensional array objects and utilities for manipulating these arrays. ... See More

0
avatar

Posted by User Bot

4 months ago

Unable to locate package php8.3

I am trying to upgrade from PHP 7.2 to PHP 8.3 on a Ubuntu 18.04.6 LTS server. I am following so many tutorials that indicate the same steps: sudo add-apt-repository ppa:ondrej/ ... See More

0
avatar

Posted by @arijit87

5 months ago

How to change the table name in MySQL?

MySQL provides the following syntax to rename one or more tables in the current database:?mysql>?RENAME?old_table?TO?new_table;??If we want to change more than one table name, use the bel ... See More

0
avatar

Posted by @arijit87

5 months ago

Write a program to find a fibonacci of a number

nterms = int(input("How many terms? ")) # 7 n1, n2 = 0, 1 count = 0 if nterms <= 0: ??? ? ? ? ? ? print("Please enter a positive integer") elif nterms == 1: ??? ? ? ? ? ? ?print("Fibon ... See More